:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #00D4A0;
  --accent-glow: rgba(0, 212, 160, 0.3);
  --green: #00D4A0;
  --red: #ef4444;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

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

.hero-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(0, 212, 160, 0.1);
  border: 1px solid rgba(0, 212, 160, 0.25);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #00D4A0 40%, #00f5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

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

/* ===================== GAMES ===================== */
.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.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

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

.game-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--game-accent);
  background: color-mix(in srgb, var(--game-accent) 12%, transparent);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.game-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

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

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

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

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

.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: 80px 1fr;
  gap: 24px;
  padding: 36px 32px;
  align-items: start;
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 212, 160, 0.35);
  line-height: 1;
}

.feature-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

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

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

.closing-accent {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

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

.ctag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 40px 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-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

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

/* ===================== NAV ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

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

.nav-brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-brand span {
  color: var(--accent);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

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

.nav-link.game-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  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 10px;
  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 CTA ===================== */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0, 212, 160, 0.35);
}

.hero-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-block;
  color: var(--fg-muted);
  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);
}

/* ===================== CLOSING CTA ===================== */
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 36px;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0, 212, 160, 0.35);
}

.closing-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

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

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

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

.page-title .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #00D4A0 40%, #00f5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

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

.bc-link {
  color: var(--fg-muted);
  text-decoration: none;
  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.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

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

.gfbtn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  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.12);
  border-color: rgba(0, 212, 160, 0.3);
}

/* ===================== FEATURED SECTION ===================== */
.featured-section {
  padding: 48px 24px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 0;
}

.match-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--game, var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
}

.match-card:hover {
  border-color: color-mix(in srgb, var(--game, var(--accent)) 40%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

.mc-game-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid;
  margin-bottom: 12px;
}

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

.mc-matchup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

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

.mc-team-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.mc-odds {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

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

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

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

/* ===================== MATCH LIST (ALL MATCHES) ===================== */
.all-matches-section {
  padding: 48px 24px 80px;
}

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

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

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

.game-section-name {
  font-weight: 700;
  font-size: 1.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: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.15s;
}

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

.mr-tournament {
  font-size: 0.8rem;
  color: var(--fg-muted);
  grid-column: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mr-matchup {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-row: 1;
  grid-column: 1;
  margin-top: 4px;
}

.mr-team {
  font-weight: 600;
  font-size: 0.95rem;
}

.mr-team.right {
  /* no extra style needed */
}

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

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

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

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

.mr-divider {
  color: var(--border);
}

.mr-date {
  font-size: 0.78rem;
  color: var(--fg-muted);
  white-space: nowrap;
  text-align: right;
}

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

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

/* Match list with 2-row layout */
.match-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 20px;
  gap: 6px 16px;
}

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

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

.mr-date {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.mr-arrow {
  flex-shrink: 0;
  width: 20px;
  text-align: right;
}

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

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

.match-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game, var(--accent));
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 32px;
}

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

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

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

.mh-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.mh-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.mh-team-name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mh-odds-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mh-odds-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.mh-odds-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.mh-vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

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

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

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

/* Probability bar */
.prob-bar-wrap {
  margin-top: 8px;
}

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

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

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

.prob-bar {
  height: 6px;
  background: color-mix(in srgb, var(--fg-muted) 20%, transparent);
  border-radius: 3px;
  overflow: hidden;
}

.prob-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

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

.preview-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.25;
}

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

.preview-body p {
  margin-bottom: 16px;
}

.preview-body strong {
  color: var(--fg);
  font-weight: 700;
}

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

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

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

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

.bet-btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.bet-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

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

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

/* ===================== ARTICLES ===================== */
.articles-section {
  padding: 48px 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: 16px;
  padding: 20px 24px;
  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.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0, 212, 160, 0.1);
  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.98rem;
  margin-bottom: 2px;
}

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

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

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

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

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

.article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 16px 0 12px;
  line-height: 1.15;
}

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

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

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

.aow-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

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

.aow-team {
  font-weight: 700;
  font-size: 0.95rem;
}

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

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

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

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

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

.article-body h2,
.article-body h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 16px;
}

.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.15rem; }

.article-body strong {
  color: var(--fg);
  font-weight: 700;
}

.article-footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  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;
}

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

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

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

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

  .feature-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 20px;
  }

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

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

  .closing-tags {
    gap: 8px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-link {
    padding: 4px 8px;
    font-size: 0.82rem;
  }

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

  .mh-matchup {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .mh-team { align-items: center; }
  .mh-team-right { align-items: center; }

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

  .match-row {
    grid-template-columns: 1fr auto;
  }

  .mr-date { display: none; }

  .article-row {
    flex-wrap: wrap;
  }

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