/* ==========================================
   HYBRID TRADER — STYLESHEET
   Fonts: Syne (headings) + DM Sans (body)
   ========================================== */

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
    --bg:         #090c12;
    --bg2:        #0e1320;
    --bg3:        #131926;
    --surface:    #161d2e;
    --border:     rgba(255,255,255,0.07);
    --accent:     #00d4ff;
    --accent2:    #0099cc;
    --gold:       #f0b429;
    --text:       #e2e8f0;
    --muted:      #7a8499;
    --danger:     #ef4444;
    --radius:     10px;
    --radius-lg:  16px;
    --nav-h:      68px;
    --transition: 0.25s ease;
    --font-head:  'Syne', sans-serif;
    --font-body:  'DM Sans', sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 15px;
}

a { color: inherit; text-decoration: none; }

img, video { display: block; max-width: 100%; }

/* ── UTILITY ───────────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden { display: none !important; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--accent); color: #000; }
.btn-primary:hover { background: #33ddff; }
.btn-ghost    { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav      { background: var(--accent); color: #000; padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-large    { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-sm       { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* ── NAVBAR ────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(9,12,18,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(9,12,18,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar.hide { transform: translateY(-100%); }

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.logo-mark {
    width: 34px; height: 34px;
    background: var(--accent);
    color: #000;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    top: 10%; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content {
    max-width: 760px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Metric cards row */
.hero-card-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 130px;
    transition: border-color var(--transition), transform var(--transition);
}

.metric-card:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-3px);
}

.metric-num, .metric-suffix {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.metric-always { font-size: 1.8rem; }

.metric-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── COUNTDOWN STRIP ───────────────────────────────────────────── */
.countdown-strip {
    background: linear-gradient(90deg, rgba(0,212,255,0.07), rgba(240,180,41,0.07));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 2rem;
}

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

.countdown-text {
    font-size: 0.9rem;
    color: var(--text);
}

.countdown-text strong { color: var(--gold); }
.fire { margin-right: 0.3rem; }

.countdown-timer-inline {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    white-space: nowrap;
}

.time-unit {
    display: inline-block;
    min-width: 3ch;
    text-align: center;
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section {
    padding: 6rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--accent);
    display: block;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ── VIDEO SECTION ─────────────────────────────────────────────── */
.video-section { background: var(--bg2); }

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    max-width: 860px;
}

.video-wrapper video {
    width: 100%;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: opacity 0.3s;
}

.video-overlay.hidden { opacity: 0; pointer-events: none; }

.play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,212,255,0.15);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 1.2rem 2rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.play-btn svg { width: 48px; height: 48px; }
.play-btn:hover { background: rgba(0,212,255,0.25); transform: scale(1.04); }

/* ── METHODOLOGY ───────────────────────────────────────────────── */
.methodology-section { background: var(--bg); }

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.method-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), transform var(--transition);
}

.method-card:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-4px);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.method-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section { background: var(--bg2); }

.cta-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(0,212,255,0.06), transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-sub strong { color: var(--text); }

.price-tag {
    color: var(--gold);
    font-weight: 700;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    background: var(--bg);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: var(--muted);
}

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

/* ── PAGE HEADER (courses.html) ────────────────────────────────── */
.page-header {
    padding: calc(var(--nav-h) + 3rem) 0 2.5rem;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.page-header-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}

.page-header-sub {
    color: var(--muted);
    font-size: 1rem;
}

/* ── FILTER BAR ────────────────────────────────────────────────── */
.filter-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-tab:hover { color: var(--text); border-color: var(--border); }

.filter-tab.active {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border-color: var(--accent);
}

.search-wrap { flex-shrink: 0; }

.course-search-input {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    width: 220px;
    transition: border-color var(--transition);
    outline: none;
}

.course-search-input:focus { border-color: var(--accent); }

/* ── COURSES GRID ──────────────────────────────────────────────── */
.courses-main {
    padding: 2.5rem 0 5rem;
    background: var(--bg);
    min-height: 60vh;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Loading state */
.courses-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.spinner {
    width: 36px; height: 36px;
    border: 2.5px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.no-results {
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 3rem;
}

/* Course card */
.course-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.course-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-thumb img { transform: scale(1.04); }

.thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
}

.thumb-play-icon {
    position: absolute;
    bottom: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.course-body {
    padding: 1.1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.course-card-title {
    font-family: var(--font-head);
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    flex: 1;
}

.course-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.course-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── PLAYER PAGE ───────────────────────────────────────────────── */
.player-page {
    background: var(--bg);
}

.player-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    padding-top: var(--nav-h);
    min-height: calc(100vh - var(--nav-h));
    align-items: start;
}

.player-main {
    padding: 2rem;
    max-width: 900px;
}

.video-player-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.video-player-wrap video {
    width: 100%;
    display: block;
}

.player-info { padding: 0 0.5rem; }

.player-meta-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.player-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--accent);
}

.player-episode {
    font-size: 0.78rem;
    color: var(--muted);
}

.player-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.player-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 640px;
}

.player-nav-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Sidebar */
.player-sidebar {
    background: var(--bg2);
    border-left: 1px solid var(--border);
    height: calc(100vh - var(--nav-h));
    position: sticky;
    top: var(--nav-h);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.sidebar-header h3 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.sidebar-progress {
    font-size: 0.75rem;
    color: var(--muted);
}

.playlist {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.playlist::-webkit-scrollbar { width: 6px; }
.playlist::-webkit-scrollbar-track { background: transparent; }
.playlist::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Playlist item */
.playlist-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    transition: background var(--transition);
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.playlist-item:hover { background: rgba(255,255,255,0.04); }

.playlist-item.active {
    background: rgba(0,212,255,0.07);
    border-left: 2px solid var(--accent);
}

.playlist-item-num {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    min-width: 18px;
    padding-top: 2px;
    text-align: right;
}

.playlist-item.active .playlist-item-num { color: var(--accent); }

.playlist-thumb {
    width: 90px;
    aspect-ratio: 16/9;
    background: var(--bg3);
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.playlist-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.playlist-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.playlist-info { flex: 1; min-width: 0; }

.playlist-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playlist-item.active .playlist-title { color: var(--accent); }

.playlist-dur {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .player-layout {
        grid-template-columns: 1fr;
    }
    .player-sidebar {
        height: auto;
        position: static;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .playlist { max-height: 360px; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .mobile-menu-toggle { display: flex; }

    .nav-container.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(9,12,18,0.98);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
    }

    .hero { padding-top: calc(var(--nav-h) + 3rem); }
    .hero-card-row { gap: 0.8rem; }
    .metric-card { min-width: 110px; padding: 1rem 1.2rem; }
    .metric-num, .metric-always { font-size: 1.5rem; }

    .cta-box { padding: 2.5rem 1.5rem; }

    .filter-bar-inner { gap: 0.5rem; }
    .course-search-input { width: 100%; }

    .player-main { padding: 1.2rem; }
    .player-title { font-size: 1.2rem; }
}

/* ── ACCESSIBILITY ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}