/* ═══════════════════════════════════════════════════════════
   BETS DAILY SHOT — Design System
   The World's Best Odds Intelligence Platform
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Reset ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{min-height:100vh;line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img,picture,video,canvas,svg{display:block;max-width:100%}
input,button,textarea,select{font:inherit}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
table{border-collapse:collapse;width:100%}

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
    /* Dark Theme (Default) */
    --bg-deep:      #06080F;
    --bg-base:      #0B0F1A;
    --bg-surface:   #111728;
    --bg-elevated:  #161D30;
    --bg-card:      #1A2138;
    --bg-hover:     #1F2847;
    --bg-active:    #253055;

    --border:       #1E2A45;
    --border-light: #253357;
    --border-focus: #3B82F6;

    --text-primary:   #F0F4FC;
    --text-secondary: #94A3C4;
    --text-muted:     #5E6D8A;
    --text-inverse:   #06080F;

    /* Brand Colors */
    --brand:        #3B82F6;
    --brand-light:  #60A5FA;
    --brand-dark:   #2563EB;
    --brand-glow:   rgba(59, 130, 246, 0.15);

    /* Semantic Colors */
    --green:        #10B981;
    --green-light:  #34D399;
    --green-glow:   rgba(16, 185, 129, 0.15);
    --green-bg:     rgba(16, 185, 129, 0.08);

    --red:          #EF4444;
    --red-light:    #F87171;
    --red-glow:     rgba(239, 68, 68, 0.15);
    --red-bg:       rgba(239, 68, 68, 0.08);

    --yellow:       #F59E0B;
    --yellow-glow:  rgba(245, 158, 11, 0.15);

    --purple:       #8B5CF6;
    --purple-glow:  rgba(139, 92, 246, 0.15);

    --cyan:         #06B6D4;
    --orange:       #F97316;

    /* Gradients */
    --gradient-brand:    linear-gradient(135deg, #3B82F6, #8B5CF6);
    --gradient-green:    linear-gradient(135deg, #10B981, #06B6D4);
    --gradient-fire:     linear-gradient(135deg, #F97316, #EF4444);
    --gradient-gold:     linear-gradient(135deg, #F59E0B, #F97316);
    --gradient-hero:     linear-gradient(180deg, rgba(59,130,246,0.08) 0%, transparent 50%);
    --gradient-card:     linear-gradient(180deg, rgba(59,130,246,0.03) 0%, transparent 100%);
    --gradient-surface:  linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);

    /* Glass */
    --glass-bg:     rgba(17, 23, 40, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur:   blur(20px);

    /* Shadows */
    --shadow-sm:   0 1px 2px rgba(0,0,0,0.3);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg:   0 8px 30px rgba(0,0,0,0.5);
    --shadow-xl:   0 20px 60px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 30px var(--brand-glow);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 1px var(--border);

    /* Typography */
    --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
    --font-display: 'Inter', -apple-system, sans-serif;

    /* Sizing */
    --radius-xs:  4px;
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  14px;
    --radius-xl:  20px;
    --radius-full: 100px;

    /* Layout */
    --max-width:  1320px;
    --nav-height: 56px;
    --section-gap: 80px;

    /* Transitions */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:   0.2s;
    --duration-md: 0.3s;
    --duration-lg: 0.5s;
}

/* ─── Light Theme ────────────────────────────────────────── */
[data-theme="light"] {
    --bg-deep:      #F8FAFC;
    --bg-base:      #FFFFFF;
    --bg-surface:   #F1F5F9;
    --bg-elevated:  #E2E8F0;
    --bg-card:      #FFFFFF;
    --bg-hover:     #F1F5F9;
    --bg-active:    #E2E8F0;

    --border:       #E2E8F0;
    --border-light: #CBD5E1;
    --border-focus: #3B82F6;

    --text-primary:   #0F172A;
    --text-secondary: #475569;
    --text-muted:     #94A3B8;
    --text-inverse:   #F0F4FC;

    --glass-bg:     rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.06);

    --shadow-sm:   0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 30px rgba(0,0,0,0.1);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.08), 0 0 0 1px var(--border);

    --gradient-hero: linear-gradient(180deg, rgba(59,130,246,0.04) 0%, transparent 50%);
}

/* ─── Base Styles ────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    font-size: 15px;
    overflow-x: hidden;
}

/* Ambient glow on body */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: var(--brand);
    color: #fff;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mono { font-family: var(--font-mono); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-gap) 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.section-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.section-link {
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--duration) var(--ease-out);
}
.section-link:hover { gap: 8px; }
.section-link::after { content: '→'; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background var(--duration-md) var(--ease-out);
}

.nav.scrolled {
    background: rgba(11, 15, 26, 0.95);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 2px 10px var(--brand-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-link {
    padding: 6px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.nav-link.active {
    color: var(--brand-light);
    background: var(--brand-glow);
}

.nav-link .live-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 7px 16px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    box-shadow: 0 2px 10px var(--brand-glow);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--brand-glow);
}

.theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--duration) var(--ease-out);
}
.theme-toggle:hover { color: var(--text-primary); background: var(--bg-hover); }

/* Mobile Nav */
.nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    padding: calc(var(--nav-height) + 60px) 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: var(--nav-height);
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-glow);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-light);
    margin-bottom: 24px;
    animation: fade-in-up 0.6s var(--ease-out);
}

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

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    max-width: 800px;
    margin: 0 auto 20px;
    animation: fade-in-up 0.6s var(--ease-out) 0.1s both;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
    animation: fade-in-up 0.6s var(--ease-out) 0.2s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fade-in-up 0.6s var(--ease-out) 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fade-in-up 0.6s var(--ease-out) 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: var(--font-mono);
}

.hero-stat-label {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 2px 12px var(--brand-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--brand-glow);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--border-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 14px;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-hover); }

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 2px 12px var(--green-glow);
}
.btn-green:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-icon { padding: 8px; }

/* ─── Live Odds Ticker ───────────────────────────────────── */
.odds-ticker {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.odds-ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker-scroll 60s linear infinite;
    width: max-content;
}

.odds-ticker:hover .odds-ticker-inner {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--duration) var(--ease-out);
}
.ticker-item:hover { background: var(--bg-hover); }

.ticker-teams {
    font-weight: 600;
    color: var(--text-primary);
}

.ticker-odds {
    display: flex;
    gap: 6px;
}

.ticker-odd {
    padding: 2px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-xs);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
}

.ticker-odd.best {
    background: var(--green-bg);
    color: var(--green);
}

.ticker-time {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.ticker-live {
    color: var(--green);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ticker-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Match Cards ────────────────────────────────────────── */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 16px;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--duration-md) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--duration-md) var(--ease-out);
}

.match-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.match-card:hover::before { opacity: 1; }

.match-card.live {
    border-color: rgba(16, 185, 129, 0.3);
}
.match-card.live::before {
    background: var(--gradient-green);
    opacity: 1;
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.match-league {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.match-league-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.match-status {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.match-status.live {
    background: var(--green-bg);
    color: var(--green);
    animation: status-pulse 2s infinite;
}

.match-status.upcoming {
    background: var(--bg-elevated);
    color: var(--text-secondary);
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.match-team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.match-team:last-child {
    flex-direction: row-reverse;
    text-align: right;
}

.team-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.team-name {
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-vs {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.match-score {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.match-odds.two-way {
    grid-template-columns: repeat(2, 1fr);
}

.odd-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-align: center;
}

.odd-btn:hover {
    background: var(--bg-hover);
    border-color: var(--brand);
}

.odd-btn.best {
    background: var(--green-bg);
    border-color: rgba(16, 185, 129, 0.3);
}
.odd-btn.best:hover {
    border-color: var(--green);
}

.odd-label {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.odd-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.odd-btn.best .odd-value {
    color: var(--green);
}

.odd-change {
    font-size: 10px;
    font-weight: 600;
}
.odd-change.up { color: var(--green); }
.odd-change.down { color: var(--red); }

.match-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.match-bookmakers {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.match-compare-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 4px;
}
.match-compare-link:hover { gap: 8px; }
.match-compare-link::after { content: '→'; }

/* ─── Odds Comparison Table ──────────────────────────────── */
.odds-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.odds-table {
    width: 100%;
    font-size: 14px;
}

.odds-table thead {
    background: var(--bg-surface);
}

.odds-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.odds-table th.center,
.odds-table td.center {
    text-align: center;
}

.odds-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.odds-table tbody tr {
    transition: background var(--duration) var(--ease-out);
}

.odds-table tbody tr:hover {
    background: var(--bg-hover);
}

.odds-table tbody tr:last-child td {
    border-bottom: none;
}

.odds-table .bk-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.odds-table .bk-logo {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-xs);
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.odds-table .bk-name {
    font-weight: 600;
}

.odds-table .odds-cell {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease-out);
    cursor: pointer;
}

.odds-cell:hover {
    background: var(--brand-glow);
}

.odds-cell.best {
    background: var(--green-bg);
    color: var(--green);
    font-weight: 700;
}

.odds-cell .change-indicator {
    display: inline-block;
    font-size: 9px;
    margin-left: 4px;
}
.change-indicator.up { color: var(--green); }
.change-indicator.down { color: var(--red); }

.odds-table .cta-cell {
    text-align: right;
}

/* ─── Value Bets Card ────────────────────────────────────── */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-md) var(--ease-out);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--yellow-glow);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.value-edge {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 4px;
}

.value-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ─── Sport Filter Tabs ──────────────────────────────────── */
.sport-tabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
.sport-tabs::-webkit-scrollbar { display: none; }

.sport-tab {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sport-tab:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.sport-tab.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.sport-tab .count {
    font-size: 11px;
    padding: 1px 6px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.sport-tab.active .count {
    background: var(--brand-glow);
    color: var(--brand);
}

/* ─── League Cards ───────────────────────────────────────── */
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.league-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    cursor: pointer;
}

.league-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
    transform: translateX(4px);
}

.league-flag {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.league-info {
    min-width: 0;
}

.league-name {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.league-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── Article Cards ──────────────────────────────────────── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-md) var(--ease-out);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.article-card-body {
    padding: 20px;
}

.article-card-cat {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.article-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── Newsletter Section ─────────────────────────────────── */
.newsletter-section {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, var(--brand-glow) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    position: relative;
}

.newsletter-sub {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
}

.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    gap: 8px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color var(--duration) var(--ease-out);
}

.newsletter-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

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

.newsletter-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    position: relative;
}

/* ─── Bookmaker Cards ────────────────────────────────────── */
.bookmaker-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
}

.bookmaker-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.bookmaker-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
}

.bookmaker-info { flex: 1; }
.bookmaker-name { font-weight: 700; font-size: 15px; }
.bookmaker-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--yellow); }

.bookmaker-bonus {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    margin-top: var(--section-gap);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease-out);
}
.footer-link:hover { color: var(--text-primary); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 24px auto 0;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ─── Stats Row ──────────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--duration) var(--ease-out);
}

.stat-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Ad Slots ───────────────────────────────────────────── */
.ad-slot {
    background: var(--bg-surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-slot img {
    border-radius: var(--radius-sm);
    max-width: 100%;
}

/* ─── Cookie Consent ─────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: var(--shadow-xl);
    display: none;
    animation: slide-up 0.4s var(--ease-out);
}

.cookie-banner.show { display: block; }

.cookie-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Badge / Pill ───────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    color: var(--text-secondary);
}

.badge-live { background: var(--green-bg); color: var(--green); }
.badge-hot { background: var(--red-bg); color: var(--red); }
.badge-value { background: var(--yellow-glow); color: var(--yellow); }
.badge-new { background: var(--purple-glow); color: var(--purple); }

/* ─── Skeleton Loading ───────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-hover) 50%, var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── Utility Classes ────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.relative { position: relative; }
.hidden { display: none; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats { gap: 24px; }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 56px;
        --nav-height: 52px;
    }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-base);
        padding: 16px;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
        animation: fade-in-up 0.3s var(--ease-out);
    }

    .nav-links.open .nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero { padding-top: calc(var(--nav-height) + 40px); }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat { flex: 1; min-width: 80px; }

    .matches-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .leagues-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-section { padding: 40px 24px; }
    .newsletter-form { flex-direction: column; }

    .odds-table-wrap { overflow-x: auto; }
    .odds-table { min-width: 600px; }

    .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { gap: 12px; }
    .match-card { padding: 16px; }
    .leagues-grid { grid-template-columns: 1fr; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

/* ─── Animations ─────────────────────────────────────────── */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.stagger > * {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.25s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Article Content Typography ─────────────────────────── */
.article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    letter-spacing: -0.02em;
}

.article-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 32px 0 12px;
    letter-spacing: -0.01em;
}

.article-content h4 {
    font-size: 1.05rem;
    margin: 24px 0 8px;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content a {
    color: var(--brand-light);
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color var(--duration) var(--ease-out);
}
.article-content a:hover {
    text-decoration-color: var(--brand-light);
}

.article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content li::marker {
    color: var(--brand);
}

.article-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 3px solid var(--brand);
    background: var(--bg-surface);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    padding: 2px 6px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--brand-light);
}

.article-content pre {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.6;
}

.article-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    color: var(--text-primary);
}

.article-content table {
    width: 100%;
    margin: 24px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 14px;
}

.article-content thead {
    background: var(--bg-surface);
}

.article-content th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.article-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.article-content tbody tr:last-child td {
    border-bottom: none;
}

.article-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.article-content strong {
    font-weight: 700;
    color: var(--text-primary);
}

.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* ─── Missing Utility Classes ────────────────────────────── */
.center { text-align: center; }

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color var(--duration) var(--ease-out);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
}
.btn-outline:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

/* ─── Search Box ─────────────────────────────────────────── */
.search-box {
    position: relative;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 18px 12px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color var(--duration) var(--ease-out);
}
.search-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}
.search-input::placeholder { color: var(--text-muted); }

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

/* ─── Glossary Styles ────────────────────────────────────── */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 12px;
}

.glossary-term-card {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
}
.glossary-term-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
    transform: translateX(4px);
}

.glossary-term-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glossary-term-def {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alpha-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.alpha-nav a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease-out);
}
.alpha-nav a:hover {
    background: var(--brand-glow);
    color: var(--brand);
    border-color: var(--brand);
}
.alpha-nav a.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.letter-group {
    margin-bottom: 32px;
}

.letter-heading {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-glow);
}

/* ─── Accessibility ──────────────────────────────────────── */
*:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--brand);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 8px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .odds-ticker-inner { animation: none; }
}

/* High contrast */
@media (prefers-contrast: high) {
    :root {
        --border: #3B4D70;
        --border-light: #4D6090;
        --text-muted: #8899BB;
    }
}

/* ─── Light Mode Badge Fixes ─────────────────────────────── */
[data-theme="light"] .badge-live { background: rgba(16, 185, 129, 0.12); color: #059669; }
[data-theme="light"] .badge-hot { background: rgba(239, 68, 68, 0.1); color: #DC2626; }
[data-theme="light"] .badge-value { background: rgba(245, 158, 11, 0.1); color: #D97706; }
[data-theme="light"] .badge-new { background: rgba(139, 92, 246, 0.1); color: #7C3AED; }
[data-theme="light"] .odd-btn.best { background: rgba(16, 185, 129, 0.06); }
[data-theme="light"] .odds-cell.best { background: rgba(16, 185, 129, 0.06); }
[data-theme="light"] .value-card::before { background: linear-gradient(135deg, #D97706, #EA580C); }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-active); }
