/* Ultimate 2025 CSS - Modern Artist Website */
:root {
    /* Color System - 2025 Trends */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary: #06d6a0;
    --accent: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* 3D & Depth */
    --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-floating: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    
    /* Animations */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite, glow 2s ease-in-out infinite alternate;
    position: relative;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top: 3px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse, glow 2s ease-in-out infinite alternate-reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow {
    from { box-shadow: 0 0 20px var(--primary); }
    to { box-shadow: 0 0 40px var(--secondary); }
}

/* Enhanced Logo Styles for Navigation */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* slightly tighter spacing */
    flex-shrink: 0;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-image {
    height: 40px; /* default smaller size */
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-logo-image:hover {
    transform: scale(1.05);
}

.artist-name-nav {
    margin: 0;
    font-size: 1.5rem; /* smaller by default */
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Remove the standalone logo */
.logo {
    display: none;
}

/* Adjust navbar spacing */
.nav-container {
    gap: 1.5rem;
}

/* Responsive adjustments */

/* Medium screens */
@media (max-width: 968px) {
    .nav-logo-image {
        height: 35px;
    }
    .artist-name-nav {
        font-size: 1.3rem;
    }
    .nav-container {
        gap: 1.2rem;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .nav-logo-image {
        height: 30px;
    }
    .artist-name-nav {
        font-size: 1.1rem;
    }
    .nav-container {
        gap: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-logo-image {
        height: 25px;
    }
    .artist-name-nav {
        font-size: 1rem;
    }
    .nav-container {
        gap: 0.8rem;
    }
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-3d);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    h2 {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        font-size: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link.active {
    color: var(--primary-light);
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===========================
           HERO SECTION FIXES
           =========================== */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
            background: #0f172a;
            color: white;
            margin-top: 70px; /* Push hero below navbar */
        }

        /* Make hero images act as proper background layers */
        .swiper-slide {
            position: relative;
            height: calc(100vh - 70px); /* Adjust height to account for navbar */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center; /* Ensure images are centered */
            transform: scale(1.05);
            transition: transform 8s ease-in-out;
            bottom: unset;
        }

        /* Smooth zoom effect on active slide */
        .swiper-slide-active .hero-image img {
            transform: scale(1);
        }

        /* Enhanced Gradient overlay for better readability */
        .swiper-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                        rgba(15, 23, 42, 0.85) 0%, 
                        rgba(15, 23, 42, 0.4) 50%, 
                        rgba(15, 23, 42, 0.85) 100%);
            z-index: 1;
        }

        /* Additional dynamic gradient for visual interest */
        .swiper-slide::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                        rgba(102, 126, 234, 0.2) 0%, 
                        rgba(118, 75, 162, 0.1) 50%,
                        rgba(240, 147, 251, 0.2) 100%);
            z-index: 1;
            opacity: 0.6;
        }

        /* Hero content stays above overlay and image */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
            padding: 2rem 0; /* Add some vertical padding */
        }

        .hero-text {
            max-width: 650px;
            text-align: left;
            animation: fadeInUp 1s var(--ease-smooth) 0.3s both;
        }

        /* Enhanced Title Styling */
        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: titleSlideIn 1s var(--ease-smooth) 0.5s both;
        }

        /* Enhanced Subtitle */
        .hero-subtitle {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 400;
            margin-bottom: 2.5rem;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 500px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s var(--ease-smooth) 0.7s both;
        }

        /* ===========================
           BUTTON STYLES - ENHANCED
           =========================== */
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            padding: 1.25rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.4s var(--ease-smooth);
            cursor: pointer;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
            min-width: 180px;
        }

        /* Primary Button - Enhanced */
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s var(--ease-smooth);
            border-radius: 50px;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
            color: white;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        /* Secondary Button - Enhanced Glass Effect */
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s var(--ease-smooth);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #667eea;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        /* Button focus states for accessibility */
        .btn:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        .btn:active {
            transform: translateY(-2px);
        }

        /* Ensure navbar stays on top */
        .navbar {
            z-index: 1000; /* Keep navbar above everything */
        }

        /* Swiper controls positioning - ensure they're above content */
        .hero-swiper {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .swiper-pagination {
            bottom: 30px !important;
            z-index: 10;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #667eea;
            transition: all 0.3s ease;
            z-index: 10;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-top: -30px;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            color: #f093fb;
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        .swiper-pagination-bullet {
            background: #cbd5e1;
            opacity: 0.7;
            width: 12px;
            height: 12px;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: #667eea;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Animation for button entrance */
        .hero-buttons .btn {
            animation: fadeInUp 0.8s var(--ease-smooth) 0.9s both;
        }

        .hero-buttons .btn:nth-child(2) {
            animation-delay: 1.1s;
        }

        /* Responsive adjustments */
        @media (max-width: 968px) {
            .hero-text {
                text-align: center;
                margin: 0 auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 0 1rem;
                margin-top: 60px; /* Adjust for smaller navbar height if needed */
            }
            
            .swiper-slide {
                height: calc(100vh - 60px);
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                padding: 1rem 2rem;
            }
            
            /* Adjust swiper controls for mobile */
            .swiper-button-next,
            .swiper-button-prev {
                display: none; /* Hide arrows on mobile for better UX */
            }
        }

        /* For very small screens */
        @media (max-width: 480px) {
            .hero {
                margin-top: 60px;
            }
            
            .swiper-slide {
                height: calc(100vh - 60px);
            }
            
            .hero-content {
                padding: 1rem 0;
            }
            
            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }
        }
/* Biography Section */
.biography {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
}

.biography .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
}

/* Bio Text Content */
.bio-text-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Add spacing between paragraphs */
.bio-text p {
    margin-bottom: 1.5rem; /* Adds space between paragraphs */
}

.bio-text p:last-child {
    margin-bottom: 0; /* Remove margin from last paragraph */
}

/* Alternative: If your bio text doesn't have <p> tags, use this */
.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* This will add space between any block-level elements */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between paragraphs */
}

/* If you're using line breaks instead of paragraphs, increase line height */
.bio-text {
    line-height: 2; /* Increases space between lines */
}

/* Bio Image Styles */
.bio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease-smooth);
}

.bio-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.bio-image img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s var(--ease-smooth);
}

.bio-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s var(--ease-smooth);
}

.bio-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.artist-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.artist-role {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Bio Text Content */
.bio-text-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    background: var(--gradient-primary);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat:hover::before {
    transform: translateX(100%);
}

.stat h3 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat p {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* Stats Section with Earth Background */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('images/earthmove.jpg') fixed center/cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(102, 126, 234, 0.1) 0%, 
                rgba(118, 75, 162, 0.1) 50%,
                rgba(240, 147, 251, 0.1) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s var(--ease-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Responsive Design */
@media (max-width: 968px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bio-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bio-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .biography {
        padding: 60px 0;
    }
    
    .bio-text {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .bio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .bio-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .bio-image img {
        height: 300px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .artist-name {
        font-size: 1.25rem;
    }
    
    .artist-role {
        font-size: 0.9rem;
    }
}

/* Animation for counting numbers */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat h3.animated,
.stat-number.animated {
    animation: countUp 0.6s var(--ease-smooth) forwards;
}

/* Music Section */
.music {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
}

.music .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.music-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.music-card:hover::before {
    left: 100%;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.music-cover {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.music-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s var(--ease-smooth);
}

.music-card:hover .music-cover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-smooth);
}

.music-card:hover .play-icon {
    transform: scale(1);
}

.music-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.music-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.music-links {
    display: flex;
    gap: 1rem;
}

.stream-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.stream-link:hover {
    color: var(--primary-light);
}

/* Videos Section */
.videos {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
}

.videos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s var(--ease-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side */
.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Contact Details */
.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Form */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s var(--ease-smooth);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group select option {
    background: var(--bg-primary);
    color: white;
}

.form-message {
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* ===========================
   ENHANCED FOOTER STYLES
   =========================== */

.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Main - Simplified Layout */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

/* Brand Section - Clean and Modern */
.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand .artist-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Social Links - Modern and Clean */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
    color: white;
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Specific platform colors on hover */
.social-link:nth-child(1):hover { background: #1877f2; } /* Facebook */
.social-link:nth-child(2):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } /* Instagram */
.social-link:nth-child(3):hover { background: #ff0000; } /* YouTube */
.social-link:nth-child(4):hover { background: #000000; } /* TikTok */

/* Footer Bottom - Clean and Centered */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s var(--ease-smooth);
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::after {
    width: 100%;
}

.divider {
    color: var(--text-secondary);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Newsletter Section - Optional Compact Version */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        min-width: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-brand .artist-name {
        font-size: 1.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-brand .artist-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-newsletter {
        padding: 1.25rem;
        margin: 1.5rem auto;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
}

/* Animation for footer elements */
.footer-main > * {
    animation: fadeInUp 0.6s var(--ease-smooth) both;
}

.footer-brand { animation-delay: 0.1s; }
.footer-social { animation-delay: 0.2s; }
.footer-bottom { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.social-link:focus,
.footer-link:focus,
.newsletter-input:focus,
.newsletter-btn:focus,
.back-to-top:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* Audio Player */
.audio-player {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    transition: bottom 0.3s var(--ease-smooth);
    z-index: 1001;
}

.audio-player.active {
    bottom: 0;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.track-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
}

.control-btn:hover {
    background: var(--glass-bg);
    transform: scale(1.1);
}

.control-btn.play {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-container {
    flex: 2;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.notification.success {
    background: rgba(16, 185, 129, 0.9);
}

.notification.error {
    background: rgba(239, 68, 68, 0.9);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-3d);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .player-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        height: 400px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s var(--ease-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States for Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Image Error Handling */
img {
    background: var(--bg-card);
}

/* ===========================
   BATCH SYSTEM STYLES - NEW ADDITION
   =========================== */

/* ===========================
   BATCH SYSTEM STYLES - FIXED
   =========================== */

/* Batch Container */
.batch-container {
    position: relative;
    min-height: 400px;
}

/* Hide all batches by default */
.batch {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-smooth);
}

/* Show only the active batch */
.batch.active {
    display: grid !important;
    opacity: 1;
    transform: translateY(0);
}

/* Force 3-column grid for music batches */
#music-batch-container .music-grid.batch {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-top: 3rem;
}

/* Force 3-column grid for video batches */
#video-batch-container .video-grid.batch {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-top: 3rem;
}

/* Batch Navigation */
.batch-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.nav-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.nav-btn:disabled {
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.batch-indicator {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.batch-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.batch-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.batch-dot:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

/* Responsive Design for Batch System */
@media (max-width: 1200px) {
    #music-batch-container .music-grid.batch,
    #video-batch-container .video-grid.batch {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .batch-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .batch-dot {
        width: 10px;
        height: 10px;
    }
    
    #music-batch-container .music-grid.batch,
    #video-batch-container .video-grid.batch {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .batch-navigation {
        gap: 0.75rem;
    }
    
    .batch-indicator {
        gap: 0.75rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Ensure music and video cards maintain their styles within batches */
#music-batch-container .music-card,
#video-batch-container .video-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#music-batch-container .music-card:hover,
#video-batch-container .video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

/* Enhanced hover effects for batch navigation */
.batch-navigation {
    position: relative;
}

.batch-navigation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--glass-border) 20%, 
        var(--glass-border) 80%, 
        transparent 100%);
    z-index: -1;
}

/* Accessibility improvements */
.batch-dot:focus,
.nav-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===========================
   ENHANCED VIDEO SECTION - 2025 STANDARD
   =========================== */

.videos {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
}

.videos .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Video Grid - Enhanced */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

/* Video Thumbnail - Enhanced */
.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

/* Play Overlay - Enhanced */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-icon {
    transform: scale(1);
}

/* Video Badges */
.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

/* Video Duration */
.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Video Info - Enhanced */
.video-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-info h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-info p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Meta */
.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-stat i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-quality {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Video Actions - Enhanced */
.video-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.watch-video-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.watch-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.video-platforms {
    display: flex;
    gap: 0.5rem;
}

.platform-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    font-size: 1.1rem;
    color: white;
}

.platform-btn.youtube {
    background: #ff0000;
}

.platform-btn.share {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================
   ENHANCED VIDEO MODAL - 2025 STANDARD
   =========================== */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.video-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    animation: modalAppear 0.3s var(--ease-smooth);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease-smooth);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

/* Modal Header */
.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.video-title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.video-modal-header h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.video-actions-modal {
    display: flex;
    gap: 0.5rem;
}

.modal-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

/* Modal Body */
.video-modal-body {
    padding: 0;
    position: relative;
}

.video-player-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Loading State */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.video-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.video-loading p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===========================
   SHARE MODAL
   =========================== */

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.share-modal-header h4 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.close-share-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s var(--ease-smooth);
}

.close-share-modal:hover {
    color: white;
    transform: rotate(90deg);
}

.share-modal-body {
    padding: 2rem;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.share-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.share-option[data-platform="facebook"] { color: #1877f2; }
.share-option[data-platform="twitter"] { color: #1da1f2; }
.share-option[data-platform="whatsapp"] { color: #25d366; }

.share-link-container {
    display: flex;
    gap: 0.5rem;
}

.share-link-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.copy-link-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    font-size: 1rem;
}

.copy-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===========================
   MOBILE OPTIMIZATIONS
   =========================== */

@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .videos .container {
        padding: 0 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .video-info {
        padding: 1.25rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .watch-video-btn {
        width: 100%;
    }
    
    .video-platforms {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Modal */
    .video-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        margin: 0;
    }
    
    .video-modal-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .video-title-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .video-actions-modal {
        justify-content: center;
    }
    
    .modal-btn {
        padding: 0.75rem;
    }
    
    /* Share Modal Mobile */
    .share-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .share-modal-body {
        padding: 1.5rem;
    }
    
    .share-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .video-stats {
        gap: 0.75rem;
    }
    
    .video-modal-header {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .video-card:hover {
        transform: none;
    }
    
    .video-card:active {
        transform: scale(0.98);
    }
    
    .play-overlay {
        opacity: 0.7;
    }
    
    .control-btn,
    .modal-btn,
    .platform-btn {
        min-height: 44px; /* Better touch targets */
        min-width: 44px;
    }
}

/* ===========================
   MUSIC SEARCH STYLES
   =========================== */

/* Search Container in Navigation */
.search-container {
    position: relative;
    margin-left: 2rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-smooth);
    min-width: 300px;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem;
    flex: 1;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-top: 0.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-3d);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s var(--ease-smooth);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-result-item.active {
    background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid var(--primary);
}

.result-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.result-album {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.result-type {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.no-results {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Search Stats */
.search-stats {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
}

/* Quick Search Tags */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid transparent;
}

.search-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===========================
   MOBILE SEARCH BUTTON FIXES
   =========================== */

/* Mobile Search Button */
.mobile-search-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    margin-left: 1rem;
}

.mobile-search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary);
    transform: scale(1.1);
}

/* Show mobile search button only on mobile */
@media (max-width: 968px) {
    .mobile-search-btn {
        display: flex !important;
    }
    
    /* Hide desktop search on mobile */
    .search-container {
        display: none !important;
    }
    
    /* Adjust navbar spacing for mobile */
    .nav-container {
        padding: 1rem;
    }
    
    /* Ensure proper spacing between navbar items */
    .nav-menu {
        gap: 1rem;
    }
    
    /* Mobile navbar layout */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .hamburger {
        flex-shrink: 0;
    }
}

/* Show desktop search on larger screens */
@media (min-width: 969px) {
    .search-container {
        display: block !important;
    }
    
    .mobile-search-btn {
        display: none !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .mobile-search-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
}

/* Focus state for accessibility */
.mobile-search-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===========================
   SEARCH OVERLAY IMPROVEMENTS
   =========================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    padding: 0;
}

.search-overlay.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.search-overlay-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.close-search {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 50%;
}

.close-search:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.search-overlay-content {
    flex: 1;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 0;
}

/* Mobile Search Box */
.search-overlay .search-box {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10001;
    flex-shrink: 0;
}

.search-overlay .search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    width: 100%;
    outline: none;
    padding: 0.5rem;
}

.search-overlay .search-input::placeholder {
    color: var(--text-secondary);
}

/* Mobile Search Results */
.search-overlay .search-results {
    width: 100%;
    max-width: 500px;
    max-height: calc(100% - 120px);
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-3d);
    overflow-y: auto;
    position: relative;
    margin-top: 0;
    z-index: 10000;
    flex: 1;
}

/* Search Results Items */
.search-result-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-result-item.active {
    background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid var(--primary);
}

.result-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.result-album {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.result-type {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-batch {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-block;
}

/* Search Stats */
.search-stats {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
}

/* No Results */
.no-results {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.search-tips {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Search Tags */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid transparent;
}

.search-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Prevent body scroll when search overlay is open */
body.search-overlay-open {
    overflow: hidden;
}

/* Desktop Search Styles */
.search-container {
    position: relative;
    margin-left: 2rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-smooth);
    min-width: 300px;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem;
    flex: 1;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Desktop Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-top: 0.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-3d);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s var(--ease-smooth);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-overlay-content {
        padding: 1rem;
    }
    
    .search-overlay .search-box {
        padding: 0.875rem 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .search-overlay .search-results {
        max-height: calc(100% - 100px);
    }
    
    .search-result-item {
        padding: 0.875rem 1rem;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .search-overlay-content {
        padding: 0.5rem;
    }
    
    .search-overlay .search-box {
        padding: 0.75rem 1rem;
    }
    
    .search-overlay .search-results {
        max-height: calc(100% - 80px);
    }
    
    .search-result-item {
        padding: 0.75rem;
    }
    
    .result-image {
        width: 35px;
        height: 35px;
    }
}
/* ===========================
   VIDEO CLICK FIXES
   =========================== */

.play-overlay,
.play-icon {
    pointer-events: auto !important;
}

.video-card .play-overlay * {
    pointer-events: none !important;
}

.watch-video-btn {
    pointer-events: auto !important;
}

.platform-btn {
    pointer-events: auto !important;
}

/* Ensure play icon is clickable */
.play-icon i,
.play-overlay i {
    pointer-events: none !important;
}

/* Video card hover effects */
.video-card {
    cursor: pointer;
}

.video-card .video-actions {
    pointer-events: auto;
}

.video-card .video-actions * {
    pointer-events: auto;
}

.video-stat span {
    min-height: 1.2em;
}

.video-stat span:empty::before {
    content: 'Loading...';
    color: var(--text-secondary);
    font-style: italic;
}