/* ─────────────────────────────────────────────
   DEBATER — Editorial Redesign
   Bloomberg Terminal meets The Athletic
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;600&display=swap');

/* ─── Variables ─────────────────────────────── */
:root {
  --bg:         #f5f0e8;
  --surface:    #ffffff;
  --surface2:   #faf8f4;
  --black:      #0f0f0f;
  --border:     #e0dbd3;
  --border2:    #c8c2b8;
  /* Legacy aliases */
  --gray1:      #6b6560;
  --gray2:      #9e9891;
  --gray3:      #b5b0aa;
  --bg3:        #faf8f4;
  --white:      #ffffff;
  --green:      #2d6a00;
  --accent:     #c8f542;
  --accent-dark:#9ab832;
  --muted:      #6b6560;
  --muted2:     #9e9891;
  --red:        #d63030;
  --red-bg:     #fef2f2;

  /* Debate block — the dark contrast moment */
  --debate-bg:    #0f0f0f;
  --debate-for:   #c8f542;
  --debate-text:  #ffffff;
  --debate-muted: rgba(255,255,255,0.5);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --nav-h:   64px;
  --r:       6px;
  --r2:      10px;
  --r3:      14px;
  --shadow:  0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow2: 0 2px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.1);
}

/* ─── Status text nuclear specificity reset ─── */
/* Prevents any framework/inherited color from overriding game status labels */
.game-status, .matchup-status, .series-status,
[class*="status"], [class*="Status"] {
  color: inherit !important;
}
/* Hard-code play-in/elimination labels — these override everything */
.status-eliminated {
  color: #8B0000 !important;
  font-weight: 600 !important;
}
.status-advances {
  color: #1a5c1a !important;
  font-weight: 600 !important;
}
.status-playin {
  color: #7a4f00 !important;
  font-weight: 600 !important;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--surface);
  border-bottom: 2px solid var(--black);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--black);
  flex-shrink: 0;
}
.logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--black); background: var(--bg); }
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-user-info { display: flex; align-items: center; gap: 10px; }
.nav-tier-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nav-tier-badge.free {
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}
.nav-tier-badge.pro {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent-dark);
}
.nav-analyses-left { font-size: 0.78rem; color: var(--muted); font-family: var(--font-mono); }

/* ─── Page wrapper ───────────────────────────── */
.page { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 80px; }
.page-tight { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 60px; }

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 18px;
}
.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--black);
  color: var(--surface);
}
.btn-primary:hover { background: #2a2a2a; transform: translateY(-1px); }
.btn-primary:active { transform: none; }

.btn-accent {
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-secondary {
  background: var(--surface);
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-secondary:hover { background: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--black); background: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
}
.btn-ghost:hover { color: var(--black); }

.btn-lg { padding: 13px 28px; font-size: 0.95rem; border-radius: var(--r2); }
.btn-sm { padding: 6px 13px; font-size: 0.78rem; border-radius: 5px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border);
}
.card-flush { padding: 0; }

/* ─── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 10px 13px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--black);
  font-size: 0.9375rem;
  transition: border-color 0.15s;
  outline: none;
}
.form-input:focus { border-color: var(--black); }
.form-input::placeholder { color: var(--muted2); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-hint { font-size: 0.8rem; color: var(--muted2); margin-top: 5px; }
.form-error { font-size: 0.82rem; color: var(--red); margin-top: 6px; }

/* ─── Badges ─────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-black  { background: var(--black); color: var(--surface); }
.badge-accent { background: var(--accent); color: var(--black); }
.badge-red    { background: var(--red-bg); color: var(--red); border: 1px solid rgba(214,48,48,0.2); }
.badge-green  { background: #f0fce8; color: #2d6a00; border: 1px solid #b6e87a; }
.badge-gray   { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

/* ─── Live / Status ──────────────────────────── */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: pulse 1.3s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, #f0ebe2 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r);
}

/* ─── Tables ─────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
/* ── Base header — small, uppercase, light ── */
.data-table th {
  text-align: left;
  padding: 9px 14px;
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  background: var(--bg);
  border-bottom: 1.5px solid var(--border);
  white-space: nowrap;
}
.data-table th:not(:first-child) { text-align: right; }
/* ── Base cell — baseline only; column classes override ── */
.data-table td {
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-family: var(--font-mono);
  vertical-align: middle;
  height: 52px;
  padding: 0 14px;
}
.data-table td:not(:first-child) { text-align: right; }
.data-table tbody tr:last-child td { border-bottom: none; }

/* ── Game-log specific column classes ── */
/* DATE — secondary info */
.col-date {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #555 !important;
  text-align: left !important;
  font-family: var(--font-mono) !important;
}
/* OPPONENT — primary context */
.col-opp {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0f0f0f !important;
  text-align: left !important;
  font-family: var(--font-body) !important;
}
/* KEY STAT — make it impossible to miss */
.col-key {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #333 !important; /* default; overridden inline with hit/miss color */
  font-family: var(--font-display) !important;
  letter-spacing: 0.02em !important;
}
/* OTHER STATS */
.col-stat {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #444 !important;
}
/* MIN — tertiary context */
.col-min {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #888 !important;
}
/* Header overrides for game-log columns */
.game-log-table th.col-date,
.game-log-table th.col-opp,
.game-log-table th.col-key,
.game-log-table th.col-stat,
.game-log-table th.col-min { color: #888; }

/* Legacy hit/miss classes (used elsewhere) */
.td-hit  { color: #2d6a00 !important; }
.td-miss { color: var(--red) !important; }
.td-muted { color: var(--muted2) !important; }
.td-date { color: var(--black) !important; font-weight: 500; }
.td-opp  { color: var(--black) !important; font-weight: 500; text-align: left !important; }
.td-key-stat { font-size: 1.1rem !important; font-weight: 700 !important; }
.th-key-stat { color: var(--black) !important; }
/* Hit rate badge — prominent pill */
.hit-rate-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.hit-rate-over  { background: #2d6a00; color: #fff; }
.hit-rate-under { background: var(--red); color: #fff; }

/* ─── Usage Meter ────────────────────────────── */
.usage-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 24px;
}
.usage-meter-dots { display: flex; gap: 5px; }
.usage-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  transition: background 0.2s;
}
.usage-dot.used  { background: var(--accent-dark); }
.usage-dot.empty { background: var(--border); }
.usage-text { font-size: 0.8rem; color: var(--muted); flex: 1; }
.usage-text strong { color: var(--black); }

/* ─── Game Cards (light editorial) ──────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.game-card:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.game-card.live { border-top: 3px solid var(--red); }

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.game-card-top .game-status-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}
.game-card.live .game-card-top .game-status-label { color: var(--red); }

/* Play-in / elimination status text — must be readable on cream #f5f0e8 */
.status-eliminated {
  color: #8B0000 !important;
  font-weight: 600 !important;
}
.status-advances {
  color: #1a5c1a !important;
  font-weight: 600 !important;
}
.status-playin {
  color: #7a4f00 !important;
  font-weight: 600 !important;
}

.countdown {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.countdown.soon    { color: var(--black); }
.countdown.urgent  {
  color: var(--accent-dark);
  animation: urgentPulse 1s infinite;
}
@keyframes urgentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.countdown.starting { color: var(--red); font-weight: 700; }

.game-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 10px;
}
.game-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.team-logo-wrap {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-abbr {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1;
}
.team-record {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted2);
}
.game-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.game-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--black);
  white-space: nowrap;
  line-height: 1;
}
.game-score.live-score { color: var(--red); }
.game-vs {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted2);
  letter-spacing: 0.05em;
}
.game-period {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-card-cta {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: var(--black);
  color: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  font-family: var(--font-body);
}
.game-card-cta:hover { background: #2a2a2a; }
.game-card-cta .cta-arrow { margin-left: 6px; transition: transform 0.15s; }
.game-card:hover .game-card-cta .cta-arrow { transform: translateX(3px); }

/* ─── Playoff game card ──────────────────────── */
.game-card.playoff-game {
  border-top: 3px solid #e8a000;
}
.game-card.playoff-game .game-card-top {
  background: #fdf9f0;
}

/* ─── Game situation flags ───────────────────── */
.game-situation-flag {
  margin: 0 12px 10px;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  line-height: 1.4;
  border-radius: 4px;
  border-left: 3px solid;
}
.game-situation-flag.flag-closeout {
  background: rgba(214, 48, 48, 0.06);
  border-color: var(--red);
  color: #8b1010;
}
.game-situation-flag.flag-elimination {
  background: rgba(214, 48, 48, 0.08);
  border-color: var(--red);
  color: #8b1010;
}
.game-situation-flag.flag-game1 {
  background: rgba(200, 245, 66, 0.08);
  border-color: var(--accent-dark);
  color: #5a6e00;
}


/* ─── ROSTER PANEL ───────────────────────────── */
.roster-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  animation: overlayIn 0.2s ease;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.roster-panel {
  width: min(100%, 900px);
  height: 100%;
  background: var(--surface);
  overflow-y: auto;
  animation: panelIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
@keyframes panelIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }

.roster-panel-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: 2px solid var(--black);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.roster-matchup-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}
.roster-team-logo {
  width: 40px; height: 40px;
  object-fit: contain;
}
.roster-matchup-vs {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--muted2);
}
.roster-matchup-names {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.roster-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--black);
  transition: background 0.15s;
}
.roster-close-btn:hover { background: var(--border); }

.roster-teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  padding: 20px;
}
.roster-team-col {
  padding: 0 12px;
}
.roster-team-col:first-child {
  border-right: 1.5px solid var(--border);
  padding-right: 24px;
}
.roster-team-col:last-child { padding-left: 24px; }
.roster-team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.roster-team-name img { width: 28px; height: 28px; object-fit: contain; }

.players-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.player-prop-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.player-prop-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow);
}
.player-headshot {
  width: 48px; height: 48px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.player-headshot-fallback {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  width: 100%;
  height: 100%;
  background: var(--black);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
.player-prop-info { flex: 1; min-width: 0; }
.player-prop-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-prop-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted2);
  margin-top: 2px;
}
.player-prop-buttons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.prop-pill {
  padding: 4px 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all 0.1s;
  white-space: nowrap;
}
.prop-pill:hover {
  background: var(--black);
  color: var(--surface);
  border-color: var(--black);
}
.prop-pill-pts:hover  { background: #2d6a00; border-color: #2d6a00; color: white; }
.prop-pill-reb:hover  { background: #1a56db; border-color: #1a56db; color: white; }
.prop-pill-ast:hover  { background: #9f1239; border-color: #9f1239; color: white; }

.roster-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ─── Analyzer ───────────────────────────────── */
.analyzer-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}
.analyzer-controls { position: sticky; top: calc(var(--nav-h) + 24px); }

.prop-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.prop-type-btn {
  padding: 9px 4px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.prop-type-btn:hover { border-color: var(--black); color: var(--black); }
.prop-type-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--surface);
}

.search-wrap { position: relative; }
.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1.5px solid var(--black);
  border-radius: var(--r);
  overflow: hidden;
  z-index: 50;
  box-shadow: var(--shadow2);
  max-height: 280px;
  overflow-y: auto;
}
.search-result-item {
  padding: 10px 13px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg); }
.search-result-name { font-weight: 600; font-size: 0.875rem; }
.search-result-meta { font-size: 0.72rem; color: var(--muted2); margin-top: 2px; font-family: var(--font-mono); }

/* ─── Stats Preview ──────────────────────────── */
.stats-preview {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.stats-preview-header {
  padding: 14px 18px;
  background: var(--bg);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.player-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}
.player-name-big {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--black);
}
.player-team-pos { font-size: 0.72rem; color: var(--muted2); font-family: var(--font-mono); }
.stats-averages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.stats-avg-block { padding: 14px 18px; }
.stats-avg-block:first-child { border-right: 1px solid var(--border); }
.stats-avg-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.stats-avg-row { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-chip { text-align: center; min-width: 38px; }
.stat-chip-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f0f0f;
  line-height: 1;
  letter-spacing: 0.01em;
}
/* PTS always electric green */
.stat-chip-val.stat-pts { color: var(--accent-dark); }
/* Selected prop highlighted — electric green */
.stat-chip-val.highlighted { color: var(--accent-dark); }
/* Both classes (pts + highlighted) → stronger green */
.stat-chip-val.stat-pts.highlighted { color: #8ab01a; }
.stat-chip-key {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

/* ─── THE DEBATE BLOCK — The Contrast Moment ─── */
.debate-loading {
  background: var(--debate-bg);
  border-radius: var(--r2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 60px 24px;
  text-align: center;
}
.debate-loading-ring {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.debate-loading-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.debate-loading-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  max-width: 280px;
  line-height: 1.5;
}

/* The main debate output */
.debate-block {
  background: var(--debate-bg);
  border-radius: var(--r2);
  overflow: hidden;
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.debate-prop-label {
  padding: 20px 28px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.debate-prop-label .player-headline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--debate-text);
  line-height: 1;
  margin-bottom: 4px;
}
.debate-prop-label .prop-detail {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--debate-muted);
  letter-spacing: 0.04em;
}
.debate-prop-label .prop-detail strong {
  color: var(--debate-for);
}

.debate-arguments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.debate-arg {
  padding: 22px 28px;
}
.debate-arg.for-arg { border-right: 1px solid rgba(255,255,255,0.08); }

.debate-arg-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.debate-arg.for-arg .debate-arg-label { color: var(--debate-for); }
.debate-arg.against-arg .debate-arg-label { color: rgba(255,255,255,0.5); }
.debate-arg-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: currentColor;
}

.debate-arg-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0.85em;
}
.debate-arg-text:last-child { margin-bottom: 0; }
.debate-arg.for-arg .debate-arg-text { color: rgba(255,255,255,0.9); }
.debate-arg.against-arg .debate-arg-text { color: rgba(255,255,255,0.65); }

.debate-verdict {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 28px;
}
/* Removed .verdict-top-row — new layout is vertical */
.recommendation-badge {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: var(--r);
}
/* Larger badge in the verdict section */
.verdict-rec-badge {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  padding: 8px 22px;
  display: inline-block;
  margin-bottom: 12px;
}
.rec-strong-over  { background: rgba(200,245,66,0.2);  color: var(--accent); border: 1px solid rgba(200,245,66,0.4); }
.rec-lean-over    { background: rgba(200,245,66,0.1);  color: #c8f542aa; border: 1px solid rgba(200,245,66,0.2); }
.rec-pass         { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }
.rec-lean-under   { background: rgba(214,48,48,0.1);   color: #ff8080; border: 1px solid rgba(214,48,48,0.2); }
.rec-strong-under { background: rgba(214,48,48,0.2);   color: var(--red); border: 1px solid rgba(214,48,48,0.4); }

/* Confidence reason line */
.verdict-confidence-reason {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 4px;
}

.confidence-bar-bg {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.confidence-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--debate-for);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.verdict-sentence {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--debate-text);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 4px;
}

/* ─── Landing Page ───────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.hero-left {}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--black);
  color: var(--accent);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: var(--black);
}
.hero-headline .accent-line { color: var(--accent-dark); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: 0.78rem; color: var(--muted2); margin-top: 14px; }

/* Hero debate preview (right side) */
.hero-debate-preview {
  background: var(--debate-bg);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.preview-header {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.preview-player {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 2px;
}
.preview-prop {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.preview-prop strong { color: var(--accent); }
.preview-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.preview-col { padding: 16px 22px; }
.preview-col:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.preview-col-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.preview-col.for .preview-col-label { color: var(--accent); }
.preview-col.against .preview-col-label { color: rgba(255,255,255,0.35); }
.preview-para {
  font-size: 0.8rem;
  line-height: 1.65;
}
.preview-col.for .preview-para { color: rgba(255,255,255,0.8); }
.preview-col.against .preview-para { color: rgba(255,255,255,0.45); }
.preview-verdict {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.preview-verdict-badge {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.preview-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preview-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.preview-pct {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* Steps / Features */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.step-card {
  padding: 28px 24px;
  background: var(--surface);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title { font-weight: 700; margin-bottom: 6px; font-size: 0.9375rem; }
.step-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-top: 40px;
}
.feature-card {
  padding: 24px;
  background: var(--surface);
  transition: background 0.15s;
}
.feature-card:hover { background: var(--surface2); }
.feature-icon { font-size: 1.3rem; margin-bottom: 10px; }
.feature-title { font-weight: 700; margin-bottom: 6px; font-size: 0.9375rem; }
.feature-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ─── Pricing ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 760px;
  margin: 44px auto 0;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.pricing-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
}
.pricing-card.pro { background: var(--black); }
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pricing-card.pro .pricing-tier { color: var(--accent); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.pro .pricing-price { color: white; }
.pricing-price span { font-size: 1.1rem; color: var(--muted); }
.pricing-card.pro .pricing-price span { color: rgba(255,255,255,0.4); }
.pricing-period { font-size: 0.8rem; color: var(--muted2); margin-bottom: 24px; }
.pricing-card.pro .pricing-period { color: rgba(255,255,255,0.35); }
.pricing-features { margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
.pricing-card.pro .pricing-feature { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature-icon { font-weight: 700; width: 16px; flex-shrink: 0; color: var(--muted2); }
.pricing-card.pro .pricing-feature-icon { color: var(--accent); }
.pricing-feature.unavail { color: var(--muted2); }
.pricing-card.pro .pricing-feature.unavail { color: rgba(255,255,255,0.2); }

/* ─── Auth Pages ─────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  padding: 40px;
  box-shadow: var(--shadow2);
}
.auth-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-align: center;
  color: var(--black);
}
.auth-tagline {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted2);
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.auth-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.auth-switch { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--muted); }
.auth-switch a { color: var(--black); font-weight: 600; text-decoration: underline; }
.auth-divider { height: 1px; background: var(--border); margin: 20px 0; }
.auth-error {
  background: var(--red-bg);
  border: 1px solid rgba(214,48,48,0.2);
  border-radius: var(--r);
  padding: 10px 13px;
  font-size: 0.84rem;
  color: var(--red);
  margin-bottom: 14px;
}
.auth-success {
  background: var(--accent-bg);
  border: 1px solid rgba(200,245,66,0.3);
  border-radius: var(--r);
  padding: 10px 13px;
  font-size: 0.84rem;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ─── Dashboard ──────────────────────────────── */
.dashboard-header {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--black);
}
.dashboard-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted2);
  margin-top: 4px;
}
.section-gap { margin-top: 44px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}

/* ─── Player Page ────────────────────────────── */
.player-season-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-bottom: 32px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.season-stat-card {
  background: var(--surface);
  padding: 16px;
  text-align: center;
}
.season-stat-val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.season-stat-key {
  font-size: 0.65rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.player-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ─── Misc ───────────────────────────────────── */
.divider { height: 1.5px; background: var(--border); margin: 32px 0; }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

.empty-state { text-align: center; padding: 48px 20px; color: var(--muted2); }
.empty-state-icon { font-size: 2rem; margin-bottom: 12px; opacity: 0.3; }
.empty-state-text { font-size: 0.875rem; }
.error-banner {
  background: var(--red-bg);
  border: 1px solid rgba(214,48,48,0.2);
  border-radius: var(--r);
  padding: 12px 15px;
  font-size: 0.84rem;
  color: var(--red);
}
.success-banner {
  background: #f0fce8;
  border: 1px solid #b6e87a;
  border-radius: var(--r);
  padding: 12px 15px;
  font-size: 0.84rem;
  color: #2d6a00;
  margin-bottom: 20px;
}

/* ─── Footer ─────────────────────────────────── */
footer {
  border-top: 2px solid var(--black);
  padding: 24px 0;
  margin-top: 80px;
  background: var(--surface);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--black);
}
.footer-tagline { font-size: 0.75rem; color: var(--muted2); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-disclaimer {
  width: 100%;
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 12px;
  font-size: 0.7rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.03em;
}


/* ─── Landing hero player spotlight ─────────── */
.hero-players-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player-spotlight {
  transition: opacity 0.5s ease;
}

.spotlight-card {
  position: relative;
  background: var(--black);
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.spotlight-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.6);
}

.spotlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}

.spotlight-photo-wrap {
  position: absolute;
  inset: 0;
}

.spotlight-info {
  position: relative;
  z-index: 2;
  padding: 20px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92) 30%);
}

.spotlight-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 2px;
}

.spotlight-team {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.spotlight-stat-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.spotlight-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.spotlight-stat-unit {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.spotlight-context {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 340px;
}

.spotlight-verdict {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  border: 1.5px solid var(--accent);
  padding: 5px 14px;
  border-radius: 5px;
}

/* Nav dots */
.spotlight-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 4px 0;
}
.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.spotlight-dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .analyzer-layout { grid-template-columns: 1fr; }
  .analyzer-controls { position: static; }
  .debate-arguments { grid-template-columns: 1fr; }
  .debate-arg.for-arg { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 48px 0 40px; }
  .hero-debate-preview { display: none; }
  .hero-players-section { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .roster-teams-grid { grid-template-columns: 1fr; }
  .roster-team-col:first-child { border-right: none; border-bottom: 1.5px solid var(--border); padding-right: 12px; padding-bottom: 20px; }
  .roster-team-col:last-child { padding-left: 12px; padding-top: 20px; }
  .player-season-stats { grid-template-columns: repeat(3, 1fr); }
  .stats-averages { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .container, .container-sm { padding: 0 18px; }
  .auth-card { padding: 28px 22px; }
  .player-season-stats { grid-template-columns: repeat(2, 1fr); }
  .roster-panel { width: 100%; max-height: 100vh; overflow-y: auto; }
  .player-prop-buttons { flex-direction: column; }
  .stats-averages { grid-template-columns: 1fr; }
  .stats-avg-block:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-avg-row { gap: 8px; }
  .stat-chip-val { font-size: 1.3rem; }
  .prop-type-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .debate-prop-label { padding: 16px 18px 12px; }
  .debate-arg { padding: 16px 18px; }
  .debate-arg-text { font-size: 0.875rem; line-height: 1.65; }
  .debate-verdict { padding: 16px 18px; }
  .verdict-rec-badge { font-size: 1.3rem; }
  .confidence-wrap { width: 100%; }
  .demo-columns { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-disclaimer { text-align: left !important; }
}
