* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    padding: 2rem 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
}

.hero-image {
    flex-shrink: 0;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.2);
    transition: all 0.5s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 35px 70px -12px rgba(139, 92, 246, 0.3);
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    background: linear-gradient(45deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(45deg, #a855f7, #3b82f6);
    margin: 0 0 2rem 0;
}

.hero-text {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-subtext {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.2);
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #374151;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.custom-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #374151, #4b5563);
}

.custom-text-content {
    color: #d1d5db;
}

.custom-text-content .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.video-card:hover .video-info h3 {
    color: #c084fc;
}

.video-info p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Creators Section */
.creators {
    padding: 5rem 0;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.5), rgba(139, 92, 246, 0.2));
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.creator-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.creator-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.2);
}

.creator-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.creator-card:hover .creator-avatar {
    border-color: rgba(139, 92, 246, 0.6);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.creator-card:hover .creator-avatar img {
    transform: scale(1.1);
}

.creator-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.creator-card:hover h3 {
    color: #c084fc;
}

.creator-platform {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    font-size: 0.875rem;
    color: #c084fc;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    background: linear-gradient(45deg, #9333ea, #2563eb);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .divider {
        margin: 0 auto 2rem;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .creators-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 200px;
        height: 200px;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
}
