/* BallKnowMe NCAAF — sportsbook cockpit theme.
   Ported from mlb-dashboard's production bkm.css (the LIVE mlb.ballknowme.com
   look): Saira grotesque sans, near-black radial ground, amber accent, flat
   gradient panels, transparent dense tables with tabular numerals. Replaces the
   old editorial-terminal serif/glass layer that was cloned by mistake. */

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

:root {
    /* surfaces (near-black → panel steps; depth from fill, not shadow) */
    --bg:        #090b0f;
    --bg2:       #0c0f14;
    --panel:     #12151c;
    --panel2:    #171b23;
    --panel3:    #1e2430;
    /* hairlines */
    --line:      #242a35;
    --line-soft: #1a1f28;
    /* ink */
    --text:      #f3f5f9;
    --text2:     #98a1b1;
    --text3:     #626c7d;
    /* semantic — color only ever encodes meaning */
    --pos:       #2fd27a;
    --pos-soft:  rgba(47, 210, 122, 0.14);
    --neg:       #ff5b62;
    --neg-soft:  rgba(255, 91, 98, 0.14);
    --acc:       #ffb020;              /* brand + confidence gold */
    --acc-dim:   rgba(255, 176, 32, 0.14);
    --acc-line:  rgba(255, 176, 32, 0.50);
    /* type — one grotesque family, hierarchy from weight/size/mute */
    --font:      "Saira", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background-color: var(--bg); }
html::before {
    content: ''; position: fixed; inset: 0; z-index: -2;
    background: radial-gradient(1200px 600px at 70% -10%, #10151d 0%, var(--bg) 55%);
}

body {
    margin: 0; background: transparent; color: var(--text);
    font-family: var(--font); font-size: 0.9rem; line-height: 1.5; letter-spacing: 0.005em;
    min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1; width: min(1240px, 100% - 2rem); margin: 0 auto; padding: 18px 0 64px; }
.tnum, table, .hero-stat .num { font-variant-numeric: tabular-nums; }

/* ── masthead / nav ─────────────────────────────────────────────────────── */
.site-header {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 12px 22px;
    background: linear-gradient(180deg, rgba(18, 21, 28, 0.95), rgba(9, 11, 15, 0.9));
    border-bottom: 1px solid var(--line);
}
.site-header h1 {
    font-family: var(--font); font-weight: 800; font-size: 17px;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin: 0;
}
.site-header h1 .bk-b2 { color: var(--acc); }
.site-tagline {
    font-family: var(--font); font-size: 11px; font-weight: 600; color: var(--text3);
    text-transform: none; letter-spacing: 0.02em; margin-left: 8px;
}
.site-header nav { display: flex; gap: 15px; align-items: center; margin-left: 6px; }
.site-header nav a {
    color: var(--text2); text-decoration: none; font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em; padding: 5px 2px; background: none; border-radius: 0;
    transition: color 0.12s;
}
.site-header nav a:hover { color: var(--text); }
.site-header nav a.active { color: var(--acc); background: none; }

/* ── sections / cards ───────────────────────────────────────────────────── */
section, .dashboard-section {
    background: linear-gradient(180deg, var(--panel), var(--bg2));
    border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.8);
    padding: 16px 18px; margin: 18px 0;
}
.dashboard-section > h2:first-child, section > h2:first-child {
    font-family: var(--font); font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
    color: var(--text); margin: 0 0 10px; text-transform: none;
}
.card, .metric-card {
    background: var(--panel2); border: 1px solid var(--line);
    border-radius: 11px; padding: 13px 14px;
}
.card:hover { border-color: var(--acc-line); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 860px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── hero stats ─────────────────────────────────────────────────────────── */
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: var(--font); font-size: 2.1rem; font-weight: 800; line-height: 1.1;
    color: var(--text);
}
.hero-stat .num.gold { color: var(--acc); }
.hero-stat .label {
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text3);
    font-weight: 700; margin-top: 2px;
}

/* ── tables ─────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: transparent; font-family: var(--font); }
thead th {
    background: transparent; color: var(--text3);
    font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    text-align: left; padding: 8px 9px; border-bottom: 1px solid var(--line);
    white-space: nowrap;
}
tbody td {
    font-family: var(--font); font-variant-numeric: tabular-nums; font-size: 12.5px;
    color: var(--text); padding: 7px 9px; border-bottom: 1px solid var(--line-soft);
    white-space: nowrap;
}
tbody td:first-child { color: var(--text); font-weight: 600; }
tbody tr:hover td { background: rgba(255, 255, 255, 0.03); }
td a, .team-link { color: var(--text); text-decoration: none; font-weight: 600; }
td a:hover, .team-link:hover { color: var(--acc); }

/* ── chips / badges / pills ─────────────────────────────────────────────── */
.chip {
    display: inline-block; padding: 0.1rem 0.45rem; border: 1px solid var(--line);
    border-radius: 6px; font-family: var(--font); font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--text2);
    font-variant-numeric: tabular-nums;
}
.chip.fbs { color: var(--acc); border-color: var(--acc-line); }
.chip.fcs { color: var(--text2); }
.chip.pos, .positive-diff { color: var(--pos); }
.chip.neg, .negative-diff { color: var(--neg); }
.badge-gold {
    display: inline-block; background: var(--acc); color: #14100a;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.14rem 0.5rem; border-radius: 6px;
}
/* The honesty note above the board. Muted, but not hidden in the fine print —
   it carries the backtest verdict, so it reads at body size. */
.disclosure {
    color: var(--text2); border-left: 2px solid var(--line);
    padding: 0.1rem 0 0.1rem 0.75rem; margin-top: 0.6rem;
}
.disclosure strong { color: var(--text); }

/* The book's de-vigged number sits quieter than ours — it's the reference, not
   the claim — but same size, because hiding the comparison is the whole sin. */
.book-p { color: var(--text2); }

/* A model LEAN is not a result — so it is deliberately NEUTRAL, never green.
   Green (--pos) means a pick WON; nothing on this board has an outcome yet, and
   the model has no proven edge (see ncaaf-ml/reports/MARKET_BACKTEST_2026-07-15.md).
   Painting leans green asserted a win we hadn't earned. Do not re-add a green
   lean chip; when grading exists, .result-win / .result-loss carry the colour. */
.lean-badge {
    display: inline-block; background: var(--panel3); border: 1px solid var(--line);
    color: var(--text); font-family: var(--font); font-weight: 700; font-size: 0.72rem;
    padding: 0.12rem 0.5rem; border-radius: 6px; font-variant-numeric: tabular-nums;
}
.result-win { background: var(--pos-soft); color: var(--pos); }
.result-loss { background: var(--neg-soft); color: var(--neg); }

/* Schedule: small conference tag + marquee (power-conference) marker. The amber
   dot is wayfinding — "this is a top-tier game" — which is the one job amber is
   allowed to do (top tier / where you are), never a data value. */
.conf-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--text3); }
.marquee-dot { color: var(--acc); font-size: 10px; vertical-align: 1px; }

/* ── Matchup tab: feed cards + deep-dive ─────────────────────────────────── */
.mu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; margin-top: 8px; }
.mu-card { display: block; background: var(--panel2); border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; text-decoration: none; transition: border-color 0.12s; }
.mu-card:hover { border-color: var(--acc-line); }
.mu-card-head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.mu-date { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text3); }
.mu-teams { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; color: var(--text); font-weight: 700; font-size: 13.5px; line-height: 1.35; }
.mu-at { color: var(--text3); font-weight: 600; }
.mu-proj { margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.mu-proj-sep { color: var(--text3); }
.mu-score { margin-top: 3px; font-size: 11px; color: var(--text2); font-variant-numeric: tabular-nums; }
.mu-teamsmall { color: var(--text3); }
.mu-venue { margin-top: 7px; font-size: 10.5px; color: var(--text3); }
.mu-noproj { color: var(--text3); font-weight: 600; }

.mu-back { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text2); text-decoration: none; margin-bottom: 6px; }
.mu-back:hover { color: var(--acc); }
.mu-detail-sub { color: var(--text3); font-size: 12px; margin-top: 2px; }
.mu-headline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
@media (max-width: 640px) { .mu-headline { grid-template-columns: repeat(2, 1fr); } }
.mu-hl-item { background: var(--panel2); border: 1px solid var(--line); border-radius: 11px; padding: 12px; text-align: center; }
.mu-hl-num { font-size: 1.7rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; line-height: 1.05; }
.mu-hl-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); font-weight: 700; margin-top: 4px; }
.mu-edges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
@media (max-width: 560px) { .mu-edges { grid-template-columns: 1fr; } }
.mu-edge { background: var(--panel2); border: 1px solid var(--line); border-radius: 11px; padding: 10px 12px; }
.mu-edge-label { font-size: 11px; color: var(--text2); font-weight: 600; }
.mu-edge-val { font-size: 1.2rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; margin-top: 3px; }

/* ── Betting board (/board) — MLB /matchups/preview layout, CFB data ──────── */
.bk-board { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 14px; align-items: start; }
@media (max-width: 900px) { .bk-board { grid-template-columns: 1fr; } .bk-rail { order: 2; } }

.bk-rail { position: sticky; top: 10px; display: flex; flex-direction: column; gap: 4px; max-height: calc(100vh - 20px); overflow-y: auto; }
.rail-h { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); padding: 2px 2px 4px; }
.slate-card { display: block; background: var(--panel2); border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; text-decoration: none; transition: border-color 0.12s; }
.slate-card:hover { border-color: var(--acc-line); }
.sc-row { display: flex; align-items: baseline; gap: 6px; color: var(--text); font-weight: 700; font-size: 12.5px; }
.sc-at { color: var(--text3); font-weight: 600; font-size: 11px; }
.sc-line { font-size: 10.5px; color: var(--text2); font-variant-numeric: tabular-nums; margin-top: 2px; }

.pickstrip-h { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: 0.02em; }
.pickstrip-rec { font-size: 11px; font-weight: 700; color: var(--text3); font-variant-numeric: tabular-nums; }
.pickrow { display: flex; flex-wrap: wrap; gap: 8px; }
.pick-card { flex: 1 1 150px; min-width: 150px; background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; text-decoration: none; transition: border-color 0.12s; }
.pick-card:hover { border-color: var(--acc-line); }
.pc-fav { font-size: 13px; font-weight: 800; color: var(--text); line-height: 1.2; }
.pc-line { font-size: 12px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; margin-top: 3px; }
.pc-opp { font-size: 10.5px; color: var(--text3); margin-top: 2px; }

.panels-h { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); margin: 16px 0 8px; }
.gpanel { background: linear-gradient(180deg, var(--panel), var(--bg2)); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; margin-bottom: 12px; scroll-margin-top: 14px; }
.gpanel-head { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.gp-team { min-width: 0; }
.gp-home { text-align: right; }
.gp-name { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.2; }
.gp-sub { font-size: 11px; color: var(--text3); font-variant-numeric: tabular-nums; margin-top: 2px; }
.gp-mid { text-align: center; white-space: nowrap; }
.gp-line { font-size: 13px; font-weight: 800; color: var(--text); }
.gp-score { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.gp-ou { font-size: 11px; color: var(--text2); font-variant-numeric: tabular-nums; }
.gp-when { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.gp-strip { margin-top: 10px; padding: 6px 10px; background: var(--panel2); border: 1px solid var(--line); border-radius: 8px; font-size: 11.5px; color: var(--text2); font-variant-numeric: tabular-nums; }
.gp-strip-l { font-weight: 700; color: var(--text3); text-transform: uppercase; font-size: 10px; letter-spacing: 0.06em; margin-right: 4px; }
.gp-note { color: var(--text3); font-size: 10px; font-style: italic; margin-left: 6px; }
.gp-body { margin-top: 10px; }
.gp-edges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 560px) { .gp-edges { grid-template-columns: 1fr; } .gpanel-head { grid-template-columns: 1fr; text-align: left; } .gp-home { text-align: left; } }
.gp-edge { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; background: var(--panel2); border: 1px solid var(--line); border-radius: 8px; padding: 7px 10px; }
.gp-edge span { font-size: 11px; color: var(--text2); }
.gp-edge b { font-size: 13px; color: var(--text); font-variant-numeric: tabular-nums; }
.gp-sit { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; font-size: 11px; color: var(--text2); }
.gp-sit-i { color: var(--text); }
.gp-more { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text2); text-decoration: none; }
.gp-more:hover { color: var(--acc); }

/* ── buttons / filter pills ─────────────────────────────────────────────── */
.window-btn, .filter-btn {
    display: inline-block; font-family: var(--font); font-size: 11.5px; font-weight: 700;
    color: var(--text2); background: var(--panel2); border: 1px solid var(--line);
    border-radius: 7px; padding: 4px 9px; text-decoration: none; cursor: pointer;
    transition: 0.12s;
}
.window-btn:hover, .filter-btn:hover { color: var(--text); }
.window-btn.active, .filter-btn.active { background: var(--acc-dim); color: var(--acc); border-color: var(--acc); }
.filter-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.9rem; }

/* ── link-chip grid (team browser) ──────────────────────────────────────── */
.team-link-grid { display: flex; flex-wrap: wrap; gap: 7px; }
a.team-link-chip {
    position: relative; display: block; padding: 6px 1.6rem 6px 11px;
    background: var(--panel2); border: 1px solid var(--line); border-radius: 8px;
    font-family: var(--font); font-size: 12.5px; font-weight: 600; color: var(--text2);
    text-decoration: none; transition: border-color 0.12s, color 0.12s;
}
a.team-link-chip::after {
    content: '→'; position: absolute; right: 0.6rem; top: 50%; transform: translate(-4px, -50%);
    opacity: 0; color: var(--acc); transition: all 0.15s ease;
}
a.team-link-chip:hover { border-color: var(--acc-line); color: var(--text); }
a.team-link-chip:hover::after { opacity: 1; transform: translate(0, -50%); }
a.team-link-chip .sub {
    display: block; font-family: var(--font); font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-top: 0.15rem;
}

/* ── footer ─────────────────────────────────────────────────────────────── */
footer {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    width: min(1240px, 100% - 2rem); margin: 0 auto; padding: 0.9rem 0 1.2rem;
    border-top: 1px solid var(--line); color: var(--text3); font-size: 0.75rem;
}
.data-freshness strong { color: var(--acc); font-weight: 700; }

/* ── mobile: tables → stacked label/value cards ─────────────────────────── */
@media (max-width: 640px) {
    table.stack thead { display: none; }
    table.stack tbody tr {
        display: block; border: 1px solid var(--line-soft); border-radius: 11px;
        margin-bottom: 0.6rem; padding: 0.4rem 0.6rem; background: var(--panel2);
    }
    table.stack tbody td {
        display: flex; justify-content: space-between; gap: 1rem;
        border: none; padding: 0.18rem 0; white-space: normal;
    }
    table.stack tbody td::before {
        content: attr(data-label); font-family: var(--font); font-size: 0.62rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3);
        align-self: center;
    }
}

footer a { color: var(--text2); text-decoration: none; border-bottom: 1px solid var(--line); }
footer a:hover { color: var(--acc); border-bottom-color: var(--acc-line); }
.data-sources { color: var(--text3); }

/* ---- Field-diagram matchup card ---- */
.fld-card { }
.fld-h2h {
    text-align: center; font-size: 13px; font-weight: 700; color: var(--text);
    padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--line-soft);
}
.fld-series {
    display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text3); margin-right: 6px;
}
.fld-series-since { color: var(--text3); font-weight: 600; font-size: 11.5px; }
.fld-tile {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center;
    padding: 14px 0 4px;
}
.fld-team { min-width: 0; }
.fld-team.away { text-align: right; }
.fld-team-name {
    font-family: var(--font); font-weight: 800; font-size: 15px; color: var(--text);
    letter-spacing: -0.01em; line-height: 1.2;
}
.fld-coach { font-size: 11.5px; color: var(--text2); font-weight: 600; margin-top: 3px; }
.fld-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.fld-team.away .fld-chips { justify-content: flex-end; }
.fld-chip {
    font-size: 10.5px; font-weight: 700; color: var(--text2);
    background: var(--panel2); border: 1px solid var(--line); border-radius: 999px;
    padding: 3px 9px; white-space: nowrap;
}
.fld-chip.dual { color: #e8b64c; border-color: #4a3d1c; background: #1c1810; }
.fld-field { display: flex; flex-direction: column; align-items: center; }
.fld-def-name, .fld-off-name {
    font-size: 11px; font-weight: 700; color: var(--text2); letter-spacing: 0.02em;
    text-align: center; margin: 2px 0;
}
.fld-svg { width: 300px; max-width: 78vw; height: auto; display: block; }
.fld-svg .fld-pos { font-family: var(--font); font-size: 8.5px; font-weight: 800; fill: #f3f5f9; pointer-events: none; }
.fld-svg .fld-zone { font-family: var(--font); font-size: 9px; font-weight: 800; letter-spacing: 0.22em; fill: #ffffff; fill-opacity: 0.13; }
.fld-flip {
    margin-top: 8px; font-family: var(--font); font-size: 11.5px; font-weight: 700;
    color: var(--text2); background: var(--panel2); border: 1px solid var(--line);
    border-radius: 8px; padding: 5px 12px; cursor: pointer;
}
.fld-flip:hover { color: var(--text); border-color: var(--text3); }
.fld-legend { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px; }
.fld-leg-label { font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); }
.fld-leg-bar {
    width: 120px; height: 8px; border-radius: 4px;
    background: linear-gradient(90deg, #c04a4a 0%, #2f3644 50%, #2fa866 100%);
    border: 1px solid var(--line);
}
.fld-leg-ends { font-size: 10.5px; color: var(--text3); font-weight: 600; }

@media (max-width: 640px) {
    .fld-tile { grid-template-columns: 1fr; gap: 10px; }
    .fld-team.away { text-align: left; order: 3; }
    .fld-team.home { order: 4; }
    .fld-team.away .fld-chips { justify-content: flex-start; }
    .fld-field { order: 1; }
}

/* ---- Record page ---- */
.rec-empty {
    background: var(--panel2); border: 1px solid var(--line); border-radius: 12px;
    padding: 14px 16px; margin-bottom: 14px;
}
.rec-empty-head {
    font-family: var(--font); font-weight: 800; font-size: 15px; color: var(--text);
    margin-bottom: 6px;
}
.rec-empty p { margin: 0; color: var(--text2); font-size: 13px; line-height: 1.55; }
.rec-muted { color: var(--text3); }
/* outcome colours — the ONE place green is allowed, because these ARE outcomes */
.rec-win  { color: #2fa866; font-weight: 700; }
.rec-loss { color: #c04a4a; font-weight: 700; }
.rec-push, .rec-void { color: var(--text3); font-weight: 700; }

/* non-D1 opponents (no ESPN division): muted, never styled like a real tier */
.chip.unknown { color: var(--text3); border-color: var(--line-soft); }

/* ---- Player ratings ---- */
.pl-filters { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 10px 0 12px; }
.pl-chip {
    font-size: 11.5px; font-weight: 700; color: var(--text2); text-decoration: none;
    background: var(--panel2); border: 1px solid var(--line); border-radius: 999px;
    padding: 4px 11px;
}
.pl-chip:hover { color: var(--text); border-color: var(--text3); }
.pl-chip.on { color: var(--bg); background: var(--amber, #e8b64c); border-color: transparent; }
.pl-sep { width: 1px; height: 18px; background: var(--line); margin: 0 4px; }
.rt-sub { font-family: var(--font); font-size: 13px; font-weight: 800; color: var(--text2);
          letter-spacing: 0.02em; margin: 14px 0 6px; }

/* ---- Schedule: kickoff stacked, venue demoted under the matchup ---- */
.sc-when { white-space: nowrap; font-variant-numeric: tabular-nums; }
.sc-when .sc-time { display: block; font-size: 11px; color: var(--text3); font-weight: 600; }
.sc-venue { display: block; font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ---- Matchups: our number beside the market's ---- */
.gp-mkt {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    padding: 9px 12px; margin: 8px 0 0;
    background: var(--panel2); border: 1px solid var(--line); border-radius: 11px;
}
.gp-mkt-col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gp-mkt-l {
    font-size: 9.5px; font-weight: 800; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--text3);
}
.gp-mkt-col .tnum { font-size: 12.5px; font-weight: 700; color: var(--text); }
@media (max-width: 640px) { .gp-mkt { grid-template-columns: 1fr; gap: 6px; } }
.view-toggle { float: right; display: inline-flex; gap: 5px; }
/* All-games view: the rail would repeat the table, so the table gets the width */
.bk-board-wide { grid-template-columns: minmax(0, 1fr); }
.hm-go { font-size: 10.5px; font-weight: 700; color: var(--text3); margin-left: 8px; white-space: nowrap; }
.hm-go:hover { color: var(--text); }
.hm-more { float: right; font-size: 12px; font-weight: 700; }
