@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================
   BASE STYLES - DARK SLATE THEME
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #06080c;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* =========================================
   CUSTOM GLOBAL SCROLLBAR
   ========================================= */

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;  /* Width of the vertical scrollbar */
    height: 12px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #06080c; /* Matches your body background perfectly */
}

::-webkit-scrollbar-thumb {
    background: #1e293b; /* A sleek slate gray */
    border-radius: 10px; /* Rounded pill shape */
    border: 3px solid #06080c; /* Adds a "floating" gap around the thumb */
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #f2994a; /* Turns your signature orange when hovered */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #06080c; /* thumb color | track color */
}
/* =========================================
   FULLSCREEN MENU OVERLAY
   ========================================= */
.full-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(-20px);
}
.full-menu.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.close-menu-btn {
    position: absolute; top: 30px; right: 4vw; background: transparent; border: none;
    color: #94a3b8; font-size: 30px; cursor: pointer; transition: color 0.3s;
}
.close-menu-btn:hover { color: #f2994a; }
.menu-links { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.menu-links a {
    color: #fff; text-decoration: none; font-size: clamp(30px, 4vw, 50px);
    font-family: 'Switzer', sans-serif; font-weight: 700; letter-spacing: -1px; transition: all 0.3s ease;
}
.menu-links a:hover { color: #f2994a; transform: scale(1.05); }

/* =========================================
   NAVIGATION (HERO)
   ========================================= */
.cinematic-nav {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 20px 4vw; border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(10, 12, 16, 0.8); backdrop-filter: blur(10px);
    position: fixed; top: 0; width: 100%; z-index: 100;
}
.nav-left { display: flex; justify-content: flex-start; }
.nav-center { display: flex; justify-content: center; }
.nav-right { display: flex; justify-content: flex-end; }
.cinematic-nav .nav-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #94a3b8;
    font-size: 12px; letter-spacing: 0.5px; padding: 8px 16px; text-decoration: none;
    border-radius: 4px; transition: all 0.3s ease;
}
.cinematic-nav .nav-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.cinematic-nav #main-logo { height: 65px; transition: transform 0.5s ease;}
.cinematic-nav #main-logo:hover { transform: scale(1.05); }

/* =========================================
   CINEMATIC HERO & YELLOW FLARE
   ========================================= */
.cinematic-hero {
    position: relative; width: 100%; min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; padding: 140px 20px 50px 20px; overflow: hidden; text-align: center; background-color: #0a0c10;
}
.ambient-glow {
    position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(242, 153, 74, 0.05) 0%, rgba(10, 12, 16, 0) 70%);
    z-index: 0; pointer-events: none;
}
.bottom-yellow-flare {
    position: absolute; bottom: -50px; left: 0; width: 100%; height: 60vh;
    background: radial-gradient(ellipse at bottom left, rgba(255, 136, 0, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(255, 136, 0, 0.4) 0%, transparent 60%),
                linear-gradient(to top, rgba(255, 204, 0, 0.15) 0%, transparent 50%);
    filter: blur(60px); z-index: 1; pointer-events: none;
}
.hero-content-wrapper { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; width: 100%; }
.pre-headline { font-family: 'Inter', sans-serif; color: #64748b; font-size: 11px; letter-spacing: 8px; margin-right: -8px; margin-bottom: 20px; font-weight: 300; text-transform: uppercase; }
.massive-headline {
    font-family: 'Switzer', sans-serif; font-size: clamp(35px, 5.5vw, 65px); line-height: 1.05; font-weight: 500; margin-bottom: 20px; letter-spacing: -2px;
    background: linear-gradient(180deg, #818b9c 0%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: #94a3b8; font-size: clamp(14px, 1.5vw, 18px); max-width: 650px; line-height: 1.5; margin-bottom: 40px; font-weight: 400; }

/* =========================================
   MOCKUP & SHOWCASE
   ========================================= */
.platform-showcase { width: 100%; display: flex; justify-content: center; padding: 0 20px; margin-bottom: 20px; position: relative; }
.showcase-glow {
    position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); width: 80%; height: 40%;
    background: radial-gradient(ellipse, rgba(242, 153, 74, 0.25) 0%, rgba(10, 12, 16, 0) 70%); filter: blur(40px); z-index: -1;
}
.mockup-placeholder { width: 100%; background: transparent; display: flex; align-items: center; justify-content: center; position: relative; }
#hero-mockup { 
    width: 100%; max-width: 1400px; height: auto; object-fit: contain; border-radius: 16px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); margin: 0 auto; display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}
.cta-wrapper { position: relative; z-index: 15; margin-top: -120px; }

/* =========================================
   THE TEXTURED BUTTON
   ========================================= */
.btn-massive-glow {
    display: inline-flex; align-items: center; justify-content: center; position: relative;
    background: linear-gradient(90deg, #ffcf54 0%, #ff7b00 100%); color: #000000; font-size: clamp(20px, 3vw, 24px); font-weight: 800; padding: 22px 60px; border-radius: 60px; text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 15px 40px rgba(255, 128, 8, 0.4); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); overflow: hidden; 
}
.btn-massive-glow::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; mix-blend-mode: screen; pointer-events: none; border-radius: 60px; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 15 -6'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
}
.btn-massive-glow span { position: relative; z-index: 2; }
.btn-massive-glow:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.7), 0 20px 50px rgba(255, 128, 8, 0.6);
}

.social-proof-banner { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; color: #94a3b8; font-size: 14px; }
.avatar-group { display: flex; }
.avatar-group img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #050505; margin-left: -10px; background: #1e293b; }
.avatar-group img:first-child { margin-left: 0; }

/* =========================================
   FEATURES STRIP
   ========================================= */
.features-strip {
    display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 50px; padding: 20px 40px;
    background: rgba(15, 19, 26, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 100px; backdrop-filter: blur(10px);
}
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-item i { font-size: 24px; color: #f2994a; }
.f-text { display: flex; flex-direction: column; text-align: left; }
.f-sub { font-size: 10px; font-weight: 700; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; }
.f-main { font-size: 16px; font-weight: 700; color: #f2994a; }
.f-arrow { color: #d97706; font-size: 14px; opacity: 0.5; }

/* =========================================
   DYNAMIC REVIEWS SECTION
   ========================================= */
.reviews-section { padding: 80px 5vw; width: 100%; max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 10; }
.section-title.metallic-text {
    font-family: 'Switzer', sans-serif; font-size: clamp(30px, 4vw, 45px); font-weight: 600; margin-bottom: 50px; letter-spacing: -1px;
    background: linear-gradient(180deg, #818b9c 0%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; width: 100%; }
.review-card { background: #11151d; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 30px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); border-color: rgba(242, 153, 74, 0.2); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.review-header img { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.review-meta h4 { font-size: 16px; color: #f8fafc; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.verified-icon { color: #f2994a; font-size: 12px; }
.review-meta span { font-size: 12px; color: #64748b; }
.review-profit { display: inline-block; background: rgba(34, 197, 94, 0.1); color: #22c55e; padding: 6px 12px; border-radius: 6px; font-weight: 700; font-size: 18px; margin-bottom: 20px; border: 1px solid rgba(34, 197, 94, 0.2); }
.review-text { font-size: 15px; color: #94a3b8; line-height: 1.6; }

/* =========================================
   COMPARISON SECTION
   ========================================= */
.comparison-section { padding: 80px 20px; }
.comparison-container { display: flex; gap: 30px; justify-content: center; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.comp-card { 
    background: #0d1117; border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 50px 40px; 
    flex: 1 1 400px; max-width: 450px; text-align: center; display: flex; flex-direction: column;
}

.comp-card.highlighted { 
    border: 1px solid rgba(255,255,255,0.08); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.comp-card.highlighted:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 153, 74, 0.4);
    box-shadow: 0 25px 50px rgba(242, 153, 74, 0.15);
}

.comp-card.highlighted::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at bottom center, rgba(255, 123, 0, 0.15) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: -1;
}
.comp-card.highlighted:hover::before { opacity: 1; }

.comp-icon { font-size: 35px; color: #64748b; margin-bottom: 20px; }
.comp-card h3 { 
    font-size: 32px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.5px; 
    background: linear-gradient(180deg, #ffffff 0%, #818b9c 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.comp-card .sub { color: #94a3b8; margin-bottom: 0; font-size: 15px; }

.card-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 30px auto; width: 60%; }

.price-display { 
    font-size: 55px; font-weight: 800; margin: 10px 0; letter-spacing: -2px; 
    background: linear-gradient(180deg, #ffcf54 0%, #ff7b00 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block;
}
.muted-heading { color: #64748b; font-size: 22px; font-weight: 500; margin-bottom: 25px; }

.comp-body { text-align: center; margin: 10px 0 20px 0; flex-grow: 1; }
.comp-body ul { display: inline-block; text-align: left; list-style: none; }
.comp-body li { margin-bottom: 16px; color: #e2e8f0; display: flex; align-items: center; gap: 12px; font-size: 15px;}
.comp-body li i { color: #f59e0b; font-size: 13px; }

.comp-footer { margin-top: 10px; color: #64748b; font-size: 13px; margin-bottom: 25px; }
.lock-text { color: #f59e0b; margin: 10px 0; font-weight: 600; }

.btn-ghost { 
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); 
    color: #94a3b8; padding: 18px; border-radius: 50px; cursor: pointer; margin-top: 20px; font-weight: 600; transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* =========================================
   EXIT PLAN SECTION
   ========================================= */
.exit-plan-section { padding: 100px 5vw; width: 100%; max-width: 1200px; margin: 0 auto; }
.exit-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }

.exit-text { flex: 1; min-width: 350px; max-width: 550px; }
.exit-text h2 { font-family: 'Switzer', sans-serif; font-size: clamp(35px, 4vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.exit-text p { color: #94a3b8; font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.exit-text p strong { color: #f8fafc; font-weight: 600; }

.exit-visual { flex: 1; min-width: 350px; display: flex; flex-direction: column; align-items: center; position: relative; }

.courses-glow-header { text-align: center; margin-bottom: 20px; position: relative; width: 100%; max-width: 450px;}
.courses-glow-header h3 { font-family: 'Switzer', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.top-glow-line { height: 2px; width: 100%; background: linear-gradient(90deg, transparent, #f59e0b, transparent); position: relative; }
.top-glow-line::after { content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 60%; height: 20px; background: rgba(245, 158, 11, 0.4); filter: blur(15px); }

.courses-grid-box { 
    width: 100%; max-width: 450px; aspect-ratio: 4/3; background: #0d1117; 
    border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; position: relative; overflow: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; background-position: center;
}

.icon-box {
    position: absolute; width: 50px; height: 50px; background: #11151d;
    border: 1px solid rgba(245, 158, 11, 0.5); border-radius: 8px;
    display: flex; justify-content: center; align-items: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2), inset 0 0 10px rgba(245, 158, 11, 0.1);
}

.pos-1 { top: 15%; left: 50%; transform: translate(-50%, -50%); }
.pos-2 { top: 40%; left: 25%; transform: translate(-50%, -50%); }
.pos-3 { top: 40%; left: 75%; transform: translate(-50%, -50%); }
.pos-4 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.pos-5 { top: 70%; left: 25%; transform: translate(-50%, -50%); }
.pos-6 { top: 70%; left: 75%; transform: translate(-50%, -50%); }
.pos-7 { top: 85%; left: 50%; transform: translate(-50%, -50%); }

/* =========================================
   COURSES PAGE 
   ========================================= */
.courses-container { flex-grow: 1; display: flex; flex-direction: column; align-items: center; padding: 140px 5vw 40px 5vw; width: 100%; max-width: 1200px; margin: 0 auto; }
.courses-header { text-align: center; margin-bottom: 50px; }
.courses-header h1 { font-size: 40px; margin-bottom: 10px; font-family: 'Switzer', sans-serif;}
.courses-header p { color: #94a3b8; font-size: 16px; max-width: 600px; margin: 0 auto; }
.video-grid { display: flex; flex-direction: column; gap: 40px; width: 100%; max-width: 800px; }
.video-wrapper { background: #11151d; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); position: relative; overflow: hidden; }
.video-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: #f8fafc; }
.video-title i { color: #f2994a; }
.video-wrapper video { width: 100%; border-radius: 8px; background: #0a0a0a; aspect-ratio: 16 / 9; outline: none; }
.custom-audio-player { background: #0a0c10; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: 15px 25px; display: flex; align-items: center; gap: 20px; }
.play-pause-btn { background: #f2994a; color: #000; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; font-size: 16px; transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s; flex-shrink: 0; }
.play-pause-btn:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(242, 153, 74, 0.3); }
.progress-bar { flex-grow: 1; -webkit-appearance: none; background: #1e293b; height: 6px; border-radius: 3px; outline: none; cursor: pointer; }
.progress-bar::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #f2994a; cursor: pointer; box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); transition: transform 0.1s; }
.progress-bar::-webkit-slider-thumb:hover { transform: scale(1.2); }
.time-display { font-size: 13px; color: #94a3b8; min-width: 80px; text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; }
.locked-overlay { display: none; }
.locked .locked-overlay { display: flex; flex-direction: column; align-items: center; justify-content: center; position: absolute; top: 55px; left: 20px; right: 20px; bottom: 20px; background: rgba(10, 12, 16, 0.85); backdrop-filter: blur(8px); border-radius: 8px; z-index: 10; color: #94a3b8; font-size: 18px; font-weight: 600; gap: 15px; }
.locked .locked-overlay i { font-size: 40px; color: #475569; }
.locked video, .locked .custom-audio-player { pointer-events: none; opacity: 0.5;}

/* =========================================
   TERMS PAGE
   ========================================= */
.terms-container { flex-grow: 1; display: flex; flex-direction: column; align-items: center; padding: 140px 5vw 60px 5vw; width: 100%; max-width: 900px; margin: 0 auto; }
.terms-header { text-align: center; margin-bottom: 40px; }
.terms-header h1 { font-size: 40px; margin-bottom: 15px; font-family: 'Switzer', sans-serif;}
.terms-content-box { background: #11151d; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); width: 100%; }
.terms-content-box p { color: #cbd5e1; font-size: 16px; line-height: 1.8; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.terms-content-box p:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.terms-content-box strong { color: #f2994a; margin-right: 8px; font-size: 18px; }

/* =========================================
   MODALS
   ========================================= */
.custom-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(11, 14, 15, 0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.custom-modal.show { display: flex; opacity: 1; }
.modal-content { background: #11151d; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 40px; max-width: 500px; width: 90%; text-align: center; position: relative; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); transform: translateY(20px); transition: transform 0.3s ease; }
.custom-modal.show .modal-content { transform: translateY(0); }
.modal-content h2 { color: #f2994a; margin-bottom: 15px; font-size: 28px; font-weight: 800; }
.modal-content p { color: #cbd5e1; font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.close-modal { position: absolute; top: 15px; right: 20px; color: #94a3b8; font-size: 24px; cursor: pointer; }
.close-modal:hover { color: #fff; }

/* =========================================
   FOOTER
   ========================================= */
footer { background: #080a0e; padding: 40px 5vw; border-top: 1px solid #1e293b; text-align: center; margin-top: auto; width: 100%; }
.footer-left { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: #94a3b8; }
.terms-link { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.terms-link:hover { color: #f2994a; }
.footer-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
#footer-logo { height: 50px; width: auto; object-fit: contain; display: block; margin: 0 auto; }
.x-link { color: #fff; text-decoration: none; font-size: 20px; transition: all 0.3s ease; }
.x-link:hover { color: #f2994a; transform: scale(1.1); }
.footer-right { display: flex; justify-content: flex-end; }
.back-to-top { color: #fff; text-decoration: none; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, 0.2); padding: 10px 18px; border-radius: 4px; transition: all 0.3s ease; }
.back-to-top:hover { border-color: #fff; background-color: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }

/* =========================================
   FLOATING MUSIC PLAYER
   ========================================= */
.music-widget { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; }
.music-toggle { width: 55px; height: 55px; border-radius: 50%; background: #f2994a; color: #000; border: none; font-size: 22px; cursor: pointer; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: flex; justify-content: center; align-items: center; }
.music-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(242, 153, 74, 0.4); }
.music-panel { background: rgba(17, 21, 29, 0.95); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 20px; width: 280px; margin-bottom: 15px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); transform-origin: bottom right; }
.music-widget.collapsed .music-panel { opacity: 0; visibility: hidden; transform: scale(0.8) translateY(20px); pointer-events: none; }
.music-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.music-header span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #f2994a; font-weight: 700; }
.music-close-btn { background: transparent; border: none; color: #94a3b8; cursor: pointer; font-size: 16px; transition: color 0.2s; }
.music-close-btn:hover { color: #fff; }
.music-track-name { font-size: 16px; font-weight: 600; color: #f8fafc; margin-bottom: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-controls { display: flex; justify-content: space-between; align-items: center; }
.music-btn { background: transparent; border: none; color: #cbd5e1; font-size: 16px; cursor: pointer; transition: all 0.2s; width: 35px; height: 35px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.music-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.music-btn.active-repeat { color: #f2994a; }
.music-play-btn { background: #f2994a; color: #000; width: 45px; height: 45px; font-size: 18px; }
.music-play-btn:hover { background: #eebb30; transform: scale(1.05); }

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
    z-index: 1000;
}
.discord-card {
    background: #11151d; width: 320px; border-radius: 12px;
    padding: 20px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #1e293b;
}
.avatar-circle { width: 80px; height: 80px; border-radius: 50%; border: 6px solid #11151d; margin-top: -60px; }
/* --- THE MASTER APP SIDEBAR --- */
.app-layout {
    display: flex;
    min-height: 100vh;
    background-color: #06080c;
}

.app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 110px;
    background: #0b0f17;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 35px;
    z-index: 100;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sidebar-item:hover, .sidebar-item.active {
    color: #f2994a;
    transform: translateY(-3px);
}

.sidebar-item:hover svg, .sidebar-item.active svg {
    filter: drop-shadow(0px 0px 10px rgba(242, 153, 74, 0.4));
}

.sidebar-item svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.sidebar-item span {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Switzer', sans-serif;
    letter-spacing: 0.5px;
}

.app-main-content {
    margin-left: 110px; /* Pushes content right of the sidebar */
    width: calc(100% - 110px);
    padding: 40px;
    position: relative;
}

.auth-card {
    background: rgba(13, 17, 23, 0.7);
    padding: 30px 40px; /* Reduced vertical padding */
    width: 100%;
    max-width: 380px;  /* Slightly narrower */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-card-clean {
    width: 360px;
    height: fit-content !important; /* Forces it to only be as tall as content */
    padding: 25px !important;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    footer { padding: 30px 40px; flex-direction: column; gap: 30px; text-align: center; }
    .footer-left { align-items: center; }
    .footer-right { justify-content: center; }
    .features-strip { flex-direction: column; gap: 15px; border-radius: 20px; }
    .f-arrow { transform: rotate(90deg); }
    .exit-container { flex-direction: column; gap: 50px; }
    .exit-text { text-align: center; }
}

@media (max-width: 768px) {
    /* Nav & Header */
    .cinematic-nav { flex-direction: column; gap: 15px; padding: 15px 20px; }
    #main-logo { height: 45px; } 
    .nav-btn { width: 100%; justify-content: center; }
    
    /* Hero Section */
    .cinematic-hero { padding: 160px 15px 40px 15px; } 
    .massive-headline { font-size: 38px !important; margin-top: 10px; }
    .hero-sub { font-size: 15px; padding: 0 10px; }
    .btn-massive-glow { padding: 18px 20px; font-size: 18px; width: 100%; } 
    .cta-wrapper { margin-top: -30px; width: 90%; max-width: 400px; }
    
    /* Mockup */
    .platform-showcase { padding: 0 10px; margin-bottom: 0; }
    #hero-mockup { border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
    
    /* Features Strip */
    .features-strip { width: 100%; margin: 40px 0 0 0; padding: 25px 20px; gap: 20px; border-radius: 16px; }
    
    /* Reviews Section */
    .reviews-section { padding: 60px 20px; }
    .section-title.metallic-text { font-size: 32px; margin-bottom: 30px; }
    .review-card { padding: 20px; }
    
    /* Comparison Cards */
    .comparison-section { padding: 60px 15px; }
    .comparison-container { gap: 20px; margin: 20px auto; }
    .comp-card { min-width: 100%; flex: 1 1 100%; padding: 30px 20px; }
    .price-display { font-size: 40px; }

    /* Exit Plan */
    .exit-plan-section { padding: 60px 20px; }
    .courses-grid-box { aspect-ratio: 1/1; }
    
    /* Courses & Terms Pages */
    .courses-container, .terms-container { padding: 140px 20px 40px 20px; }
    .courses-header h1, .terms-header h1 { font-size: 32px; }
    .video-wrapper { padding: 15px; border-radius: 8px; }
    
    /* Audio Player Fix for Small Screens */
    .custom-audio-player { flex-direction: column; gap: 15px; padding: 20px 15px; text-align: center; }
    .progress-bar { width: 100%; }
    .time-display { align-self: flex-end; }
    
    /* Terms Box & Modals */
    .terms-content-box { padding: 25px 15px; }
    .modal-content { padding: 30px 20px; width: 95%; }
    .modal-content h2 { font-size: 24px; }
    
    /* Floating Music Player */
    .music-widget { bottom: 20px; right: 20px; }
    .music-toggle { width: 50px; height: 50px; font-size: 18px; }
    .music-panel { width: calc(100vw - 40px); max-width: 300px; padding: 15px; }
    
    /* Footer */
    footer { padding: 40px 20px; gap: 20px; }
}