/* sportsbettingoregon.com.css - SELF-CONTAINED (flattened by build_site_css.py). Style: football/autzen-hotpink. Edit sources, re-run; never hand-edit this file. */


/* ===== base: site-assets\_base\base.css ===== */
/* ==========================================================================
   TRM BASE STYLESHEET v1.0 — the fleet standard (any site, any niche)
   --------------------------------------------------------------------------
   Mobile-first, function + layout LOCKED. Clean SEMANTIC class names (NOT a
   site's legacy taxonomy). New sites use THIS + a thin theme layer; they never
   piggyback another site's sheet.

   HOW IT LAYERS:
     1. base.css        -> structure, components, mobile build, neutral tokens   (this file, never edited per-site)
     2. theme-<site>.css -> override :root tokens (brand colors, fonts, radius) + any niche flourishes
   Load order: base.css THEN theme-<site>.css. A reskin is a token edit, not a rewrite.

   TRACKING: affiliate anchors get class="aff" + data-book / data-slot attributes;
   the site's click tracker binds to [data-book] (site-neutral, no hardcoded IDs).
   Rules: mobile-first (base = phone; @media min-width builds up). No !important
   except to beat third-party inline styles (documented inline). Two breakpoints: 640, 960.
   ========================================================================== */

/* ---------- 1. Tokens (theme overrides these) ---------- */
:root {
  --c-brand:      #1a4fd6;   /* primary brand */
  --c-brand-dk:   #12379a;
  --c-accent:     #18bb51;   /* CTA / go */
  --c-accent-dk:  #0f9a40;
  --c-warn:       #e10507;
  --c-ink:        #1a1a1a;
  --c-muted:      #5a5a63;
  --c-line:       #d9dce1;
  --c-line-soft:  #eef1f4;
  --c-bg:         #ffffff;
  --c-bg-soft:    #f6f8fa;
  --c-good:       #1a8a3c;
  --c-bad:        #c62828;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-sm: 0.875rem; --fs: 1rem;
  --fs-h3: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  --fs-h2: clamp(1.35rem, 1.15rem + 1vw, 1.75rem);

  --sp-xs: 0.25rem; --sp-sm: 0.5rem; --sp: 1rem; --sp-lg: 1.5rem;
  --radius: 6px; --radius-sm: 4px;
  --shadow: 0 6px 24px rgba(0,0,0,.05), 0 0 0 1px rgba(0,0,0,.08);
  --cta-gradient: linear-gradient(to bottom, var(--c-accent), var(--c-accent-dk));
}

/* ---------- 2. Base / reset (mobile-first) ---------- */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video { max-width: 100%; height: auto; }
.wrap { width: 100%; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--sp); }
.row-border { border-top: 1px solid var(--c-line-soft); }

/* ---------- 3. Buttons ---------- */
.btn, .btn--brand, .btn--warn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 600 var(--fs)/1 var(--font); padding: .65em 1.1em;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  color: #fff; text-decoration: none; cursor: pointer;
  background: var(--c-accent) var(--cta-gradient); transition: filter 120ms ease;
}
.btn:hover, .btn--brand:hover, .btn--warn:hover { filter: brightness(1.07); color: #fff; }
.btn--brand { background: var(--c-brand) linear-gradient(to bottom, var(--c-brand), var(--c-brand-dk)); }
.btn--warn  { background: var(--c-warn)  linear-gradient(to bottom, var(--c-warn), #b30406); }
.btn--full  { width: 100%; }
.btn__icon  { display: inline-flex; align-items: center; }
.btn__icon svg { width: 1.3em; height: 1.3em; display: block; }

/* ---------- 4. Operator / product row (.book-row) — the money component ----------
   Mobile: logo+bonus / pitch / features / full-width CTA.  Desktop: 5-col row.
   Markup: .book-row > .book-row__logo|__pitch|__bonus|__features|__cta */
.book-list { margin: 0 0 var(--sp-lg); padding: 0; list-style: none; }
.book-row {
  display: grid;
  grid-template-areas: "logo bonus" "pitch pitch" "feat feat" "cta cta";
  grid-template-columns: minmax(130px, auto) 1fr;
  align-items: center; gap: var(--sp-sm);
  padding: var(--sp-sm); margin-bottom: var(--sp-lg);
  background: var(--c-bg); border-radius: var(--radius); box-shadow: var(--shadow);
}
.book-row__logo { grid-area: logo; position: relative; display: flex; align-items: center; justify-content: center;
  width: 130px; height: 60px; margin-inline: auto; background: var(--c-line-soft);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm); }
.book-row__logo img { padding: 3px 12px 0; }
.book-row__pitch { grid-area: pitch; min-width: 0; }
.book-row__pitch h3 { margin: 0 0 var(--sp-xs); font-size: var(--fs-sm); font-weight: 600; color: var(--c-brand-dk); }
.book-row__pitch p  { margin: 0; font-size: var(--fs-sm); line-height: 1.35; }
.book-row__bonus { grid-area: bonus; text-align: center; max-width: 150px; margin-inline: auto; }
.book-row__bonus b, .book-row__bonus span:first-child { display: block; font-weight: 700; }
.book-row__bonus .code { display: inline-block; margin-top: 3px; padding: 2px 6px;
  border: 2px dashed var(--c-accent); background: rgba(24,187,81,.18); border-radius: var(--radius-sm); font-weight: 700; }
.book-row__features { grid-area: feat; }
.book-row__features ul { list-style: none; margin: 0; padding: 0; font-size: var(--fs-sm); }
.book-row__features li { display: flex; align-items: center; gap: .4em; padding-block: 2px; line-height: 1.25; }
.book-row__features li::before { content: "✓"; color: var(--c-good); font-weight: 700; }
.book-row__cta { grid-area: cta; }
.book-row__cta .btn { width: 100%; }
.rank-badge { position: absolute; left: -14px; top: 10px; min-width: 24px; padding: 5px 3px;
  text-align: center; font-weight: 700; color: #fff; border-radius: 5px;
  background: linear-gradient(to bottom right, #051937, #0a234a);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 5px), 0 calc(100% - 10px)); }
.rank-badge--top { background: linear-gradient(to bottom, #ee1529, #d10909); }
@media (min-width: 960px) {
  .book-row { grid-template-areas: "logo pitch bonus feat cta";
    grid-template-columns: 150px minmax(0,1fr) 120px 210px 150px; gap: 0; }
  .book-row > * { padding: var(--sp-sm); }
  .book-row > *:not(:last-child) { border-right: 1px solid var(--c-line-soft); }
  .book-row__cta .btn { width: 130px; margin-inline: auto; }
}

/* ---------- 5. Review summary card (.review-card) ---------- */
.review-card { background: var(--c-bg); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: var(--sp); margin-bottom: var(--sp-lg); }
.review-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-sm);
  border-bottom: 1px solid var(--c-line-soft); padding-bottom: var(--sp-sm); margin-bottom: var(--sp); }
.rank-dot { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.2em; min-height: 2.2em; border-radius: 50%; background: var(--c-brand); color: #fff; font-weight: 700; }

/* ---------- 6. Spec box (key/value facts) ---------- */
.spec-box { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: var(--sp); margin-bottom: var(--sp); }
.spec-box p { margin: 0 0 var(--sp-xs); font-size: var(--fs-sm); }

/* ---------- 7. CTA band (mid-article) ---------- */
.cta-band { display: grid; grid-template-areas: "logo" "copy" "act"; grid-template-columns: 1fr;
  gap: var(--sp); align-items: center; background: var(--c-bg); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: var(--sp); margin-bottom: var(--sp-lg); }
.cta-band__logo { grid-area: logo; display: flex; justify-content: center; }
.cta-band__copy { grid-area: copy; min-width: 0; }
.cta-band__act  { grid-area: act; }
.cta-band__note { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--sp-sm); }
@media (min-width: 640px) {
  .cta-band { grid-template-areas: "logo copy act"; grid-template-columns: auto minmax(0,1fr) auto; }
}

/* ---------- 8. Pros / cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: var(--sp); margin-bottom: var(--sp); }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: .5em; padding-block: .25em; }
.checklist--pros li::before { content: "✓"; color: var(--c-good); font-weight: 700; }
.checklist--cons li::before { content: "✕"; color: var(--c-bad); font-weight: 700; }

/* ---------- 9. Responsive data table (scrolls on phone, never squishes) ---------- */
.data-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--sp); }
.data-table table { min-width: 640px; width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { border: 1px solid var(--c-line-soft); padding: .5em .65em; font-size: var(--fs-sm); }
.data-table thead th { background: var(--c-brand-dk); color: #fff; text-align: left; }

/* ---------- 9b. cmp-table: real <table> that becomes stacked cards on mobile (no h-scroll).
   Row-entity in <th scope=row>; every <td data-label="Column"> so mobile shows the label. ---------- */
.cmp-table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp); font-size: var(--fs-sm); }
.cmp-table caption { caption-side: top; text-align: left; font-weight: 700; padding-bottom: var(--sp-sm); }
.cmp-table th, .cmp-table td { border: 1px solid var(--c-line); padding: .55em .7em; text-align: left; vertical-align: top; }
.cmp-table thead th { background: var(--c-brand-dk); color: #fff; }
.cmp-table tbody th { background: var(--c-bg-soft); font-weight: 700; }
.cmp-table tbody tr:nth-child(even) td { background: var(--c-bg-soft); }
.cmp-table tbody tr.is-top th { background: var(--c-accent); color: #fff; }
@media (max-width: 640px) {
  .cmp-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cmp-table, .cmp-table tbody, .cmp-table tr, .cmp-table th, .cmp-table td { display: block; width: auto; }
  .cmp-table tr { border: 1px solid var(--c-line); border-radius: var(--radius); margin-bottom: var(--sp-sm); overflow: hidden; }
  .cmp-table tbody th { background: var(--c-brand-dk); color: #fff; }
  .cmp-table td { border: 0; border-top: 1px solid var(--c-line-soft); padding-left: 42%; position: relative; background: var(--c-bg) !important; }
  .cmp-table td::before { content: attr(data-label); position: absolute; left: .7em; top: .55em; width: 36%; font-weight: 600; color: var(--c-muted); }
}

/* ---------- 9c. table-list: <ul> comparison, one card per row-entity (row label = card title,
   remaining columns = <dl> label/value pairs). For very wide / text-heavy comparisons. ---------- */
.table-list { list-style: none; margin: 0 0 var(--sp); padding: 0; display: grid; gap: var(--sp-sm); }
.table-list__item { border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; background: var(--c-bg); }
.table-list__item--top { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent); }
.table-list__title { margin: 0; padding: .55em .75em; font-weight: 700; font-size: var(--fs); background: var(--c-brand-dk); color: #fff; }
.table-list__item--top .table-list__title::after { content: "  \2605 #1"; font-weight: 700; }
.table-list__fields { margin: 0; }
.table-list__fields > div { display: grid; grid-template-columns: 38% 1fr; gap: var(--sp-sm); padding: .5em .75em; border-top: 1px solid var(--c-line-soft); }
.table-list__fields dt { margin: 0; font-weight: 600; color: var(--c-muted); font-size: var(--fs-sm); }
.table-list__fields dd { margin: 0; font-size: var(--fs-sm); }
@media (max-width: 560px) { .table-list__fields > div { grid-template-columns: 1fr; gap: var(--sp-xs); } .table-list__fields dt { color: var(--c-brand); } }

/* ---------- 10. Card grid (1 / 2 / 3 responsive) ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp); margin-bottom: var(--sp); }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 11. Boxes: callout, facts-checked, disclosure, responsible-gambling ---------- */
.box { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius); padding: var(--sp); margin-bottom: var(--sp); }
.box__head { display: flex; align-items: center; gap: var(--sp-sm); border-bottom: 1px solid var(--c-line-soft);
  padding-bottom: var(--sp-sm); margin-bottom: var(--sp); }
.box__head h3 { margin: 0; font-size: var(--fs-h3); color: var(--c-brand-dk); }
.box--facts { border-color: var(--c-good); }
.box--facts .box__head h3::before { content: "✔ "; color: var(--c-good); }
.disclosure, .rg-strip { font-size: var(--fs-sm); color: var(--c-muted); }
.rg-strip { text-align: center; padding-block: var(--sp-sm); border-top: 1px solid var(--c-line-soft); }

/* ---------- 12. Author box ---------- */
.author-box { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-sm) var(--sp);
  padding-block: var(--sp-sm); border-block: 1px solid var(--c-line-soft); margin-bottom: var(--sp); font-size: var(--fs-sm); }
.author-box img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-box .date { color: var(--c-muted); }

/* ---------- 13. Affiliate link hook (tracker binds to [data-book]) ---------- */
.aff { text-decoration: none; }

/* ---------- 14. Reference-data callouts (boilerplate for canonical facts) ----------
   Wrap canonical reference data (pay tables, RTP/edge constants, strategy order, cited
   quotes, definitions) in these so it reads as INTENTIONAL reference, not stray prose.
   A pure-data Copyscape match inside a callout is acceptable (it's cited-primary class). */
.callout { border-left: 4px solid var(--c-brand); background: var(--c-bg-soft);
  padding: var(--sp) var(--sp-lg); margin-bottom: var(--sp); border-radius: 0 var(--radius) var(--radius) 0; }
.callout__label { display: block; margin-bottom: var(--sp-xs); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted); }
.callout--quote { border-left-color: var(--c-muted); font-style: italic; }
.callout--quote cite { display: block; margin-top: var(--sp-xs); font-style: normal; font-size: var(--fs-sm); color: var(--c-muted); }
.callout--data { border-left-color: var(--c-accent); }   /* pay tables, RTP, canonical numbers */
.callout--def  { border-left-color: var(--c-good); }     /* term definitions */
.callout--warn { border-left-color: var(--c-warn); background: #fff5f5; }


/* ===== niche:football: design-library\_niche-components\football\odds-box.css ===== */
/* odds-box — niche component STRUCTURE (function). Skins restyle appearance only.
   TWO VARIANTS share the class (both live in shipped markup — 2026-07-25 fix):
   1. PANEL:  .odds-box > .odds-box__head + .data-table/.odds-box__body   (head bar ABOVE table)
   2. COMPACT ROW: .odds-box > .odds-box__team + .odds-box__line          (team | line, one row)
   The row grid applies ONLY when a __line/__team child is present (:has) — a bare .odds-box is a
   block panel, so the head never lands beside the table. */
.odds-box { display: block; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: var(--sp-sm); }
.odds-box:has(> .odds-box__line), .odds-box:has(> .odds-box__team) {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp); overflow: visible; }
.odds-box__team { min-width: 0; font-weight: 600; }
.odds-box__line { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--c-brand); }
.odds-box__cta { grid-column: 1 / -1; }
.odds-box .data-table { margin-bottom: 0; }
@media (min-width: 640px) {
  .odds-box:has(> .odds-box__line), .odds-box:has(> .odds-box__team) { grid-template-columns: 1fr auto auto; }
  .odds-box__cta { grid-column: auto; }
}


/* ===== style:football/autzen-hotpink/skin.css: design-library\football\autzen-hotpink\skin.css ===== */
/* ==========================================================================
   football / autzen-hotpink — SKIN (appearance only, base.css contract intact)
   autzen-night body 100% intact: charcoal hash-marked turf, floodlight cards,
   volt EDITORIAL accent (live lines, section rules, table chrome). The ONLY
   change: hot neon magenta-pink (#ff6fae) owns the CONVERSION layer — .btn /
   .btn--brand CTAs, book-row__cta, cta-band action, rank-badge--top, bonus
   .code chip. Nothing else turns pink. Discipline IS the design.
   Mobile-first. No !important (base's own cmp-table !important untouched).
   ========================================================================== */

/* ---- page: night turf with faint hash marks under everything ---- */
body {
  background: var(--an-page) var(--an-hash);
  color: var(--c-ink);
  font-family: var(--font);
}
a { color: #9fd8bd; }
a:hover { color: var(--c-accent); }
h1, h2, h3, h4 { color: var(--c-ink); letter-spacing: .01em; }
h2 { border-bottom: 2px solid var(--c-brand); padding-bottom: .25em; }
h2::after { content: ""; display: block; width: 64px; height: 2px;
  background: var(--c-accent); margin-top: 2px; }

/* ---- CTAs: THE FLARE — dark ink on hot pink, uppercase, pink glow ----
   Conversion layer only. Volt never appears on a button in this skin. */
.btn, .btn--brand, .btn--warn {
  color: var(--ahp-pink-ink);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 800;
  border-radius: var(--radius-sm);
  background: var(--ahp-pink) var(--cta-gradient);
  box-shadow: var(--ahp-pink-glow);
}
.btn:hover { filter: brightness(1.1); color: var(--ahp-pink-ink); }
.btn--brand {
  background: transparent; color: var(--ahp-pink);
  border: 1px solid var(--ahp-pink); box-shadow: none;
}
.btn--brand:hover { background: rgba(255,46,136,.16); color: #ffa9cc; }
.btn--warn {
  background: var(--c-warn) linear-gradient(to bottom, #ff6b4a, #e04525);
  color: #fff; box-shadow: 0 0 14px rgba(255,92,57,.3);
}
.btn--warn:hover { color: #fff; }

/* ---- book-row: broadcast lower-third strip (volt editorial, untouched) ---- */
.book-row {
  background: linear-gradient(to bottom, #1b1f21, var(--c-bg));
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-accent);
}
.book-row__logo { background: #0e1112; border-color: var(--c-line); }
.book-row__pitch h3 { color: var(--c-accent); text-transform: uppercase; letter-spacing: .04em; }
.book-row__bonus b, .book-row__bonus span:first-child { color: var(--c-ink); }
/* bonus code chip: pink accent — a conversion moment */
.book-row__bonus .code {
  border: 1px solid var(--ahp-pink); border-style: solid;
  background: rgba(255,46,136,.12); color: #ffa9cc;
}
.book-row__features li::before { color: var(--c-accent); }
@media (min-width: 960px) {
  .book-row > *:not(:last-child) { border-right: 1px solid var(--c-line-soft); }
}

/* ---- rank badge: flat scorebug chip; #1 is the pink flare ---- */
.rank-badge {
  clip-path: none; left: -10px; top: -10px;
  padding: 4px 8px; border-radius: 2px;
  background: var(--c-accent); color: #10130a;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--an-volt-glow);
}
.rank-badge--top { background: var(--ahp-pink); color: var(--ahp-pink-ink);
  box-shadow: var(--ahp-pink-glow); }

/* ---- cards / boxes: charcoal panels, floodlight edge (untouched) ---- */
.review-card, .spec-box, .cta-band, .box {
  background: var(--c-bg); border: 1px solid var(--c-line);
}
.review-card__head { border-bottom-color: var(--c-brand); }
.rank-dot { background: var(--c-brand-dk); color: var(--c-accent);
  border: 1px solid var(--c-accent); border-radius: 2px; }
.box__head { border-bottom-color: var(--c-line); }
.box__head h3 { color: var(--c-accent); text-transform: uppercase;
  font-size: var(--fs); letter-spacing: .05em; }
.box--facts { border-color: var(--c-good); }
/* cta-band chrome stays volt; only the .btn inside it flares pink */
.cta-band { border-left: 4px solid var(--c-accent); }

/* ---- tables: scorebug board — forest header, volt top rule, zebra dark ---- */
.data-table table { border: 1px solid var(--c-line); }
.data-table th, .data-table td { border-color: var(--c-line-soft); }
.data-table thead th {
  background: var(--c-brand-dk); color: var(--c-ink);
  text-transform: uppercase; letter-spacing: .05em; font-size: .78rem;
  border-bottom: 2px solid var(--c-accent);
}
.data-table tbody tr:nth-child(even) td { background: var(--c-bg-soft); }
.data-table td { font-variant-numeric: tabular-nums; }

.cmp-table th, .cmp-table td { border-color: var(--c-line); }
.cmp-table thead th { background: var(--c-brand-dk); color: var(--c-ink);
  border-bottom: 2px solid var(--c-accent); text-transform: uppercase;
  letter-spacing: .05em; font-size: .78rem; }
.cmp-table tbody th { background: var(--c-bg-soft); color: var(--c-ink); }
.cmp-table tbody tr.is-top th { background: var(--c-accent); color: #10130a; }
@media (max-width: 640px) {
  .cmp-table tbody th { background: var(--c-brand-dk); color: var(--c-ink); }
  .cmp-table td::before { color: var(--c-muted); }
}

.table-list__item { background: var(--c-bg); border-color: var(--c-line); }
.table-list__item--top { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent), var(--an-volt-glow); }
.table-list__title { background: var(--c-brand-dk); color: var(--c-ink); border-bottom: 2px solid var(--c-accent); }
.table-list__fields dt { color: var(--c-muted); }

/* ---- pros/cons, callouts, strips (untouched) ---- */
.checklist--pros li::before { color: var(--c-good); }
.checklist--cons li::before { color: var(--c-bad); }
.callout { background: var(--c-bg-soft); border-left-width: 4px; }
.callout--data { border-left-color: var(--c-accent); }
.callout--warn { background: rgba(255,92,57,.1); border-left-color: var(--c-warn); }
.callout__label { color: var(--c-accent); }
.disclosure, .rg-strip { color: var(--c-muted); }
.rg-strip { border-top-color: var(--c-line); }
.author-box { border-block-color: var(--c-line); }
.author-box img { border: 2px solid var(--c-brand); }

/* ==========================================================================
   NICHE COMPONENTS (football) — all editorial, all stay volt/spruce
   ========================================================================== */

/* ---- odds-box: live-line scorebug cell — volt number is the hero ---- */
.odds-box {
  background: var(--c-bg);
  border: 1px solid var(--c-line); border-left: 4px solid var(--c-brand);
  border-radius: var(--radius-sm);
}
.odds-box__team { color: var(--c-ink); text-transform: uppercase;
  letter-spacing: .03em; font-size: var(--fs-sm); }
.odds-box__line {
  color: var(--c-accent); font-size: 1.05rem;
  background: #0e1112; border: 1px solid var(--c-line);
  border-radius: 2px; padding: .15em .5em;
}
.odds-box:hover { border-left-color: var(--c-accent); }

/* ---- gameday-card: the college slate card (opponent / kickoff / line / route) ---- */
.gameday-card {
  background: linear-gradient(160deg, #1b2320 0%, var(--c-bg) 55%);
  border: 1px solid var(--c-line); border-top: 3px solid var(--c-accent);
  border-radius: var(--radius); padding: var(--sp);
  margin-bottom: var(--sp); box-shadow: var(--shadow);
}
.gameday-card__opponent { font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--c-ink); }
.gameday-card__kickoff { color: var(--c-muted); font-size: var(--fs-sm);
  font-variant-numeric: tabular-nums; }
.gameday-card__kickoff::before { content: "⏱ "; }
.gameday-card__line { color: var(--c-accent); font-weight: 700;
  font-variant-numeric: tabular-nums; }
.gameday-card__route { margin-top: var(--sp-sm); }
.gameday-card__route .btn { width: 100%; }
@media (min-width: 640px) {
  .gameday-card__route .btn { width: auto; }
}

/* ---- matchup-card: head-to-head panel ---- */
.matchup-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: var(--sp);
  margin-bottom: var(--sp); box-shadow: var(--shadow);
}
.matchup-card__vs { color: var(--c-warn); font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; }
.matchup-card__team { font-weight: 700; color: var(--c-ink); }
.matchup-card__odds { color: var(--c-accent); font-weight: 700;
  font-variant-numeric: tabular-nums; }

/* ---- futures-standings-table: futures board (odds ladder) ---- */
.futures-standings-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--sp); }
.futures-standings-table table,
table.futures-standings-table { border: 1px solid var(--c-line); width: 100%; min-width: 480px; border-collapse: collapse; }
.futures-standings-table thead th {
  background: var(--c-brand-dk); color: var(--c-ink);
  text-transform: uppercase; letter-spacing: .05em; font-size: .78rem;
  border-bottom: 2px solid var(--c-accent);
}
.futures-standings-table td { font-variant-numeric: tabular-nums; }
.futures-standings-table tbody tr:nth-child(even) td { background: var(--c-bg-soft); }
.futures-standings-table tbody tr:first-child td { color: var(--c-accent); font-weight: 700; }

/* ==========================================================================
   SHELL BRIDGE (2026-07-27) — dark skin inside a light theme shell.
   GeneratePress emits body{background-color:var(--base-3);color:var(--contrast)}
   and colors .entry-content / .inside-article from its own palette (--contrast
   #222 on --base-3 #fff). Our body rule wins the background but NOT the nested
   content colors, which left dark theme text on the dark surface = unreadable.
   Claim the theme's content containers so surface and ink travel together.
   !important is scoped to beating the theme's generated color block only.
   ========================================================================== */
body,
.site-content, .content-area, .inside-article, .entry-content, .page-content {
  background-color: var(--an-page) !important;
  color: var(--c-ink) !important;
}
.entry-content p, .entry-content li, .entry-content dt, .entry-content dd,
.entry-content span, .entry-content strong, .entry-content em,
.entry-content blockquote, .entry-content figcaption { color: inherit; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5 { color: var(--c-ink); }
/* editorial links stay volt; CTA/aff buttons keep their own skin colors */
.entry-content a:not(.btn):not(.aff):not([class*="book-row"]) { color: var(--c-accent); }
.entry-content a:not(.btn):not(.aff):hover { color: #fff; }
/* tables/cards inherit their component surfaces, not the theme's white */
.entry-content table { background: transparent; color: inherit; }
.entry-content td, .entry-content th { color: inherit; }


/* ===== style:football/autzen-hotpink/tokens.css: design-library\football\autzen-hotpink\tokens.css ===== */
/* ==========================================================================
   football / autzen-hotpink — TOKENS
   autzen-night EXACTLY as-is (spruce/volt dark scorebug identity untouched)
   + ONE wild interruption color: hot neon magenta-pink (#ff6fae) owned
   EXCLUSIVELY by conversion moments (CTAs, rank-badge--top, cta-band action,
   bonus code chip). Volt remains the EDITORIAL accent everywhere else.
   ========================================================================== */
:root {
  --c-brand:      #2e6b52;   /* PNW spruce green (brand chrome, links) */
  --c-brand-dk:   #1c4636;   /* deep forest — table heads, dark panels  */
  --c-accent:     #d3f341;   /* volt scorebug — EDITORIAL accent only   */
  --c-accent-dk:  #a8c722;
  --c-warn:       #ff5c39;   /* hot ember — urgency / warn CTAs         */
  --c-ink:        #eef2ec;   /* floodlight white                        */
  --c-muted:      #97a29a;
  --c-line:       #33393b;
  --c-line-soft:  #24292b;
  --c-bg:         #16191b;   /* charcoal turf (card surface)            */
  --c-bg-soft:    #1e2325;
  --c-good:       #58d68d;
  --c-bad:        #ff6b6b;

  --font: "Barlow", "Segoe UI", Roboto, system-ui, sans-serif;
  --radius: 3px; --radius-sm: 2px;

  /* floodlight glow instead of daylight drop-shadow */
  --shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 30px rgba(0,0,0,.55);

  /* CONVERSION color: the flare. Dark ink on pink (≈6.0:1); white fails 4.5 */
  --cta-gradient: linear-gradient(to bottom, #ff8fc0, #ff4791);

  /* skin-local knobs */
  --an-page:  #0e1112;                 /* page behind the cards          */
  --an-volt-glow: 0 0 14px rgba(211,243,65,.35);
  --an-hash: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 34px);

  --ahp-pink:      #ff6fae;            /* the interruption color         */
  --ahp-pink-dk:   #ff4791;
  --ahp-pink-ink:  #1a060f;            /* dark ink on pink               */
  --ahp-pink-glow: 0 0 16px rgba(255,111,174,.45);
}
