/* FindMySports — shared site styles (marketing + functional pages) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #004B23;
  --green-light: #00612F;
  --cream: #F5EEDA;
  --cream-dim: rgba(245,238,218,0.7);
  --cream-dimmer: rgba(245,238,218,0.5);
  --red: #A50021;
  --red-hover: #C8003A;
  --gold: #C8A86B;
  --surface: #0D5C30;
  --surface-2: #135A33;
  --border: rgba(245,238,218,0.15);
  --live: #E53935;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Text', Georgia, serif;
  background: var(--green);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Bitter', serif; font-weight: 700; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV (shared) */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,75,35,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--cream);
}
.nav-brand img { width: 40px; height: 40px; border-radius: 8px; }
.nav-brand span { font-family: 'Bitter', serif; font-size: 1.15rem; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--cream-dim); font-size: 0.95rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); text-decoration: none; }
.nav-links a.active { color: var(--cream); }
.nav-cta {
  background: var(--red); color: var(--cream) !important;
  padding: 8px 20px; border-radius: 8px; font-family: 'Bitter', serif;
  font-size: 0.85rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-hover); text-decoration: none !important; }

/* PAGE HEAD */
.page-head { padding: 100px 0 16px; }
.page-head h1 {
  font-size: 2rem; line-height: 1.15; margin-bottom: 8px;
}
.page-head .lead {
  color: var(--cream-dim); font-size: 1.02rem;
  max-width: 760px;
}

/* PAGE HEAD (compact: reserved for games/league/team pages) */
.page-head.compact { padding: 82px 0 8px; }
.page-head.compact h1 { font-size: 1.35rem; margin-bottom: 0; }
.page-head.compact .lead {
  font-size: 0.9rem; margin-top: 6px; color: var(--cream-dimmer);
  max-width: 820px;
}

/* TOOLBAR (single-line filter row) */
.toolbar {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.toolbar-search { flex: 1 1 280px; min-width: 240px; }
.toolbar-search .team-search { margin-bottom: 0; }
.toolbar-search input { padding: 9px 14px; font-size: 0.95rem; }
.toolbar-group {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.toolbar-group-single { flex: 1 1 auto; }
.toolbar-group #provider-filter { min-width: 220px; }
.toolbar-group-single #provider-filter { width: 100%; }

/* Tighter summary chip in toolbar */
.toolbar .provider-summary { padding: 7px 12px; }
.toolbar .provider-summary-empty,
.toolbar .provider-summary-chip { font-size: 0.88rem; }
.toolbar .provider-toggle { padding: 5px 12px; font-size: 0.78rem; }

/* DROPDOWN WIDGET */
.dropdown { position: relative; }
.dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 8px;
  font-family: 'Bitter', serif;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.dropdown-btn:hover { border-color: var(--gold); }
.dropdown.dd-open .dropdown-btn { border-color: var(--gold); }
.dropdown-icon { font-size: 0.95em; line-height: 1; }
.dropdown-current { color: var(--cream); }
.dropdown-caret { color: var(--cream-dim); margin-left: 2px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 100%;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 4px;
  z-index: 80;
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
  max-height: 70vh; overflow: auto;
}
.dropdown-item {
  display: block; width: 100%; text-align: left;
  padding: 8px 12px;
  background: transparent; border: none;
  color: var(--cream);
  font-family: 'Bitter', serif; font-size: 0.88rem;
  border-radius: 6px; cursor: pointer;
  white-space: nowrap;
}
.dropdown-item:hover { background: var(--surface-2); }
.dropdown-item.active { color: var(--gold); background: rgba(200,168,107,0.1); }

/* Multi-select checkbox style */
.dropdown-item.multi,
.dropdown-item.all {
  display: flex; align-items: center; gap: 10px;
}
.dropdown-item .check {
  width: 15px; height: 15px; flex-shrink: 0;
  border: 1.5px solid var(--cream-dimmer);
  border-radius: 3px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.dropdown-item .check.radio { border-radius: 50%; }
.dropdown-item.active .check {
  background: var(--gold); border-color: var(--gold);
}
.dropdown-item.multi.active .check::after {
  content: ""; position: absolute;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.dropdown-item.all.active .check.radio::after {
  content: ""; position: absolute;
  left: 3px; top: 3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.dropdown-divider {
  height: 1px; background: var(--border);
  margin: 4px 2px;
}

/* Compact filters section (smaller padding, no bg on mobile) */
.filters.compact { padding: 10px 0; margin-bottom: 16px; }

/* TABS / FILTERS */
.filters {
  padding: 12px 0 16px;
  background: rgba(0, 50, 22, 0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  position: sticky;
  top: 64px;
  z-index: 50;
}
.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-label {
  display: block;
  font-family: 'Bitter', serif;
  font-size: 0.7rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.chip, .chip-row button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: 'Bitter', serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  white-space: nowrap;
}
.chip:hover { border-color: var(--cream-dim); color: var(--cream); }
.chip.active {
  background: var(--red); border-color: var(--red);
  color: var(--cream);
}
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; }

/* PROVIDER PICKER (collapsible) */
.provider-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.provider-summary:hover { border-color: var(--gold); }
.provider-summary-empty { color: var(--cream-dim); font-size: 0.95rem; }
.provider-summary-chip { color: var(--cream); font-size: 0.95rem; }
.provider-summary-chip strong { color: var(--gold); font-family: 'Bitter', serif; margin-right: 4px; }
.provider-toggle {
  background: var(--red); color: var(--cream);
  border: none; padding: 6px 14px; border-radius: 6px;
  font-family: 'Bitter', serif; font-size: 0.82rem; cursor: pointer;
  white-space: nowrap;
}
.provider-toggle:hover { background: var(--red-hover); }

.provider-picker-open {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
}
.provider-picker-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.provider-picker-title {
  font-family: 'Bitter', serif; color: var(--gold);
  font-size: 0.95rem;
}
.btn-done {
  background: var(--red); color: var(--cream);
  border: none; padding: 8px 18px; border-radius: 6px;
  font-family: 'Bitter', serif; font-size: 0.88rem; cursor: pointer;
}
.btn-done:hover { background: var(--red-hover); }
.provider-group { margin-bottom: 14px; }
.provider-group:last-of-type { margin-bottom: 0; }
.provider-picker-actions {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: right;
}
.btn-clear {
  background: transparent; color: var(--cream-dim);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 6px;
  font-family: 'Bitter', serif; font-size: 0.8rem; cursor: pointer;
}
.btn-clear:hover { color: var(--cream); border-color: var(--cream-dim); }

/* TEAM SEARCH */
.team-search { position: relative; margin-bottom: 14px; }
.team-search input {
  width: 100%;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--cream);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  transition: border-color 0.15s;
}
.team-search input::placeholder { color: var(--cream-dimmer); }
.team-search input:focus {
  outline: none;
  border-color: var(--gold);
}
.team-search-results {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  z-index: 60;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.team-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.team-search-item:last-child { border-bottom: none; }
.team-search-item:hover { background: var(--surface-2); text-decoration: none; }
.team-search-item img { width: 24px; height: 24px; object-fit: contain; }
.tsi-name { flex: 1; font-family: 'Bitter', serif; font-size: 0.95rem; }
.tsi-league {
  font-size: 0.75rem; color: var(--gold);
  font-family: 'Bitter', serif; letter-spacing: 1px;
}

/* ACCOUNT NAV */
.nav-account { display: flex; align-items: center; }
.nav-signin {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 8px;
  font-family: 'Bitter', serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
.nav-signin:hover { border-color: var(--gold); }
.nav-user { position: relative; }
.nav-user-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Bitter', serif;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-user-btn:hover { border-color: var(--gold); }
.nav-user-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.nav-user-email {
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-user-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-user-status { margin-bottom: 12px; color: var(--cream-dim); font-size: 0.85rem; line-height: 1.4; }
.nav-user-status strong { display: block; color: var(--gold); font-family: 'Bitter', serif; margin-bottom: 4px; }
.nav-user-signout {
  width: 100%;
  background: transparent; color: var(--cream);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 6px;
  font-family: 'Bitter', serif; font-size: 0.85rem;
  cursor: pointer;
}
.nav-user-signout:hover { border-color: var(--cream); }

/* AUTH MODAL */
.auth-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.auth-modal-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.auth-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: transparent; border: none;
  color: var(--cream-dim);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer; padding: 4px 8px;
}
.auth-modal-close:hover { color: var(--cream); }
.auth-modal-panel h2 { font-size: 1.4rem; margin-bottom: 6px; color: var(--cream); }
.auth-subtitle { color: var(--cream-dim); font-size: 0.95rem; margin-bottom: 20px; }
.auth-oauth { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.auth-oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--cream); color: #222;
  border: none; padding: 11px 16px;
  border-radius: 10px;
  font-family: 'Bitter', serif; font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
}
.auth-oauth-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.auth-oauth-btn:active { transform: translateY(1px); }
.auth-oauth-btn.apple { background: #000; color: #fff; }
.auth-oauth-btn .oauth-ico {
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.auth-oauth-btn.google .oauth-ico { color: #4285f4; }
.auth-divider {
  position: relative; text-align: center; margin: 14px 0;
  color: var(--cream-dimmer); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: ""; position: absolute; top: 50%;
  width: calc(50% - 40px); height: 1px; background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-email label { display: block; margin-bottom: 10px; }
.auth-email label span {
  display: block; color: var(--cream-dim);
  font-family: 'Bitter', serif; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 6px;
}
.auth-email input {
  width: 100%; padding: 10px 14px;
  background: var(--green); border: 1px solid var(--border);
  border-radius: 8px; color: var(--cream);
  font-family: 'Crimson Text', serif; font-size: 1rem;
}
.auth-email input:focus { outline: none; border-color: var(--gold); }
.auth-email .btn-primary {
  width: 100%; padding: 11px; margin-top: 10px;
  border-radius: 10px; border: none;
  background: var(--red); color: var(--cream);
  font-family: 'Bitter', serif; font-size: 0.95rem; cursor: pointer;
}
.auth-email .btn-primary:hover { background: var(--red-hover); }
.auth-hint { color: var(--cream-dimmer); font-size: 0.8rem; margin-top: 8px; text-align: center; }
.auth-status { min-height: 20px; margin-top: 14px; font-size: 0.9rem; text-align: center; }
.auth-status.error { color: #ff8a8a; }
.auth-status.success { color: var(--gold); }

/* PROVIDERS NUDGE (prominent empty state) */
.providers-nudge {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(200,168,107,0.18), rgba(165,0,33,0.15));
  border: 1px solid var(--gold);
  border-radius: 14px;
}
.providers-nudge-body {
  display: flex; align-items: center; gap: 16px;
  flex: 1 1 300px;
}
.providers-nudge-icon {
  font-size: 2rem; line-height: 1;
}
.providers-nudge strong {
  display: block; font-family: 'Bitter', serif;
  font-size: 1.1rem; color: var(--cream);
  margin-bottom: 4px;
}
.providers-nudge p {
  color: var(--cream-dim); font-size: 0.95rem;
  margin: 0;
}
.providers-nudge .btn-primary {
  padding: 12px 22px; font-size: 0.95rem;
  white-space: nowrap;
}

/* Soft empty state */
.state.soft { padding: 30px 20px 10px; }

/* LIVE STRIP */
.live-strip {
  margin-bottom: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(229,57,53,0.08), rgba(229,57,53,0.02));
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 16px;
}
.live-strip-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.live-strip-head h2 {
  font-size: 1.2rem; color: var(--cream);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(229,57,53,0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(229,57,53,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(229,57,53,0.05); }
}
.live-count {
  margin-left: auto;
  color: var(--cream-dim);
  font-family: 'Bitter', serif;
  font-size: 0.85rem;
}
.game-card.is-live {
  border-color: rgba(229,57,53,0.4);
  background: var(--surface);
}

/* GAME LIST */
.league-section { margin-bottom: 40px; }
.league-heading {
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 1px; text-transform: uppercase;
}
.game-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.game-card.available-on-plan {
  border-color: rgba(200,168,107,0.55);
  box-shadow: 0 0 0 1px rgba(200,168,107,0.25);
}
.game-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.game-status {
  font-family: 'Bitter', serif;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(245,238,218,0.12); color: var(--cream-dim);
  white-space: nowrap;
}
.game-status.live {
  background: var(--live); color: #fff;
}
.game-league {
  font-family: 'Bitter', serif;
  font-size: 0.7rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold);
}
.game-time {
  font-family: 'Bitter', serif; font-size: 0.78rem;
  color: var(--cream-dim);
  white-space: nowrap;
}
.teams { display: flex; flex-direction: column; gap: 6px; }
.team {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.team-name {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bitter', serif; font-size: 1rem;
}
.team-logo {
  width: 22px; height: 22px; object-fit: contain;
  background: transparent;
}
.team-score {
  font-family: 'Bitter', serif; font-size: 1rem;
  color: var(--cream-dim);
  min-width: 28px; text-align: right;
}
.team-score.winner { color: var(--cream); }
.team-score.score-flash {
  animation: score-flash 1.2s ease-out;
}
@keyframes score-flash {
  0%   { color: var(--gold); transform: scale(1.18); text-shadow: 0 0 12px rgba(200,168,107,0.6); }
  60%  { color: var(--gold); transform: scale(1.06); }
  100% { transform: scale(1); text-shadow: none; }
}
.networks {
  font-size: 0.88rem; color: var(--cream-dim);
}
.networks strong { color: var(--cream); font-family: 'Bitter', serif; font-weight: 700; }
.watch-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.watch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  font-family: 'Bitter', serif; font-size: 0.82rem;
  background: var(--red); color: var(--cream);
  border: none; cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.watch-btn:hover { background: var(--red-hover); text-decoration: none; }
.watch-btn.secondary {
  background: transparent; border: 1px solid var(--border);
  color: var(--cream-dim);
}
.watch-btn.secondary:hover { border-color: var(--cream); color: var(--cream); }

/* On-plan pill — user already subscribes, subtle affirmative */
.watch-btn.on-plan {
  background: rgba(200,168,107,0.14);
  border: 1px solid var(--gold);
  color: var(--gold);
  gap: 5px;
}
.watch-btn.on-plan:hover {
  background: rgba(200,168,107,0.22);
  text-decoration: none;
}
.watch-btn.on-plan.static:hover { background: rgba(200,168,107,0.14); cursor: default; }
.watch-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: var(--green);
  font-size: 0.68rem; font-weight: 700;
}
.watch-note {
  font-size: 0.85rem; color: var(--cream-dimmer);
  padding-top: 4px;
}

/* EMPTY / LOADING */
.state {
  text-align: center; padding: 60px 20px;
  color: var(--cream-dim);
}
.state h3 { color: var(--cream); margin-bottom: 10px; }
.spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--gold);
  margin: 0 auto 14px; animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* TEAMS LIST (league pages) */
.teams-list { padding: 60px 0 20px; border-top: 1px solid var(--border); margin-top: 40px; }
.teams-list .section-title { text-align: center; font-size: 1.6rem; margin-bottom: 12px; }
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
}
.teams-grid a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Bitter', serif;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.teams-grid a:hover {
  border-color: var(--gold);
  background: var(--surface-2);
  text-decoration: none;
}

/* SETUP PANEL */
.setup-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 30px;
}
.setup-panel h3 {
  font-size: 1.05rem; margin-bottom: 8px; color: var(--gold);
}
.setup-panel p {
  color: var(--cream-dim); font-size: 0.95rem; margin-bottom: 14px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0; margin-top: 60px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream-dim); font-size: 0.9rem;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--cream-dim); font-size: 0.9rem; }
.footer-links a:hover { color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .page-head { padding: 88px 0 12px; }
  .page-head h1 { font-size: 1.55rem; }
  .page-head .lead { font-size: 0.95rem; }
  .filters { top: 64px; padding: 10px 0 12px; }
  .filter-stack { gap: 14px; }
  .game-grid { grid-template-columns: 1fr; }
  .live-strip { padding: 16px; }
  .live-strip-head h2 { font-size: 1rem; }
  .provider-summary { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
}
