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

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Backgrounds */
  --bg: #080810;
  --bg-card: #0f0f1a;
  --bg-elevated: #15152a;

  /* Text */
  --fg: #ffffff;
  --fg-muted: rgba(255,255,255,0.5);

  /* Accent — electric teal */
  --accent: #00D4A0;
  --accent-dark: #00a882;
  --accent-glow: rgba(0,212,160,0.25);

  /* Semantic */
  --green: #00D4A0;
  --red: #ff4444;

  /* Borders */
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(0,212,160,0.3);

  /* Layout */
  --radius: 8px;
  --max-w: 1100px;

  /* Game colors (preserved) */
  --game-valorant: #ff4655;
  --game-lol: #c69b3a;
  --game-cs2: #de9b3d;
  --game-dota2: #d63232;
  --game-rocketleague: #1f8cf0;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===================== NAV ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,16,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
  padding: 0 24px;
}

.nav-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
  /* Teal brand mark */
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-brand .slash {
  color: var(--accent);
  font-weight: 800;
  margin-right: 1px;
}

.nav-brand .brand-name {
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--bg-elevated);
}

.nav-link.game-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pill, var(--accent));
  background: color-mix(in srgb, var(--pill, var(--accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--pill, var(--accent)) 25%, transparent);
  padding: 4px 9px;
  transition: background 0.15s, transform 0.15s;
}

.nav-link.game-pill:hover {
  background: color-mix(in srgb, var(--pill, var(--accent)) 22%, transparent);
  transform: translateY(-1px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  /* Teal radial accent */
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,212,160,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,212,160,0.03) 0%, transparent 50%);
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-content { position: relative; z-index: 1; }

/* Stacked nav tag */
.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,160,0.08);
  border: 1px solid rgba(0,212,160,0.2);
  border-radius: 4px;
  padding: 5px 12px;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--fg);
}

h1 .highlight {
  color: var(--accent);
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 30px rgba(0,212,160,0.3), 0 4px 16px rgba(0,0,0,0.4);
}

.hero-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,160,0.4), 0 6px 20px rgba(0,0,0,0.5);
}

.hero-cta-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.hero-cta-secondary:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-muted);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ===================== TODAY'S PICKS ===================== */
.todays-picks {
  padding: 48px 24px 0;
  border-top: 1px solid var(--border);
}

.tp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto 24px;
  padding: 0 24px;
}

.tp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.tp-label svg {
  color: var(--accent);
}

.tp-see-all {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.tp-see-all:hover { color: var(--accent); }

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.tp-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game, var(--accent));
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tp-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 40%, transparent);
  border-top-color: var(--game, var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.tp-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tp-game-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--game, var(--accent)) 12%, transparent);
  color: var(--game, var(--accent));
  border: 1px solid color-mix(in srgb, var(--game, var(--accent)) 25%, transparent);
}

.tp-tournament {
  font-size: 0.75rem;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tp-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tp-team {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tp-team-right { align-items: flex-end; }

.tp-team-name {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tp-odds {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.tp-vs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.tp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tp-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.tp-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 900px) {
  .tp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .tp-grid { grid-template-columns: 1fr; }
}

/* ===================== GAMES SECTION ===================== */
.games {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.games-inner { max-width: var(--max-w); margin: 0 auto; }

.games h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.games-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 500px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--game-accent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.game-card:hover {
  border-color: var(--game-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.game-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--game-accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-block;
}

.game-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.game-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===================== FEATURES SECTION ===================== */
.features {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.features-inner { max-width: var(--max-w); margin: 0 auto; }

.features-header {
  margin-bottom: 56px;
}

.features-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 460px;
}

.features-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-block {
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 28px;
  align-items: start;
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.feature-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-body p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ===================== CLOSING SECTION ===================== */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,212,160,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 30px rgba(0,212,160,0.25), 0 4px 16px rgba(0,0,0,0.4);
}

.closing-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,160,0.35), 0 6px 20px rgba(0,0,0,0.5);
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ctag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 36px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===================== PAGE SHARED ===================== */
.page-main { min-height: 80vh; }

.page-header {
  padding: 56px 24px 36px;
  border-bottom: 1px solid var(--border);
}

.page-header-inner { max-width: var(--max-w); margin: 0 auto; }

.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
  line-height: 1.1;
}

.page-title .highlight { color: var(--accent); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.88rem;
}

.bc-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.bc-link:hover { color: var(--fg); }
.bc-sep { color: var(--border); }

.bc-game {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ===================== SECTION HEADERS (FanDuel style) ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title .game-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--game-accent, var(--accent));
  flex-shrink: 0;
}

.section-more-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-more-link:hover { opacity: 0.8; }

.section-more-link svg {
  width: 14px;
  height: 14px;
}

/* ===================== GAME FILTER BAR ===================== */
.game-filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.gfbtn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.gfbtn:hover,
.gfbtn.active {
  color: var(--g, var(--accent));
  background: color-mix(in srgb, var(--g, var(--accent)) 12%, transparent);
  border-color: color-mix(in srgb, var(--g, var(--accent)) 30%, transparent);
}

.gfbtn.active:not([style]) {
  color: var(--accent);
  background: rgba(0,212,160,0.1);
  border-color: rgba(0,212,160,0.3);
}

/* ===================== MATCH CARDS (FEATURED GRID) ===================== */
.featured-section {
  padding: 40px 24px 0;
}

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

/* FanDuel-style horizontal match card */
.fd-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
}

.fd-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 50%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Game-color left accent bar (FanDuel pattern) */
.fd-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--game, var(--accent));
}

.fd-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 8px;
}

.fd-game-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--game, var(--accent)) 12%, transparent);
  color: var(--game, var(--accent));
  border: 1px solid color-mix(in srgb, var(--game, var(--accent)) 25%, transparent);
}

.fd-tournament {
  font-size: 0.72rem;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.fd-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Team rows — FanDuel-style horizontal layout */
.fd-team-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
}

.fd-team-row:first-of-type { border-top: none; }

.fd-team-name-col {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  min-width: 0;
}

.fd-team-name-col .sub-text {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* Odds columns — Spread / Money / Total */
.fd-odds-cols {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
}

.fd-odds-cell {
  padding: 10px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  min-width: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.fd-odds-cell:last-child { border-right: none; }

.fd-odds-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.fd-odds-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.fd-odds-val.favorite {
  color: var(--accent);
}

.fd-odds-val.underdog {
  color: #f5a623;
}

.fd-odds-val.off-white {
  color: rgba(255,255,255,0.55);
}

/* "Pick" highlight cell */
.fd-pick-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-left: 1px solid var(--border);
}

.fd-pick-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* SGP badge */
.fd-sgp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,160,0.08);
  border: 1px solid rgba(0,212,160,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  margin: 8px 16px 10px;
}

.fd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.fd-footer-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.fd-footer-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--game, var(--accent));
}

/* Odds header row */
.fd-odds-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
}

.fd-odds-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fd-odds-header-right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Column headers */
.fd-col-headers {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.fd-col-header {
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  border-right: 1px solid var(--border);
  min-width: 58px;
}

.fd-col-header:last-child { border-right: none; }
.fd-col-header.sgp-col { min-width: 50px; }

/* ===================== MATCH ROWS (LIST VIEW) ===================== */
.match-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--game, var(--accent));
}

.match-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 40%, transparent);
  border-top-color: var(--game, var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.mc-game-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.mc-tournament {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mc-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-team-right { align-items: flex-end; }

.mc-team-name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mc-odds {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.mc-team-right .mc-odds {
  color: rgba(255,255,255,0.45);
}

.mc-vs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.mc-date {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.mc-preview-hint {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===================== ALL MATCHES SECTION ===================== */
.all-matches-section {
  padding: 40px 24px 80px;
}

.game-section { margin-bottom: 40px; }

.game-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.game-section-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}

.game-section-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.match-row {
  display: flex;
  align-items: center;
  gap: 6px 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.15s;
  flex-wrap: wrap;
  border-left: 3px solid var(--game, transparent);
}

.match-row:hover {
  background: var(--bg-elevated);
  border-left-color: var(--game, var(--accent));
}

.mr-tournament {
  flex: 0 0 100%;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

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

.mr-team {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mr-odds-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.mr-odds {
  font-size: 0.85rem;
  font-weight: 700;
}

.mr-odds.green { color: var(--accent); }
.mr-odds.muted { color: var(--fg-muted); }

.mr-divider { color: var(--border); font-size: 0.75rem; }

.mr-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.mr-arrow {
  color: var(--fg-muted);
  font-size: 0.9rem;
  transition: color 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.match-row:hover .mr-arrow {
  color: var(--game, var(--accent));
  transform: translateX(3px);
}

/* ===================== MATCH DETAIL ===================== */
.match-detail {
  padding: 40px 24px 80px;
}

.match-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Match hero card — FanDuel style */
.match-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game, var(--accent));
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.mh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.mh-tournament {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
}

.mh-tournament-name {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.mh-game-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* Main odds table */
.mh-odds-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

/* Team block */
.mh-team-block {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mh-team-right .mh-team-block {
  align-items: flex-end;
  text-align: right;
}

.mh-team-name {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Odds in columns: Spread / Money / Total */
.mh-odds-columns {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.mh-odds-col-header {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.mh-odds-col-label {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-right: 1px solid var(--border);
}

.mh-odds-col-label:last-child { border-right: none; }

.mh-odds-col-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.mh-odds-col-row:last-child { border-bottom: none; }

.mh-odds-col-val {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 800;
  border-right: 1px solid var(--border);
}

.mh-odds-col-val:last-child { border-right: none; }

.mh-odds-col-val.fav { color: var(--accent); }
.mh-odds-col-val.under { color: #f5a623; }
.mh-odds-col-val.muted { color: rgba(255,255,255,0.45); }

/* Center VS divider */
.mh-vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  gap: 6px;
  min-width: 90px;
  background: rgba(255,255,255,0.02);
}

.mh-vs-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  padding: 5px 12px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.mh-vs-date {
  font-size: 0.78rem;
  color: var(--fg);
  font-weight: 600;
  text-align: center;
}

.mh-vs-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Probability bar — FanDuel style */
.prob-bar-wrap {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.prob-bar-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.prob-pct {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.9rem;
}

.prob-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.prob-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.prob-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
  background: linear-gradient(90deg, var(--accent) 0%, #00e8b0 100%);
}

/* Preview block */
.preview-block {
  margin-bottom: 28px;
}

.preview-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.preview-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.preview-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg);
}

.preview-body p { margin-bottom: 14px; }
.preview-body strong { font-weight: 700; }

/* Bet CTA block */
.bet-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.bet-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bet-cta-headline {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.bet-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.bet-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #00c090 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(0,212,160,0.3), 0 4px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.bet-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,212,160,0.4), 0 6px 16px rgba(0,0,0,0.4);
}

/* Back nav */
.back-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.back-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.back-link:hover { color: var(--fg); }

/* ===================== ARTICLES ===================== */
.articles-section {
  padding: 40px 24px 80px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.15s;
}

.article-row:hover {
  background: var(--bg-elevated);
}

.article-game-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0,212,160,0.08);
  border: 1px solid rgba(0,212,160,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.article-row-content { flex: 1; }

.article-row-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.article-row-excerpt {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.article-row-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* Article detail */
.article-detail {
  padding: 40px 24px 80px;
}

.article-detail-inner {
  max-width: 680px;
  margin: 0 auto;
}

.article-header { margin-bottom: 28px; }

.article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 10px;
  line-height: 1.15;
}

.article-meta {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.article-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
}

/* Article odds widget */
.article-odds-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
}

.aow-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.aow-matchup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  flex-wrap: wrap;
}

.aow-team {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.aow-odds {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 800;
}

.aow-vs {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.aow-cta {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

/* Article body */
.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 36px;
}

.article-body p { margin-bottom: 18px; }

.article-body h2,
.article-body h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 28px 0 14px;
}

.article-body h2 { font-size: 1.3rem; }
.article-body h3 { font-size: 1.1rem; }

.article-body strong { font-weight: 700; }

.article-footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--fg-muted);
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.empty-text { font-size: 1rem; }

/* ===================== GLOSSARY ===================== */
.gloss-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Alphabet nav */
.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.alpha-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.alpha-btn:hover {
  color: var(--accent);
  background: rgba(0,212,160,0.08);
  border-color: rgba(0,212,160,0.25);
}

/* Glossary body */
.gloss-body {
  padding: 48px 24px 80px;
}

.gloss-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Letter section */
.gloss-letter-section {
  margin-bottom: 56px;
  scroll-margin-top: 80px;
}

.gloss-letter-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.gloss-letter-char {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}

/* Term cards */
.gloss-terms {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gloss-term {
  background: var(--bg-card);
  padding: 20px 24px;
  transition: background 0.15s;
}

.gloss-term:hover {
  background: var(--bg-elevated);
}

.gt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.gt-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.gt-game-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(0,212,160,0.08);
  border: 1px solid rgba(0,212,160,0.2);
}

/* Game-specific badge colors */
.gt-game-badge[data-game="valorant"] {
  color: #ff4655;
  background: rgba(255,70,85,0.08);
  border-color: rgba(255,70,85,0.22);
}
.gt-game-badge[data-game="cs2"] {
  color: #de9b3d;
  background: rgba(222,155,61,0.08);
  border-color: rgba(222,155,61,0.22);
}
.gt-game-badge[data-game="lol"],
.gt-game-badge[data-game="league"] {
  color: #c69b3a;
  background: rgba(198,155,58,0.08);
  border-color: rgba(198,155,58,0.22);
}
.gt-game-badge[data-game="dota2"],
.gt-game-badge[data-game="dota"] {
  color: #d63232;
  background: rgba(214,50,50,0.08);
  border-color: rgba(214,50,50,0.22);
}
.gt-game-badge[data-game="rocketleague"],
.gt-game-badge[data-game="rocket"] {
  color: #1f8cf0;
  background: rgba(31,140,240,0.08);
  border-color: rgba(31,140,240,0.22);
}

.gt-def {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 8px;
  max-width: 760px;
}

.gt-example {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 760px;
}

.gt-example-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}

/* CTA band at bottom */
.gloss-cta-band {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,212,160,0.03) 100%);
}

.gloss-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.gloss-cta-text {
  flex: 1;
  min-width: 260px;
}

.gloss-cta-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.gloss-cta-sub {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 400px;
}

.gloss-cta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.gloss-game-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pill, var(--accent));
  background: color-mix(in srgb, var(--pill, var(--accent)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--pill, var(--accent)) 25%, transparent);
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  text-align: center;
}

.gloss-game-link:hover {
  background: color-mix(in srgb, var(--pill, var(--accent)) 20%, transparent);
  transform: translateX(3px);
}

/* ===================== FD GAME FILTER BAR ===================== */
.fd-game-filter-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 90;
}

.fd-filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fd-filter-inner::-webkit-scrollbar { display: none; }

.fd-filter-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 12px 16px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.fd-filter-tab:hover {
  color: var(--fg);
}

.fd-filter-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.fd-filter-tab[style]:not(.active) {
  color: var(--tab, var(--accent));
  border-bottom-color: transparent;
}

.fd-filter-tab.active[style] {
  border-bottom-color: var(--tab, var(--accent));
  color: var(--tab, var(--accent));
}

.fd-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tab, var(--accent));
  flex-shrink: 0;
}

/* ===================== FD MATCH GRID ===================== */
.fd-game-section {
  margin-bottom: 48px;
}

.fd-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.fd-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  margin-bottom: 24px;
}

.fd-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fd-section-icon {
  font-size: 0.9rem;
  color: var(--accent);
}

.fd-game-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fd-game-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.fd-section-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.fd-section-more:hover { opacity: 0.8; }

/* FD Card header & footer */
.fd-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.fd-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.fd-footer-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.fd-footer-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--game, var(--accent));
}

/* FD Team rows */
.fd-team-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}

.fd-team-row:last-child { border-bottom: none; }

.fd-team-name-col {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fd-team-main {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.fd-team-sub {
  font-size: 0.68rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* FD Odds columns */
.fd-odds-cols {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}

.fd-odds-cell {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-right: 1px solid var(--border);
  min-width: 64px;
}

.fd-odds-cell:last-child { border-right: none; }

.fd-odds-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.fd-odds-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.fd-odds-val.favorite { color: var(--accent); }
.fd-odds-val.underdog { color: #f5a623; }
.fd-odds-val.off-white { color: rgba(255,255,255,0.5); }

/* ===================== MATCH DETAIL EXTRAS ===================== */
/* Team block inside odds table */
.mh-team-a {
  border-right: 1px solid var(--border);
}

.mh-team-b {
  border-left: 1px solid var(--border);
}

.mh-team-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.mh-money-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.mh-money-val.fav { color: var(--accent); }
.mh-money-val.under { color: #f5a623; }
.mh-money-val.muted { color: rgba(255,255,255,0.4); }

/* Match info footer */
.mh-info-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mh-info-row {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mh-info-row:last-child,
.mh-info-row:nth-last-child(2):nth-child(odd) {
  border-right: none;
}

.mh-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.mh-info-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

/* FanDuel-style CTA band */
.fd-cta-band {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.fd-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fd-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fd-cta-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.fd-cta-headline {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.fd-cta-sub {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.fd-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #00c090 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(0,212,160,0.3), 0 4px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.fd-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,212,160,0.4), 0 6px 16px rgba(0,0,0,0.4);
}

/* ===================== HOMEPAGE REDESIGN (FanDuel-style) ===================== */
.fd-homepage {
  min-height: 80vh;
}

/* Compact homepage hero band */
.home-hero-band {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 50% at 70% -20%, rgba(0,212,160,0.05) 0%, transparent 60%);
}

.home-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.home-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.home-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.home-hero-title .hl { color: var(--accent); }

.home-hero-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(0,212,160,0.25), 0 4px 12px rgba(0,0,0,0.35);
}

.home-hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(0,212,160,0.35), 0 6px 16px rgba(0,0,0,0.4);
}

.home-hero-games {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-game-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.home-game-chip:hover { opacity: 0.8; }

/* Featured section (Today's Picks) */
.home-featured {
  padding: 56px 24px 64px;
  border-bottom: 1px solid var(--border);
}

.home-featured-inner { max-width: var(--max-w); margin: 0 auto; }

/* Game sections on homepage */
.home-games-section {
  padding: 0 24px 56px;
}

.home-games-inner { max-width: var(--max-w); margin: 0 auto; }

.home-game-block {
  margin-bottom: 40px;
}

.home-game-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.home-game-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-game-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-game-count-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.home-game-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.home-game-more:hover { opacity: 0.8; }

.home-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* Homepage match cards - compact horizontal layout */
.fd-home-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fd-home-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 50%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.fd-home-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--game, var(--accent));
}

.fd-home-card .fd-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.fd-home-card .fd-game-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--game, var(--accent)) 12%, transparent);
  color: var(--game, var(--accent));
  border: 1px solid color-mix(in srgb, var(--game, var(--accent)) 25%, transparent);
}

.fd-home-card .fd-tournament {
  font-size: 0.68rem;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  flex: 1;
}

.fd-home-card .fd-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: var(--fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Team rows in compact home cards */
.fd-home-card .fd-team-row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.fd-home-card .fd-team-row:first-of-type { border-top: none; }

.fd-home-card .fd-team-name-col {
  flex: 1;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fd-home-card .fd-team-main {
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.fd-home-card .fd-team-sub {
  font-size: 0.62rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Odds columns in home cards */
.fd-home-card .fd-odds-cols {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}

.fd-home-card .fd-odds-cell {
  padding: 8px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-right: 1px solid var(--border);
  min-width: 50px;
}

.fd-home-card .fd-odds-cell:last-child { border-right: none; }

.fd-home-card .fd-odds-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.fd-home-card .fd-odds-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.fd-home-card .fd-odds-val.favorite { color: var(--accent); }
.fd-home-card .fd-odds-val.underdog { color: #f5a623; }
.fd-home-card .fd-odds-val.off-white { color: rgba(255,255,255,0.45); }

/* Footer of home card */
.fd-home-card .fd-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.fd-home-card .fd-footer-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: var(--fg-muted);
}

.fd-home-card .fd-footer-cta {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--game, var(--accent));
}

/* "All Games" section header */
.home-all-games-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.home-all-games-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 56px 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }

  .stat-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 18px;
  }

  .feature-num { font-size: 1.4rem; }

  .footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .closing-tags { gap: 6px; }

  .nav-links { gap: 3px; }
  .nav-link { font-size: 0.8rem; padding: 4px 8px; }

  /* FanDuel-style cards on mobile: full width stack */
  .featured-grid { grid-template-columns: 1fr; }

  /* Match detail odds table: stack to single column */
  .mh-odds-table {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mh-team-a {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
    text-align: center;
    align-items: center;
  }

  .mh-team-a .mh-team-label { text-align: center; }

  .mh-odds-columns {
    border-left: none;
    border-right: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mh-odds-col-label { font-size: 0.5rem; padding: 6px 4px; }
  .mh-odds-col-val { font-size: 0.8rem; padding: 8px 4px; }

  .mh-team-b {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 20px 16px;
    text-align: center;
    align-items: center;
  }

  .mh-team-b .mh-team-label { text-align: center; }

  .mh-info-footer { flex-direction: column; }
  .mh-info-row { border-right: none; border-bottom: 1px solid var(--border); flex: 1 1 auto; }

  .fd-cta-inner { flex-direction: column; align-items: flex-start; }
  .fd-cta-btn { width: 100%; text-align: center; }

  .bet-cta-inner { flex-direction: column; align-items: flex-start; }

  /* Match listing: single column */
  .fd-match-grid { grid-template-columns: 1fr; }
  .fd-game-filter-bar { top: 60px; }

  .article-row { flex-wrap: wrap; }
  .article-row-date { display: none; }

  /* ===================== FD PROMO BANNER ===================== */
  .fd-promo-banner {
    background: linear-gradient(135deg, rgba(0,212,160,0.08) 0%, rgba(0,212,160,0.03) 100%);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
  }

  .fd-promo-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .fd-promo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--fg-muted);
    font-weight: 500;
  }

  .fd-promo-icon {
    color: var(--accent);
    font-size: 0.9rem;
  }

  .fd-promo-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
  }

  .fd-promo-cta:hover { opacity: 0.8; }

  /* ===================== FD FEATURED GRID ===================== */
  .fd-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
  }

  /* Featured matchup card (larger, highlighted) */
  .fd-featured-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--game, var(--accent));
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--fg);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    padding-bottom: 4px;
  }

  .fd-featured-card:hover {
    border-color: color-mix(in srgb, var(--game, var(--accent)) 50%, transparent);
    border-top-color: var(--game, var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  /* Top bar: game badge + tournament + time */
  .sfc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    flex-wrap: wrap;
  }

  .sfc-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .sfc-tournament {
    font-size: 0.75rem;
    color: var(--fg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }

  .sfc-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--fg-muted);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Team rows section */
  .sfc-teams {
    display: flex;
    flex-direction: column;
  }

  .sfc-team-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }

  .sfc-team-row:last-child { border-bottom: none; }

  .sfc-team-name {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .sfc-team-main {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .sfc-team-sub {
    font-size: 0.7rem;
    color: var(--fg-muted);
    font-weight: 500;
  }

  .sfc-odds-row {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
    flex-shrink: 0;
  }

  .sfc-odds-cell {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 64px;
  }

  .sfc-odds-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-muted);
  }

  .sfc-odds-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    color: var(--fg);
  }

  .sfc-odds-val.favorite { color: var(--accent); }
  .sfc-odds-val.underdog { color: #f5a623; }

  /* VS divider row */
  .sfc-vs-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
  }

  .sfc-vs-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 4px;
  }

  .sfc-vs-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--fg-muted);
  }

  /* Card footer */
  .sfc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
  }

  .sfc-footer-info {
    font-size: 0.7rem;
    color: var(--fg-muted);
  }

  .sfc-footer-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--game, var(--accent));
  }

  /* ===================== QUICK LINKS SECTION ===================== */
  .home-quick-links {
    padding: 0 24px 80px;
    border-top: 1px solid var(--border);
    margin-top: 0;
  }

  .home-quick-inner { max-width: var(--max-w); margin: 0 auto; }

  .home-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    padding-top: 32px;
  }

  .home-quick-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--fg);
    transition: border-color 0.2s, transform 0.2s;
  }

  .home-quick-card:hover {
    border-color: rgba(0,212,160,0.3);
    transform: translateY(-2px);
  }

  .hqc-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent);
  }

  .hqc-label {
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    color: var(--fg);
  }

  .hqc-sub {
    font-size: 0.78rem;
    color: var(--fg-muted);
    line-height: 1.5;
  }

  /* ===================== RESPONSIVE UPDATES ===================== */
  @media (max-width: 768px) {
    .fd-promo-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
    .fd-featured-grid {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 0 16px;
    }
    .fd-homepage .fd-game-filter-bar { top: 60px; }
    .home-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .home-hero-actions { flex-direction: column; align-items: flex-start; }
    .home-hero-games { flex-wrap: wrap; }
    .home-featured { padding: 40px 0 48px; }
    .fd-section-header { margin-bottom: 16px; }
    .sfc-footer { padding: 12px 16px; }
    .sfc-team-name { padding: 14px 16px; }
    .sfc-vs-row { padding: 10px 16px; }
  }

  @media (max-width: 480px) {
    .home-quick-grid { grid-template-columns: 1fr; }
  }

  /* ===================== MATCH DETAIL — TOP PICK BANNER ===================== */
  .md-top-pick-banner {
    background: linear-gradient(135deg, rgba(0,212,160,0.07) 0%, rgba(0,212,160,0.02) 100%);
    border: 1px solid rgba(0,212,160,0.2);
    border-radius: var(--radius);
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  .md-top-pick-inner {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .md-top-pick-icon {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .md-top-pick-text {
    font-size: 0.82rem;
    color: var(--fg-muted);
    font-weight: 500;
    flex: 1;
  }

  .md-top-pick-game {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(0,212,160,0.08);
    border: 1px solid rgba(0,212,160,0.2);
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
  }

  /* Pick badge in odds table */
  .mh-pick-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(0,212,160,0.1);
    border: 1px solid rgba(0,212,160,0.3);
    padding: 3px 9px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
  }

  /* ===================== KEY INSIGHTS SECTION ===================== */
  .md-insights-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
    overflow: hidden;
  }

  .md-insights-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
  }

  .md-insights-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .md-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0;
  }

  .md-insight-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-width: 0;
  }

  .md-insight-card:nth-child(4n) { border-right: none; }

  .md-insight-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
  }

  .md-insight-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1.1;
  }

  .md-insight-good { color: var(--accent) !important; }

  .md-insight-sub {
    font-size: 0.72rem;
    color: var(--fg-muted);
    line-height: 1.4;
  }
}

/* ===================== GOOGLE ADSENSE ===================== */
/* Ad units styled to match the EdgeRush dark sportsbook aesthetic (#080810 bg) */

.ad-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.ad-wrapper.full-width {
  max-width: 1100px;
  padding: 0 24px;
}

.ad-wrapper.page-width {
  max-width: 900px;
  padding: 0 24px;
}

.ad-slot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-slot::before {
  content: 'Advertisement';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* AdSense injected ads hidden until filled */
.adsbygoogle { display: none; }
.adsbygoogle[data-ad-status="filled"] { display: block; }

/* Responsive breakpoints */
@media (max-width: 768px) {
  .ad-wrapper.full-width,
  .ad-wrapper.page-width {
    padding: 0 16px;
  }
}

/* ===================== TOURNAMENT CALENDAR ===================== */

/* Page subheading */
.tournaments-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin: 12px 0 24px;
}

/* Quick stats row */
.tour-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.tour-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.tour-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Tournament sections */
.tour-section {
  padding: 40px 24px 0;
}

.tour-section-completed {
  padding-bottom: 80px;
}

.tour-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.tour-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tour-section-name {
  color: var(--fg);
}

.tour-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Live section specific */
.tour-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00D4A0;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 160, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(0, 212, 160, 0); }
}

.tour-live-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00D4A0;
  background: rgba(0, 212, 160, 0.1);
  border: 1px solid rgba(0, 212, 160, 0.25);
  padding: 3px 9px;
  border-radius: 4px;
}

.tour-upcoming-icon {
  font-size: 0.9rem;
  color: #60a5fa;
}

.tour-completed-icon {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Spotlight card — featured live event */
.tour-spotlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game, var(--accent));
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tour-spotlight:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 50%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.tour-spotlight-left { flex: 1; }

.tour-spotlight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tour-spotlight-location {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.tour-spotlight-name {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.tour-spotlight-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 16px;
}

.tour-spotlight-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.tour-chip.prize {
  color: var(--accent);
  background: rgba(0, 212, 160, 0.08);
  border-color: rgba(0, 212, 160, 0.2);
}

.tour-spotlight-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  min-width: 180px;
}

.tour-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.tour-date-range {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}

.tour-date-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.tour-date-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}

.tour-match-cta {
  margin-top: 8px;
}

.tour-match-cta-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--game, var(--accent));
}

/* Tournament card grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game, var(--accent));
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 50%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.tc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.tc-live-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00D4A0;
  background: rgba(0, 212, 160, 0.1);
  border: 1px solid rgba(0, 212, 160, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
}

.tc-upcoming-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.tc-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tc-stage {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}

.tc-prize {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0, 212, 160, 0.08);
  border: 1px solid rgba(0, 212, 160, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.tc-dates {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.tc-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tc-teams {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--fg-muted);
}

.tc-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--game, var(--accent));
  flex-shrink: 0;
}

/* Completed tournaments — list view */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tour-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  border-left: 3px solid var(--game, var(--border));
  flex-wrap: wrap;
}

.tour-list-row:hover {
  background: var(--bg-elevated);
}

.tlr-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.tlr-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.tlr-name {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tlr-dates {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.tlr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tlr-prize {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.tlr-stage {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}

.tlr-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.tlr-link:hover { opacity: 0.8; }

/* CTA band at bottom */
.tour-cta-band {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,212,160,0.03) 100%);
}

.tour-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.tour-cta-text {
  flex: 1;
  min-width: 260px;
}

.tour-cta-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.tour-cta-sub {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 400px;
}

.tour-cta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.tour-game-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pill, var(--accent));
  background: color-mix(in srgb, var(--pill, var(--accent)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--pill, var(--accent)) 25%, transparent);
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  text-align: center;
}

.tour-game-link:hover {
  background: color-mix(in srgb, var(--pill, var(--accent)) 20%, transparent);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .tour-spotlight {
    grid-template-columns: 1fr;
  }

  .tour-spotlight-right {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .tour-dates {
    align-items: flex-start;
  }

  .tour-date-range {
    align-items: flex-start;
    text-align: left;
  }

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

  .tour-cta-inner {
    flex-direction: column;
  }

  .tour-list-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tlr-right {
    width: 100%;
    justify-content: flex-start;
  }
}