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

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

:root {
  --bg:        #080E1A;
  --bg-card:   #0D1929;
  --bg-hover:  #122236;
  --border:    #1C2E42;
  --gold:      #40E040;  /* brand lime green — "FANTASY FOOTBALL" from logo */
  --gold-dim:  #28A828;
  --green:     #40E040;  /* wins = brand color */
  --red:       #ef4444;
  --blue:      #60a5fa;
  --purple:    #a78bfa;
  --text:      #E8EDF5;
  --text-dim:  #8EA4BC;
  --text-muted:#7A94B0;
  --shadow:    0 4px 24px rgba(0,0,0,0.6);
  --radius:    12px;
  --radius-sm: 6px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────────── */
nav.main-nav {
  background: rgba(8,14,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
  display: block;
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }
.nav-links a.active { color: var(--gold); background: rgba(64,224,64,0.08); }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 2rem 1.5rem; }
@media (min-width: 2200px) { .container { max-width: 1700px; } }
.section { margin-bottom: 2.5rem; }

.page-header {
  padding: 2.5rem 0 2rem;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.page-header p { color: var(--text-dim); margin-top: 0.5rem; font-size: 0.95rem; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0A1628 0%, #0D2040 50%, #080E1A 100%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}
.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.hero .hero-season {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card-sm { padding: 1rem; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

/* ── GRIDS ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
@media (max-width: 900px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

/* Ring count — 10 cols desktop → 5 cols mobile (always 2 even rows) */
.ring-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: .5rem;
}
@media (max-width: 720px) {
  .ring-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Analytics — fluid auto-fill, ~5–6 per row desktop, 2 mobile */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .6rem;
}

/* ── TABLES ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th {
  background: rgba(64,224,64,0.05);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.7rem 1rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}
thead th:hover { color: var(--text-dim); }
thead th.sorted { color: var(--gold); }
thead th.sorted::after { content: ' ↓'; }
thead th.sorted.asc::after { content: ' ↑'; }
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg-hover); }
td { padding: 0.8rem 1rem; vertical-align: middle; }

/* ── BADGES ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-gold   { background: rgba(64,224,64,0.12); color: var(--gold); }
.badge-green  { background: rgba(64,224,64,0.12);  color: var(--green); }
.badge-red    { background: rgba(239,68,68,0.12);   color: var(--red); }
.badge-blue   { background: rgba(96,165,250,0.12);  color: var(--blue); }
.badge-purple { background: rgba(167,139,250,0.12); color: var(--purple); }
.badge-gray   { background: rgba(148,163,184,0.1);  color: var(--text-dim); }

/* ── STATS ───────────────────────────────────────────── */
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-num.lg { font-size: 3.5rem; }
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── RECORD ──────────────────────────────────────────── */
.record { font-weight: 600; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; }
.record .w { color: var(--green); }
.record .sep { color: var(--text-muted); margin: 0 1px; }
.record .l { color: var(--text-dim); }

/* ── CHAMPION BANNER ─────────────────────────────────── */
.champion-banner {
  background: linear-gradient(135deg, #091A0C, #0D2414, #091A0C);
  border: 1px solid rgba(64,224,64,0.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.champion-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(64,224,64,0.07), transparent 65%);
  pointer-events: none;
}
.champion-trophy { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.champion-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 0.25rem;
}
.champion-team {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.champion-owner { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.3rem; }
.champion-record {
  margin-top: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dim);
}

/* ── PODIUM ──────────────────────────────────────────── */
.podium-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0 0;
}
.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}
.podium-item-name {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 120px;
}
.podium-item-team {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}
.podium-bar {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
}
.podium-bar.p1 { height: 160px; border-color: var(--gold); background: linear-gradient(to bottom, rgba(64,224,64,0.08), var(--bg-card)); }
.podium-bar.p2 { height: 120px; border-color: #94a3b8; }
.podium-bar.p3 { height: 90px; border-color: #cd7f32; }
.podium-place {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.p1 .podium-place { color: var(--gold); }
.p2 .podium-place { color: #94a3b8; }
.p3 .podium-place { color: #cd7f32; }

/* ── COUNTDOWN ───────────────────────────────────────── */
.countdown {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.countdown-unit { text-align: center; min-width: 60px; }
.countdown-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── TEAM ROW ────────────────────────────────────────── */
.team-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.team-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-hover);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name-main { font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.team-name-sub { font-size: 0.75rem; color: var(--text-dim); }

/* ── WIN/LOSS BAR ────────────────────────────────────── */
.wl-bar { display: flex; height: 6px; border-radius: 3px; overflow: hidden; gap: 1px; }
.wl-bar .w-seg { background: var(--green); }
.wl-bar .l-seg { background: var(--border); }

/* ── PROGRESS ────────────────────────────────────────── */
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.progress-gold  { background: var(--gold); }
.progress-green { background: var(--green); }
.progress-blue  { background: var(--blue); }

/* ── MATCHUP CARD ────────────────────────────────────── */
.matchup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color 0.15s;
}
.matchup-card:hover { border-color: rgba(64,224,64,0.25); }
.matchup-card.playoff-game { border-color: rgba(64,224,64,0.2); }

.matchup-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
}
.matchup-team-info { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.matchup-team-name { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.matchup-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.matchup-score.win  { color: var(--gold); }
.matchup-score.lose { color: var(--text-muted); }
.matchup-divider { border: none; border-top: 1px solid var(--border); margin: 0.25rem 0; }
.matchup-label {
  font-size: 0.68rem;
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ── WEEK SELECTOR ───────────────────────────────────── */
.week-selector { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.week-btn {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}
.week-btn:hover { border-color: rgba(64,224,64,0.4); color: var(--text); }
.week-btn.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }
.week-btn.playoff-week { border-color: rgba(64,224,64,0.25); color: var(--gold-dim); }
.week-btn.playoff-week.active { background: var(--gold); color: #000; }

/* ── TRANSACTION ITEM ────────────────────────────────── */
.txn-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.txn-item:last-child { border-bottom: none; }
.txn-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.txn-icon.trade  { background: rgba(96,165,250,0.12); }
.txn-icon.add    { background: rgba(64,224,64,0.12); }
.txn-icon.drop   { background: rgba(239,68,68,0.12); }
.txn-icon.waiver { background: rgba(167,139,250,0.12); }
.txn-body { flex: 1; min-width: 0; }
.txn-main { font-size: 0.875rem; line-height: 1.4; }
.txn-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── DRAFT BOARD ─────────────────────────────────────── */
.draft-board-wrap { overflow-x: auto; }
.draft-board { border-collapse: collapse; white-space: nowrap; }
.draft-board th {
  background: var(--bg-card);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
  min-width: 130px;
  max-width: 130px;
}
.draft-board th.round-col {
  min-width: 50px;
  max-width: 50px;
  color: var(--gold);
}
.draft-board td {
  border: 1px solid var(--border);
  padding: 0.3rem;
  vertical-align: top;
  min-width: 130px;
  max-width: 130px;
}
.draft-board td.round-num {
  background: rgba(64,224,64,0.04);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  min-width: 50px;
  max-width: 50px;
}
.pick-card {
  background: var(--bg-hover);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  height: 62px;
  overflow: hidden;
}
.pick-card:hover { background: #1e3448; }
.pick-num { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.pick-player { font-weight: 600; font-size: 0.8rem; line-height: 1.2; color: var(--text); }
.pick-pos { font-size: 0.68rem; margin-top: 0.2rem; font-weight: 600; }
.pos-qb  { color: #f97316; }
.pos-rb  { color: var(--green); }
.pos-wr  { color: #60a5fa; }
.pos-te  { color: #a78bfa; }
.pos-k   { color: #94a3b8; }
.pos-def { color: #f43f5e; }
.pos-dl  { color: #f43f5e; }
.pos-lb  { color: #f43f5e; }
.pos-db  { color: #f43f5e; }

/* ── CHAMPIONS TABLE ─────────────────────────────────── */
.champions-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
}
.trophy-1 { color: var(--gold); }
.trophy-2 { color: #94a3b8; }
.trophy-3 { color: #cd7f32; }

/* ── LOADING ─────────────────────────────────────────── */
.loading {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 4rem 2rem; color: var(--text-dim);
}
.spinner {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.error-msg {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--red);
  font-size: 0.875rem;
}

/* ── SEASON TABS ─────────────────────────────────────── */
.season-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.season-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}
.season-tab:hover { border-color: rgba(64,224,64,0.4); color: var(--text); }
.season-tab.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── LUCK INDEX ──────────────────────────────────────── */
.luck-bar-wrap { display: flex; align-items: center; gap: 0.75rem; }
.luck-indicator {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.luck-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}
.luck-bar::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  width: 1px;
  height: 12px;
  background: var(--text-muted);
  opacity: 0.4;
}
.luck-fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 4px;
}
.luck-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; min-width: 45px; text-align: right; }

/* ── RULES PAGE ──────────────────────────────────────── */
.rules-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.rules-section p, .rules-section li { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; }
.rules-section ul { padding-left: 1.25rem; }
.rules-section li { margin-bottom: 0.35rem; }
.rules-highlight {
  background: rgba(64,224,64,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}
.rules-highlight strong { color: var(--gold); }

/* ── TEAM PROFILE ────────────────────────────────────── */
.team-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) { .team-selector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .team-selector-grid { grid-template-columns: repeat(2, 1fr); } }

.team-select-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
}
.team-select-btn:hover { border-color: rgba(64,224,64,0.3); color: var(--text); }
.team-select-btn.active { border-color: var(--gold); background: rgba(64,224,64,0.08); color: var(--gold); }
.team-select-btn .tsb-emoji { font-size: 1.3rem; display: block; margin-bottom: 0.25rem; }
.team-select-btn .tsb-name { font-size: 0.7rem; font-weight: 600; line-height: 1.2; }

/* ── UTIL ────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-dim    { color: var(--text-dim); }
.text-muted  { color: var(--text-muted); }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.font-cond   { font-family: 'Barlow Condensed', sans-serif; }
.font-bold   { font-weight: 600; }
.d-flex      { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  nav.main-nav { padding: 0 1rem; }
  .podium-wrap { gap: 0.4rem; }
  .podium-item { min-width: 90px; }
  .countdown-num { font-size: 2.2rem; }
}
