/* ───────── tokens ───────── */
:root {
  --bg:          #f5f6f8;
  --surface:     #ffffff;
  --surface-2:   #fafbfc;
  --ink:         #0d1117;
  --ink-2:       #57606a;
  --ink-3:       #8b949e;
  --border:      #e4e7eb;
  --accent:      #11823b;
  --accent-soft: #d8f0e0;
  --warn:        #d97706;
  --danger:      #dc2626;
  --good:        #15803d;
  --shadow-sm:   0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --shadow:      0 6px 18px -8px rgba(15,23,42,.10), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg:   0 18px 40px -14px rgba(15,23,42,.18), 0 4px 8px rgba(15,23,42,.05);
  --radius:      14px;
  --radius-sm:   8px;
}

* { box-sizing: border-box; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .page { padding: 0 20px; }
}
@media (max-width: 480px) {
  .page { padding: 0 14px; }
}

/* ───────── sticky brand bar (collegiate / varsity) ───────── */
.brand-bar {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  background: var(--accent);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 2px 12px -4px rgba(15, 23, 42, .25);
}
.brand {
  font-family: 'Bungee', 'Arial Black', sans-serif;
  font-size: 34px;
  letter-spacing: .06em;
  color: white !important;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  /* stacked shadows give an embroidered / extruded feel */
  text-shadow:
    1px 1px 0 #073d1f,
    2px 2px 0 #073d1f,
    3px 3px 0 #073d1f,
    4px 4px 0 #073d1f,
    5px 6px 12px rgba(0, 0, 0, .25);
}
@media (max-width: 700px) {
  .brand { font-size: 26px; letter-spacing: .04em; }
  .brand-bar { padding: 14px 16px; }
}
@media (max-width: 380px) {
  .brand { font-size: 20px; }
}

/* ───────── header ───────── */
.site-header {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--border);
  background: none;
  margin-bottom: 28px;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.site-header h1 {
  font-size: 32px; font-weight: 800; letter-spacing: -.01em; margin: 4px 0 0;
}
.site-header .meta {
  margin-top: 6px; color: var(--ink-2); font-size: 14px;
}

/* ───────── match card ───────── */
.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  position: relative;
}
.match-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent); opacity: 0;
  transition: opacity .2s ease;
}
.match-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: #cdd5dd;
}
.match-card:hover::before { opacity: .8; }

/* ───────── match card v2 (two-half stacked) ───────── */
.match-card__top {
  padding: 22px 24px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  font-size: 19px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}
.team {
  min-width: 0;
  overflow-wrap: break-word;
}
.team--home { text-align: right; }
.team--away { text-align: left; }
.team--home, .team--away { color: var(--ink); }
.team--winner { color: var(--accent); }
.team--loser  { color: var(--ink-3); font-weight: 600; }
.vs {
  flex-shrink: 0;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700;
  padding: 4px 8px; border-radius: 6px; background: var(--surface-2);
}
.team-center {
  display: inline-flex; align-items: center; gap: 12px;
}
.team-logo {
  height: 38px; width: 38px; object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .team-logo { height: 30px; width: 30px; }
  .team-center { gap: 8px; }
}
.match-card__meta {
  margin-top: 8px;
  font-size: 13px; color: var(--ink-2);
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.match-card__meta .dot { color: var(--ink-3); }
.match-card__score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 22px; font-weight: 800; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.match-card__score-num:first-child { text-align: right; }
.match-card__score-num:last-child  { text-align: left; }
.match-card__score .vs {
  font-size: 13px;
  font-variant-numeric: normal;  /* keep dash glyph natural */
}

/* Pick (bottom half) */
.pick {
  padding: 18px 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pick__label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700;
  margin-bottom: 6px;
}
.pick__team {
  color: var(--accent); font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.pick__check {
  font-size: 16px;
}
.pick__check--correct { color: var(--good); }
.pick__check--wrong   { color: var(--danger); }

.confidence {
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 460px;
}
.confidence__bar {
  flex: 1; height: 8px; background: var(--surface-2);
  border-radius: 999px; overflow: hidden;
  position: relative;
}
.confidence__fill {
  height: 100%; border-radius: 999px;
  transition: width 1s cubic-bezier(.22,.61,.36,1), background .3s ease;
  /* Default colour overridden per-pick via inline hsl() — amber→green spectrum. */
  background: linear-gradient(90deg, hsl(45, 78%, 50%) 0%, hsl(45, 78%, 38%) 100%);
}
.confidence__pct {
  font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 44px; text-align: right;
  transition: color .3s ease;
}

.consensus {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-2);
  margin-top: 10px;
}
.consensus__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--ink-3);
}
.consensus--strong .consensus__dot { background: var(--good); }
.consensus--mixed  .consensus__dot { background: var(--warn); }
.consensus--split  .consensus__dot { background: var(--danger); }

/* ───────── expand / detail section ───────── */
.match-card__expand {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 16px 26px;
  display: grid; grid-template-columns: 1fr; gap: 14px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; color: var(--ink-2);
  white-space: nowrap;
}
.pill__name { color: var(--ink-3); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.pill__pick { color: var(--ink); font-weight: 600; }
.pill__pct  { color: var(--ink-3); font-variant-numeric: tabular-nums; font-size: 12px; }
.pill--correct { background: #ecfdf5; border-color: #a7f3d0; }
.pill--correct .pill__pick { color: var(--good); }
.pill--wrong   { background: #fef2f2; border-color: #fecaca; }
.pill--wrong   .pill__pick { color: var(--danger); }
.pill--star    { background: var(--accent-soft); border-color: #a3d9b2; }

/* card-disclosure trigger (replaces details/summary so we can style fully) */
.toggle {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 10px 26px;
  background: transparent; border: 0; border-top: 1px solid var(--border);
  cursor: pointer; color: var(--ink-2);
  font-size: 13px; font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.toggle:hover { background: var(--surface-2); color: var(--ink); }
.toggle__chev { transition: transform .25s ease; }
.toggle[aria-expanded="true"] .toggle__chev { transform: rotate(180deg); }
.toggle__chev::before { content: "⌄"; font-size: 18px; line-height: 1; }

/* completed-match score chip (kept for legacy use, unused in v2 cards) */
.score-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: white; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* ───────── round nav (within season) ───────── */
.round-nav {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 28px 0 16px;
}
.round-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; padding: 6px 8px 6px 14px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 999px; color: var(--ink); text-decoration: none;
  font-variant-numeric: tabular-nums; font-weight: 600;
  transition: all .15s ease;
}
.round-pill:hover { border-color: #cdd5dd; box-shadow: var(--shadow-sm); }
.round-pill__round { letter-spacing: .02em; }
.round-pill__result {
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-3);
}
.round-pill__result--excellent { background: var(--accent);      color: #ffffff; }
.round-pill__result--good      { background: var(--accent-soft); color: var(--good); }
.round-pill__result--warn      { background: #fef3c7;            color: #92400e; }
.round-pill__result--bad       { background: #fee2e2;            color: var(--danger); }

/* ───────── season selector ───────── */
.season-select-row {
  margin: 8px 0 16px;
}
.season-select {
  appearance: none; -webkit-appearance: none;
  width: 25%; min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 44px 12px 18px;
  font: inherit; font-size: 18px; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path fill='none' stroke='%230d1117' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: all .15s ease;
}
.season-select:hover { border-color: #cdd5dd; box-shadow: var(--shadow); }
.season-select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

/* ───────── scoreboard mini ───────── */
.scoreboard {
  margin-top: 36px;
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--ink) 0%, #1a1f29 100%);
  color: white; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.scoreboard h2 {
  color: white; font-size: 16px; margin: 0 0 14px; font-weight: 700;
  letter-spacing: .01em;
}
.scoreboard__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.score-cell { background: rgba(255,255,255,.05); padding: 12px 14px; border-radius: 10px; }
.score-cell__name {
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 4px;
}
.score-cell__value {
  font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.score-cell__detail {
  font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px;
}
.score-cell--top { background: rgba(34, 197, 94, .15); }
.score-cell--top .score-cell__value { color: #4ade80; }

/* ───────── hero (most confident pick) ───────── */
.hero-card {
  margin-bottom: 22px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--accent) 0%, #0a5d28 100%);
  color: white; border-radius: var(--radius);
  box-shadow: 0 12px 28px -12px rgba(17, 130, 59, .55);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.hero-card .kicker { color: rgba(255,255,255,.8); }
.hero-card__title { font-size: 20px; font-weight: 700; margin: 2px 0 0; }
.hero-card__pct {
  font-size: 36px; font-weight: 800; font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

/* ───────── results table mode (legacy collapsible) ───────── */
.match-card--result .match-card__main {
  background: var(--surface);
}
.match-card--result.match-card--correct::before { background: var(--good); opacity: .8; }
.match-card--result.match-card--wrong::before { background: var(--danger); opacity: .6; }

/* ───────── info button + modal ───────── */
.info-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}
.info-btn:hover {
  color: var(--ink); border-color: #cdd5dd; background: var(--surface-2);
}
.info-btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--accent); color: white; font-size: 11px; font-weight: 700;
  font-style: italic;
}

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
  animation: backdropIn .2s ease;
}
.modal-backdrop[data-open="true"] { display: flex; }

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 720px; width: 100%;
  animation: modalIn .25s cubic-bezier(.22,.61,.36,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.modal__title { font-size: 20px; font-weight: 700; margin: 0; }
.modal__close {
  background: transparent; border: 0; cursor: pointer;
  width: 32px; height: 32px; border-radius: 999px;
  font-size: 18px; color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.modal__close:hover { background: var(--surface-2); color: var(--ink); }
.modal__body {
  padding: 22px 28px 28px;
}
.predictor-doc {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.predictor-doc:last-of-type { border-bottom: 0; }
.modal__footer-note {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.predictor-doc__name {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px; font-weight: 700;
  background: var(--accent-soft); color: var(--good);
  padding: 3px 10px; border-radius: 6px;
  margin-bottom: 8px;
}
.predictor-doc__name--special {
  background: linear-gradient(90deg, #ecfdf5 0%, #dbeafe 100%);
  color: #1e40af;
}
.predictor-doc__body {
  color: var(--ink-2); font-size: 14px; line-height: 1.55;
  margin: 0;
}
.predictor-doc__body strong { color: var(--ink); font-weight: 600; }
.predictor-doc__body code {
  background: var(--surface-2); padding: 1px 6px; border-radius: 4px;
  font-size: 12px; color: var(--ink);
}

/* ───────── footer ───────── */
.site-footer {
  margin-top: 24px;
  padding: 36px 0 56px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #eef0f3 100%);
  color: var(--ink-3);
  font-size: 12px; line-height: 1.6;
}
.site-footer__inner {
  width: 100%;
  padding: 0 12px;
  display: flex; flex-direction: column; gap: 18px;
}
.site-footer__brand {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-2);
}
.site-footer__disclaimer {
  text-align: justify;
}
.site-footer__disclaimer-title {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 4px;
}
.site-footer__separator {
  height: 1px; background: var(--border); border: 0;
  margin: 4px 0;
}
.site-footer__actions {
  display: flex; justify-content: center;
}
.about-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}
.about-btn:hover {
  color: var(--ink); border-color: #cdd5dd; background: var(--surface-2);
}
.modal__body > p { margin: 0 0 12px; }
.modal__body > p:last-child { margin-bottom: 0; }
.about-modal__credit {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--ink-2);
}
.about-modal__credit a {
  color: var(--accent); text-decoration: none; font-weight: 600;
}
.about-modal__credit a:hover { text-decoration: underline; }

/* ───────── admin page ───────── */
.admin__section { margin-top: 36px; }
.admin__section-title {
  font-size: 16px; font-weight: 700; letter-spacing: .02em;
  margin: 0 0 14px;
}
.admin__flash {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 16px;
}
.admin__flash-item {
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: var(--surface);
}
.admin__flash-item--ok   { color: var(--good);   border-color: var(--accent-soft); background: var(--accent-soft); }
.admin__flash-item--warn { color: #92400e;        border-color: #fde68a;          background: #fef3c7; }
.admin__empty { color: var(--ink-3); font-style: italic; }

.trigger-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.trigger-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.trigger-card__label {
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.trigger-card__input {
  font: inherit; font-size: 13px;
  padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--surface-2); color: var(--ink);
}
.trigger-card__btn {
  margin-top: 4px;
  padding: 8px 14px;
  background: var(--accent); color: white;
  border: 0; border-radius: 8px;
  font: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
}
.trigger-card__btn:hover { background: var(--good); }
.trigger-card__btn--running,
.trigger-card__btn:disabled {
  background: var(--ink-3); cursor: not-allowed;
}

.runs-table {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); overflow: hidden;
  font-size: 12px;
}
.runs-table__head,
.runs-table__row {
  display: grid;
  grid-template-columns: 150px 160px 90px 90px 80px 1fr;
  gap: 12px;
  padding: 8px 14px;
  align-items: start;
}
.runs-table__head {
  background: var(--surface-2);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-2); font-size: 11px;
}
.runs-table__row + .runs-table__row,
.runs-table__head + .runs-table__row {
  border-top: 1px solid var(--border);
}
.runs-table__row--error { background: #fef2f2; }
.runs-table__row--running { background: #f0f9ff; }
.runs-table__cell { font-variant-numeric: tabular-nums; word-break: break-word; }
.runs-table__cell--detail { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.runs-table__summary { color: var(--ink-2); white-space: pre-wrap; }
.runs-table__error {
  margin: 0; color: var(--danger);
  white-space: pre-wrap; font-size: 11px;
}

.status-pill {
  display: inline-block; padding: 2px 8px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.status-pill--ok       { background: var(--accent-soft); color: var(--good); }
.status-pill--running  { background: #dbeafe;            color: #1e40af; }
.status-pill--error    { background: #fee2e2;            color: var(--danger); }
.status-pill--orphaned { background: var(--surface-2);   color: var(--ink-3); }

.match-trigger-list {
  display: flex; flex-direction: column; gap: 8px;
}
.match-trigger {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 13px;
}
.match-trigger__meta {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: baseline;
}
.match-trigger__round {
  font-weight: 700; color: var(--ink-2);
  letter-spacing: .04em;
}
.match-trigger__teams {
  font-weight: 600; color: var(--ink);
}
.match-trigger__kickoff {
  font-size: 11px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.match-trigger__btn {
  padding: 6px 14px;
  background: var(--ink); color: white;
  border: 0; border-radius: 6px;
  font: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
}
.match-trigger__btn:hover { background: var(--accent); }
.match-trigger__btn:disabled { background: var(--ink-3); cursor: not-allowed; }

@media (max-width: 800px) {
  .runs-table__head,
  .runs-table__row {
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }
  .runs-table__cell--detail { grid-column: 1 / -1; }
}

/* responsive */
@media (max-width: 700px) {
  .match-card__teams { font-size: 16px; gap: 10px; }
  .pick__team { font-size: 18px; }
  .site-header h1 { font-size: 24px; }
}

@media (max-width: 480px) {
  .match-card__teams {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }
  .team--home, .team--away { text-align: center; }
  .vs { justify-self: center; }
}
