        :root {
            --primary-blue: #1e40af;
            --primary-green: #059669;
            --accent-orange: #ea580c;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-white: #ffffff;
            --bg-light: #f9fafb;
            --bg-blue-light: #eff6ff;
            --bg-green-light: #ecfdf5;
            --border-light: #e5e7eb;
            --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-display: 'Georgia', serif;
            --section-padding: 4rem 1.5rem;
            --container-max: 1200px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--bg-white);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        /* ============================================
           UTILITIES
           ============================================ */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
        }

        .section {
            padding: var(--section-padding);
            width: 100%;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            font-weight: 700;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 0.75rem;
            line-height: 1.2;
            word-wrap: break-word;
        }

        .section-subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.125rem);
            color: var(--text-light);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            padding: 0 0.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius);
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary-blue);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-whatsapp:hover {
            background: #1ea952;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
        }

        .btn-white {
            background: white;
            color: var(--primary-blue);
        }

        .btn-white:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.875rem 1rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            font-weight: 700;
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--primary-blue);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 0.5rem;
            cursor: pointer;
            flex-shrink: 0;
        }

        .mobile-toggle span {
            width: 26px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: var(--transition);
            display: block;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            margin-top: 60px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            padding: 3rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
            word-wrap: break-word;
        }

        .hero-text h1 .highlight {
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }

        .hero-text h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--accent-orange);
            opacity: 0.3;
            z-index: -1;
        }

        .hero-text p {
            font-size: clamp(0.95rem, 2vw, 1.25rem);
            color: var(--text-light);
            margin-bottom: 1.75rem;
            word-wrap: break-word;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.75rem;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.875rem;
            background: white;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-green);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.875rem;
        }

        .hero-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--bg-light);
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ============================================
           WHY CHOOSE US - FIXED GRID LAYOUT
           ============================================ */
        .why-choose {
            background: var(--bg-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 1.75rem;
            border-radius: var(--radius);
            border: 2px solid var(--border-light);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.25rem;
            background: var(--bg-blue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
        }

        .feature-card:nth-child(even) .feature-icon {
            background: var(--bg-green-light);
            color: var(--primary-green);
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ============================================
           VIDEO SECTION - FIXED FOR 1:1 ASPECT RATIO
           ============================================ */
        .video-section {
            background: var(--bg-light);
        }

        .video-container {
            max-width: 700px;
            margin: 0 auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #000;
            position: relative;
            aspect-ratio: 16 / 9;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
            color: white;
            font-size: clamp(0.8rem, 2vw, 1.1rem);
            text-align: center;
            padding: 1.5rem;
        }

        /* ============================================
           RESULTS
           ============================================ */
        .results {
            background: linear-gradient(135deg, var(--bg-blue-light) 0%, var(--bg-green-light) 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            margin-top: 2.5rem;
        }

        .stat-card {
            text-align: center;
            padding: 1.75rem 1rem;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        .stat-number {
            font-size: clamp(2rem, 7vw, 4rem);
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .stat-label {
            font-size: clamp(0.8rem, 2vw, 1rem);
            color: var(--text-light);
            font-weight: 600;
        }

        .achievements {
            margin-top: 2.5rem;
            background: white;
            padding: 1.75rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .achievements h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .achievement-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.875rem;
        }

        .achievement-item {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            padding: 0.875rem;
            background: var(--bg-light);
            border-radius: 8px;
        }

        .achievement-item svg {
            flex-shrink: 0;
            color: var(--primary-green);
            margin-top: 2px;
        }

        .achievement-item div {
            min-width: 0;
            word-wrap: break-word;
        }

        /* ============================================
           FACILITIES
           ============================================ */
        .facilities {
            background: var(--bg-white);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .facility-card {
            background: var(--bg-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
        }

        .facility-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .facility-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #e0e7ff 0%, #d1fae5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.85rem;
            text-align: center;
            padding: 1rem;
        }

        .facility-content {
            padding: 1.25rem;
        }

        .facility-content h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text-dark);
        }

        .facility-content p {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* ============================================
           GALLERY
           ============================================ */
        .gallery {
            background: var(--bg-light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.25rem;
            margin-top: 2.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            padding-top: 75%;
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .gallery-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 1.75rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary-blue);
            position: relative;
        }

        .testimonial-card:nth-child(even) {
            border-left-color: var(--primary-green);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 0.75rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 1.25rem;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.875rem;
        }

        .author-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .author-info p {
            font-size: 0.825rem;
            color: var(--text-light);
        }

        /* ============================================
           ADMISSIONS CTA
           ============================================ */
        .admissions-cta {
            background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 1rem;
        }

        .admissions-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .admissions-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .admissions-content h2 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 0.875rem;
            line-height: 1.2;
        }

        .admissions-content p {
            font-size: clamp(1rem, 2.5vw, 1.375rem);
            margin-bottom: 1.75rem;
            opacity: 0.95;
        }

        .urgency-text {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(0.85rem, 2vw, 1rem);
            margin-bottom: 2rem;
            animation: shake 2s ease-in-out infinite;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        /* ============================================
           LOCATION
           ============================================ */
        .location {
            background: var(--bg-light);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .contact-info {
            background: white;
            padding: 1.75rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .contact-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-dark);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            margin-bottom: 1.25rem;
        }

        .contact-item svg {
            flex-shrink: 0;
            color: var(--primary-blue);
            margin-top: 2px;
        }

        .contact-item div h4 {
            font-weight: 600;
            margin-bottom: 0.2rem;
            color: var(--text-dark);
        }

        .contact-item div p {
            color: var(--text-light);
            font-size: 0.9rem;
            word-wrap: break-word;
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 400px;
            background: var(--bg-light);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #1f2937;
            color: white;
            padding: 3rem 1rem 1.5rem;
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.875rem;
        }

        .footer-section p,
        .footer-section a {
            color: #d1d5db;
            font-size: 0.9rem;
            line-height: 1.8;
            word-wrap: break-word;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            text-align: center;
            color: #9ca3af;
            font-size: 0.825rem;
            word-wrap: break-word;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           SCROLL TO TOP
           ============================================ */
        .scroll-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 46px;
            height: 46px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-top:hover {
            background: #1e3a8a;
            transform: translateY(-5px);
        }

        /* ============================================
           RESPONSIVE — TABLET (max 1024px)
           ============================================ */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 1.25rem;
            }

            .hero-content {
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           RESPONSIVE — MOBILE (max 768px)
           ============================================ */
        @media (max-width: 768px) {

            /* NAV */
            .nav-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1.5rem 1.25rem;
                box-shadow: var(--shadow-md);
                transition: left 0.3s ease;
                gap: 0;
                z-index: 999;
            }

            .nav-menu li {
                border-bottom: 1px solid var(--border-light);
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            .nav-link {
                display: block;
                padding: 0.75rem 0;
                font-size: 1rem;
            }

            .nav-link::after {
                display: none;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            /* HERO — single column, hide image */
            .hero {
                margin-top: 60px;
                padding: 2.5rem 1rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .hero-image {
                display: none;
            }

            .hero-text h1 {
                font-size: clamp(1.5rem, 7vw, 2rem);
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .hero-badges {
                gap: 0.5rem;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.35rem 0.75rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-cta .btn {
                width: 100%;
                justify-content: center;
            }

            /* SECTIONS */
            .section {
                padding: 2.5rem 1rem;
            }

            /* WHY CHOOSE - 1 COLUMN ON MOBILE */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            /* STATS */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-card {
                padding: 1.25rem 0.75rem;
            }

            /* ACHIEVEMENTS */
            .achievement-list {
                grid-template-columns: 1fr;
            }

            /* FACILITIES */
            .facilities-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            /* GALLERY */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .gallery-item {
                padding-top: 65%;
            }

            /* TESTIMONIALS */
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            /* ADMISSIONS CTA */
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            /* LOCATION */
            .location-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-container {
                height: 280px;
            }

            /* FOOTER */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* SCROLL TOP */
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
            }
        }

        /* ============================================
           EXTRA SMALL (max 400px)
           ============================================ */
        @media (max-width: 400px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }

            .btn-large {
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }

            .badge {
                font-size: 0.7rem;
            }
        }

        .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0,0,0,0.6);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}