/* =====================================================================
   WORTH BEING THERE — game day guide styles (shared by all guides)
   Team colors come from each page's :root (--team-primary, --accent).
   ===================================================================== */
:root {
  --team-dark:  color-mix(in srgb, var(--team-primary) 65%, black 35%);
  --team-deep:  color-mix(in srgb, var(--team-primary) 45%, black 55%);
  --accent-hot: color-mix(in srgb, var(--accent) 85%, white 15%);
  --bone:       #f4efe6;
  --bone-dim:   #cfc8ba;
  --line:       rgba(244, 239, 230, 0.14);
  --paper:      #f7f3ea;
  --ink:        #1a1a1a;
  --ink-dim:    #5a5650;
  --rule:       rgba(0, 0, 0, 0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }
a { color: var(--team-primary); }

/* ---- hero ---- */
.g-hero {
  background: var(--team-deep);
  color: var(--bone);
  border-bottom: 6px solid var(--accent);
  padding: 44px 0 40px;
}
.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.9rem; color: var(--bone-dim); text-decoration: none;
  display: inline-block; margin-bottom: 34px;
}
.brand strong { color: var(--bone); }
.brand .dot { color: var(--accent); }
.g-kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.9rem; color: var(--accent);
}
.g-hero h1 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.0; margin-top: 8px;
}
.g-sub { margin-top: 12px; font-size: 1.15rem; color: var(--bone); max-width: 56ch; }
.g-tagline { margin-top: 8px; color: var(--bone-dim); font-style: italic; }
.g-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.g-btn {
  display: inline-block;
  background: var(--accent); color: var(--team-deep);
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.95rem;
  padding: 12px 18px; text-decoration: none; border: 2px solid var(--accent);
  cursor: pointer;
}
.g-btn.ghost { background: transparent; color: var(--bone); border-color: var(--bone-dim); }
.g-btn:hover { filter: brightness(1.08); }

/* ---- table of contents ---- */
.g-toc { background: var(--team-dark); color: var(--bone); padding: 22px 0; }
.g-toc-title {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; color: var(--accent);
  margin-bottom: 10px;
}
.g-toc ol { list-style: none; columns: 2; column-gap: 32px; }
.g-toc li { break-inside: avoid; padding: 4px 0; }
.g-toc a {
  color: var(--bone); text-decoration: none;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.g-toc a:hover { color: var(--accent-hot); }
.g-toc-num { color: var(--accent); margin-right: 10px; font-weight: 700; }

/* ---- body ---- */
.g-body { padding: 24px 0 56px; }
.g-section { padding: 36px 0 8px; border-top: 1px solid var(--rule); }
.g-section:first-child { border-top: none; padding-top: 28px; }
.g-section h2 {
  font-family: "Archivo Black", sans-serif; text-transform: uppercase;
  font-size: clamp(1.35rem, 3.4vw, 1.8rem); line-height: 1.1;
  color: var(--team-primary); margin-bottom: 16px;
  display: flex; align-items: baseline; gap: 12px;
}
.g-num { font-size: 0.9rem; color: var(--ink-dim); font-family: "Barlow Condensed", sans-serif; font-weight: 700; }
.g-section h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem;
  color: var(--ink); margin: 22px 0 8px;
  border-left: 4px solid var(--accent); padding-left: 10px;
}
.g-section p { margin: 0 0 12px; max-width: 68ch; }
.g-section p b { color: var(--ink); }
.g-note { color: var(--ink-dim); font-style: italic; }
.g-tip {
  background: color-mix(in srgb, var(--accent) 16%, white 84%);
  border-left: 4px solid var(--accent);
  padding: 12px 14px; margin: 14px 0 16px; max-width: 68ch;
}
.g-tip-label {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem;
  color: var(--team-primary); margin-right: 6px;
}

/* facts + tables */
.g-facts { width: 100%; border-collapse: collapse; margin: 6px 0 16px; font-size: 0.98rem; }
.g-facts th { text-align: left; width: 32%; vertical-align: top; padding: 8px 10px 8px 0;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.9rem; color: var(--ink-dim); border-bottom: 1px dashed var(--rule); }
.g-facts td { vertical-align: top; padding: 8px 0; border-bottom: 1px dashed var(--rule); }
.g-table-wrap { overflow-x: auto; margin: 6px 0 16px; }
.g-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 460px; }
.g-table th, .g-table td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--rule); }
.g-table thead th { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.85rem; color: var(--bone); background: var(--team-primary); }
.g-table tbody th { font-weight: 600; white-space: nowrap; }
.g-table tbody tr:last-child th, .g-table tbody tr:last-child td { border-bottom: 2px solid var(--team-primary); }

/* picks */
.g-picks { list-style: none; margin: 4px 0 14px; }
.g-picks li { padding: 8px 0; border-bottom: 1px dashed var(--rule); max-width: 70ch; }
.g-pick-name { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.08rem; text-transform: uppercase; letter-spacing: 0.03em; }
.g-pick-area { color: var(--ink-dim); font-size: 0.9rem; }
.g-pick-area::before { content: "· "; }
.g-pick-text { display: block; }

/* timeline */
.g-timeline { list-style: none; margin: 4px 0 16px; border-left: 3px solid var(--accent); }
.g-timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 10px; padding: 8px 0 8px 14px; max-width: 70ch; }
.g-time { font-family: "Barlow Condensed", sans-serif; font-weight: 700; color: var(--team-primary); letter-spacing: 0.04em; }

/* footer */
.g-foot { background: var(--team-deep); color: var(--bone); padding: 36px 0 52px; border-top: 6px solid var(--accent); }
.g-foot p { margin-bottom: 10px; max-width: 68ch; }
.g-foot a { color: var(--accent-hot); }
.g-foot-meta { color: var(--bone-dim); font-size: 0.92rem; }

@media (max-width: 560px) {
  .g-toc ol { columns: 1; }
  .g-timeline li { grid-template-columns: 1fr; gap: 2px; }
  .g-facts th { width: 40%; }
}

/* ---- print: clean black-on-white, no chrome ---- */
@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .g-hero, .g-toc, .g-foot { background: none !important; color: #000 !important; border-color: #000 !important; }
  .g-hero { padding: 0 0 12pt; border-bottom-width: 2pt; }
  .brand, .brand strong { color: #000; }
  .g-kicker, .g-toc-num, .g-toc-title { color: #000; }
  .g-sub, .g-tagline { color: #000; }
  .g-hero-actions { display: none; }
  .g-toc { padding: 8pt 0; }
  .g-toc a { color: #000; }
  .g-section { break-inside: auto; }
  .g-section h2 { color: #000; break-after: avoid; }
  .g-section h3 { break-after: avoid; }
  .g-tip { background: none; border: 1pt solid #000; border-left-width: 4pt; }
  .g-tip-label, .g-time { color: #000; }
  .g-table thead th { background: none; color: #000; border-bottom: 1.5pt solid #000; }
  .g-table, .g-table-wrap { min-width: 0; overflow: visible; }
  .g-picks li, .g-timeline li, .g-facts tr { break-inside: avoid; }
  .g-foot a, .g-section a { color: #000; text-decoration: none; }
  .g-foot-meta a[href^="http"]::after { content: ""; }
}
