:root {
            --deep-purple: #1a0a2e;
            --purple: #2d1b4e;
            --magenta: #c026d3;
            --pink: #e040fb;
            --orange: #f97316;
            --gold: #f59e0b;
            --cyan: #06b6d4;
            --blue: #3b82f6;
            --light: #f8f0ff;
            --white: #ffffff;
            --text-muted: #a78bba;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--deep-purple);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ============ NAVBAR ============ */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        nav.scrolled {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(192, 38, 211, 0.15);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .nav-logo img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background-color: var(--white);
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }

        .nav-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--orange), var(--pink), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--orange), var(--pink));
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--pink);
        }

        .btn-nav {
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-login {
            color: var(--pink);
            border: 2px solid var(--pink);
            background: transparent;
        }

        .btn-login:hover {
            background: var(--pink);
            color: var(--white);
        }

        .btn-signup {
            background: linear-gradient(135deg, var(--magenta), var(--orange));
            color: var(--white);
            border: none;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(192, 38, 211, 0.4);
        }

        .hamburger {
            display: none;
            background: transparent;
            border: none;
            padding: 0;
            outline: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(192, 38, 211, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            animation: auraPulse 8s ease-in-out infinite alternate;
        }

        @keyframes auraPulse {
            0% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.05); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(192, 38, 211, 0.15);
            border: 1px solid rgba(192, 38, 211, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--pink);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--orange), var(--pink), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--magenta), var(--orange));
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(192, 38, 211, 0.4);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--pink);
            color: var(--pink);
            transform: translateY(-3px);
        }

        /* Floating orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 12s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--magenta);
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: var(--orange);
            top: 60%;
            right: -5%;
            animation-delay: -4s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: var(--cyan);
            bottom: 10%;
            left: 30%;
            animation-delay: -8s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(30px, -30px); }
            66% { transform: translate(-20px, 20px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============ SECTION SHARED ============ */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--pink);
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

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

        /* ============ COURSES (LAUNCHING) ============ */
        #courses {
            background: linear-gradient(180deg, var(--deep-purple) 0%, rgba(45, 27, 78, 0.5) 50%, var(--deep-purple) 100%);
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: rgba(45, 27, 78, 0.6);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .course-card:hover {
            transform: translateY(-8px);
            border-color: rgba(192, 38, 211, 0.3);
            box-shadow: 0 20px 60px rgba(192, 38, 211, 0.15);
        }

        .course-card:hover::before {
            opacity: 1;
        }

        .course-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .icon-orange { background: rgba(249, 115, 22, 0.15); color: var(--orange); }
        .icon-pink { background: rgba(192, 38, 211, 0.15); color: var(--pink); }
        .icon-cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }
        .icon-blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
        .icon-gold { background: rgba(245, 158, 11, 0.15); color: var(--gold); }
        .icon-magenta { background: rgba(224, 64, 251, 0.15); color: var(--pink); }

        .course-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .course-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .course-badge {
            display: inline-block;
            align-self: flex-start;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: auto;
        }

        .badge-launching {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .badge-soon {
            background: rgba(6, 182, 212, 0.1);
            color: var(--cyan);
            border: 1px solid rgba(6, 182, 212, 0.25);
        }

        /* ============ FULL COURSE LIST ============ */
        #all-courses {
            background: rgba(45, 27, 78, 0.2);
        }

        .course-categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: rgba(26, 10, 46, 0.8);
            border: 1px solid rgba(192, 38, 211, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s;
        }

        .category-card:hover {
            border-color: rgba(192, 38, 211, 0.25);
        }

        .category-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .category-card ul {
            list-style: none;
        }

        .category-card li {
            padding: 0.5rem 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .category-card li:last-child {
            border-bottom: none;
        }

        .category-card li::before {
            content: '→';
            color: var(--pink);
            font-size: 0.8rem;
        }

        /* ============ ABOUT ============ */
        #about {
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image .image-wrapper {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            position: relative;
        }

        .about-image .image-wrapper::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--orange), var(--magenta), var(--cyan));
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            display: block;
        }

        .about-update-banner {
            margin-top: 1.5rem;
            text-align: center;
            padding: 0.75rem 1.5rem;
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--orange);
            animation: bannerGlow 3s ease-in-out infinite alternate;
        }

        @keyframes bannerGlow {
            0% { box-shadow: 0 0 8px rgba(249, 115, 22, 0.1); }
            100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.25); }
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 0.5rem;
        }

        .about-content .subtitle {
            color: var(--pink);
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-content p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(45, 27, 78, 0.5);
            border-radius: 12px;
            border: 1px solid rgba(192, 38, 211, 0.1);
        }

        .highlight-item i {
            color: var(--pink);
            font-size: 1.1rem;
        }

        .highlight-item span {
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* ============ MEDIA ============ */
        #media {
            background: linear-gradient(180deg, var(--deep-purple) 0%, rgba(45, 27, 78, 0.4) 50%, var(--deep-purple) 100%);
        }

        .media-content {
            text-align: center;
        }

        .media-card {
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            text-align: left;
            text-decoration: none;
            color: inherit;
            padding: 1.25rem 1.75rem;
            background: rgba(45, 27, 78, 0.35);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 14px;
            transition: all 0.3s;
        }

        .media-card:hover {
            border-color: rgba(192, 38, 211, 0.3);
            background: rgba(45, 27, 78, 0.55);
            transform: translateY(-2px);
        }

        .media-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0 0 0.25rem;
        }

        .media-card p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .media-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--pink);
            white-space: nowrap;
            transition: transform 0.3s;
        }

        .media-card:hover .media-card-cta {
            transform: translateX(4px);
        }

        @media (max-width: 540px) {
            .media-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--magenta), var(--orange));
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(192, 38, 211, 0.4);
        }

        /* ============ NEWSLETTER ============ */
        #contact {
            position: relative;
        }

        .newsletter-box {
            max-width: 650px;
            margin: 0 auto;
            text-align: center;
            background: rgba(45, 27, 78, 0.5);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 24px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .newsletter-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
        }

        .newsletter-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .newsletter-box p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            max-width: 450px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: 2px solid rgba(192, 38, 211, 0.2);
            border-radius: 50px;
            background: rgba(26, 10, 46, 0.6);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-form input::placeholder {
            color: var(--text-muted);
        }

        .newsletter-form input:focus {
            border-color: var(--pink);
        }

        .newsletter-form button {
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--magenta), var(--orange));
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(192, 38, 211, 0.4);
        }

        .privacy-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 1rem;
            opacity: 0.7;
        }

        /* ============ FOOTER ============ */
        footer {
            padding: 3rem 2rem;
            border-top: 1px solid rgba(192, 38, 211, 0.1);
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-logo img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .footer-logo span {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            background: linear-gradient(135deg, var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--pink);
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* ============ SCROLL ANIMATIONS ============ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        
        /* Flip Card Styles */
        .course-card {
            background: transparent;
            border: none;
            perspective: 1000px;
            cursor: pointer;
            padding: 0;
            height: 280px;
        }
        
        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: none;
        }

        .course-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: left;
            transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
            border-radius: 20px;
        }

        .course-card.flipped .course-card-inner {
            transform: rotateY(180deg);
        }

        .hero-logo {
            display: block;
            margin: 0 auto 1.5rem;
            width: 180px;
            height: auto;
            max-width: 40vw;
            filter: drop-shadow(0 4px 24px rgba(192, 38, 211, 0.35));
        }

        .course-image {
            width: calc(100% + 4rem);
            height: 200px;
            margin: -2rem -2rem 0 -2rem;
            object-fit: cover;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            display: block;
        }

        .course-image-wrapper {
            position: relative;
            overflow: hidden;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            flex-shrink: 0;
        }

        .course-image-wrapper img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .course-card:hover .course-image-wrapper img {
            transform: scale(1.05);
        }

        .course-image-wrapper .course-title-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem 1.25rem 0.75rem;
            background: linear-gradient(to top, rgba(26, 10, 46, 0.95) 0%, rgba(26, 10, 46, 0.6) 50%, transparent 100%);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }

        .course-status-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.85rem 1rem;
            margin-top: auto;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            box-shadow: 0 0 8px var(--orange), 0 0 16px rgba(249, 115, 22, 0.3);
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% { box-shadow: 0 0 8px var(--orange), 0 0 16px rgba(249, 115, 22, 0.3); transform: scale(1); }
            50% { box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(249, 115, 22, 0.5); transform: scale(1.2); }
        }

        .status-text {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .course-card:hover .status-text {
            animation: statusShimmer 1.5s ease-in-out infinite;
        }

        @keyframes statusShimmer {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        .course-card-front, .course-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            padding: 0;
            background: rgba(45, 27, 78, 0.6);
            border: 1px solid rgba(192, 38, 211, 0.15);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .course-card-back {
            padding: 2rem;
        }

        .course-card-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .course-card:hover .course-card-front::before,
        .course-card:hover .course-card-back::before {
            opacity: 1;
        }

        .course-card-front:hover, .course-card-back:hover {
            border-color: rgba(192, 38, 211, 0.3);
            box-shadow: 0 20px 60px rgba(192, 38, 211, 0.15);
        }

        .course-card-back {
            background: linear-gradient(135deg, rgba(45, 27, 78, 0.9), rgba(26, 10, 46, 0.95));
            transform: rotateY(180deg);
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .course-card-back .btn-primary {
            margin-top: auto;
            width: 100%;
            padding: 0.8rem;
        }
        
        /* FAQ Styles */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 12px;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        .faq-question i {
            color: var(--pink);
            transition: transform 0.3s;
        }
        .faq-question.active i {
            transform: rotate(180deg);
        }
        .faq-question:hover {
            color: var(--pink);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 1.5rem;
        }
        .faq-answer p {
            padding-bottom: 1.5rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

/* ============ RESPONSIVE ============ */
        @media (max-width: 968px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image {
                order: -1;
            }

            .about-image .image-wrapper {
                max-width: 300px;
            }

            .about-highlights {
                justify-items: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(26, 10, 46, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                transition: right 0.4s ease;
                gap: 1.5rem;
            }

            .nav-links.open {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .course-grid {
                grid-template-columns: 1fr;
            }

            .course-categories {
                grid-template-columns: 1fr;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ============ DISCLAIMER BAR ============ */
        .disclaimer {
            background: rgba(45, 27, 78, 0.5);
            padding: 0.75rem 2rem;
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
            border-top: 1px solid rgba(192, 38, 211, 0.08);
        }

/* ============ MEDIA PAGE ============ */

        /* Hero Quote */
        .media-hero {
            padding: 10rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--deep-purple) 0%, rgba(45, 27, 78, 0.5) 100%);
        }

        .media-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(192, 38, 211, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
            animation: auraPulse 8s ease-in-out infinite alternate;
        }

        .media-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .media-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3.5vw, 2.5rem);
            font-weight: 600;
            font-style: italic;
            line-height: 1.5;
            color: var(--text-muted);
            background: linear-gradient(135deg, var(--white) 0%, var(--text-muted) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Bio Card */
        .media-bio {
            padding: 4rem 2rem;
        }

        .media-bio-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(45, 27, 78, 0.5);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .media-bio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
        }

        .media-bio-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .media-bio-name h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .media-bio-tagline {
            font-size: 1rem;
            font-weight: 500;
            background: linear-gradient(135deg, var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .media-bio-body p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }

        .media-bio-body p:last-child {
            margin-bottom: 0;
        }

        /* Topic Grid */
        .media-topics {
            padding: 4rem 2rem;
            background: rgba(45, 27, 78, 0.2);
        }

        .media-topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .media-topic-card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(192, 38, 211, 0.12);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .media-topic-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .media-topic-card:hover {
            transform: translateY(-6px);
            border-color: rgba(192, 38, 211, 0.3);
            box-shadow: 0 16px 48px rgba(192, 38, 211, 0.15);
        }

        .media-topic-card:hover::before {
            opacity: 1;
        }

        .media-topic-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(192, 38, 211, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--pink);
            margin-bottom: 1.25rem;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .media-topic-card:hover .media-topic-icon {
            transform: scale(1.1);
            background: rgba(192, 38, 211, 0.2);
        }

        .media-topic-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .media-topic-card ul {
            list-style: none;
        }

        .media-topic-card li {
            padding: 0.35rem 0;
            color: var(--text-muted);
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .media-topic-card li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        /* Why Producers Book Kim */
        .media-why {
            padding: 4rem 2rem;
        }

        .media-why-list {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .media-why-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: rgba(45, 27, 78, 0.4);
            border: 1px solid rgba(192, 38, 211, 0.1);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .media-why-item:hover {
            border-color: rgba(192, 38, 211, 0.3);
            transform: translateX(8px);
            background: rgba(45, 27, 78, 0.6);
        }

        .media-why-item i {
            font-size: 1.2rem;
            color: var(--orange);
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .media-why-item span {
            font-size: 0.95rem;
            color: var(--white);
            font-weight: 500;
        }

        .media-why-quote {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.7;
            color: var(--text-muted);
            padding: 2rem;
            background: rgba(26, 10, 46, 0.5);
            border-radius: 16px;
            border-left: 3px solid var(--orange);
        }

        /* Book Kim CTA */
        .media-cta {
            padding: 4rem 2rem;
            background: rgba(45, 27, 78, 0.2);
        }

        .media-cta-card {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            background: rgba(45, 27, 78, 0.5);
            border: 1px solid rgba(192, 38, 211, 0.15);
            border-radius: 24px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .media-cta-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
        }

        .media-cta-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .media-cta-formats {
            font-size: 1rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .media-cta-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .media-hero {
                padding: 8rem 1.5rem 3rem;
            }
            .media-bio-card {
                padding: 2rem;
            }
            .media-topics-grid {
                grid-template-columns: 1fr;
            }
            .media-cta-card {
                padding: 2.5rem 1.5rem;
            }
        }
