:root {
  --bg: #0b0d12;
  --bg-2: #141823;
  --bg-3: #1c2130;
  --fg: #e9ecf2;
  --muted: #8892a6;
  --accent: #4f9eff;
  --positive: #34d399;
  --negative: #f87171;
  --line: #232a3a;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
}
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 700; font-size: 18px; letter-spacing: -0.2px;
  color: var(--fg);
}
.brand .dot { color: var(--accent); }
nav.leagues {
  display: flex; gap: 4px;
}
nav.leagues a {
  color: var(--muted); text-decoration: none;
  padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 500;
}
nav.leagues a.active { color: var(--fg); background: var(--bg-3); }
nav.leagues a:hover { color: var(--fg); }
main {
  max-width: 1080px; margin: 0 auto; padding: 28px 32px 64px;
}
h1 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.3px;
  margin: 0 0 4px;
}
.subtitle {
  color: var(--muted); font-size: 13px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--positive); animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.markets {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 12px 16px; text-align: left; font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--bg-3); color: var(--muted); font-weight: 500;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.4px;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-3); }
td.player { font-weight: 500; }
td.stat { color: var(--muted); font-size: 12px; }
td.line { font-variant-numeric: tabular-nums; font-weight: 500; }
.odds {
  display: inline-block; padding: 6px 12px; border-radius: 6px;
  background: var(--bg-3); border: 1px solid var(--line);
  font-variant-numeric: tabular-nums; font-weight: 500;
  min-width: 56px; text-align: center;
}
.odds.over { color: var(--positive); }
.odds.under { color: var(--negative); }
footer.site {
  border-top: 1px solid var(--line); margin-top: 48px;
  padding: 20px 32px; color: var(--muted); font-size: 12px;
  text-align: center;
}
.empty {
  padding: 48px; text-align: center; color: var(--muted);
}
