:root {
  --bg: #0d1117;
  --panel: #161b22;
  --panel-2: #1c2330;
  --border: #2a313c;
  --text: #e6edf3;
  --muted: #8b97a6;
  --accent: #5bc8ef;       /* glacier blue */
  --accent-dim: #1f6e94;
  --strong: #5bc8ef;
  --lean: #d8a126;
  --split: #6b7686;
  --link: #58a6ff;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
.wrap { max-width: 940px; margin: 0 auto; padding: 0 20px; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: var(--muted); }

/* header */
.site-header { border-bottom: 1px solid var(--border); background: var(--panel); position: sticky; top: 0; z-index: 5; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; flex-wrap: wrap; }
.brand {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
}
.brand:hover { text-decoration: none; }
.logo-mark { flex-shrink: 0; }
.brand-accent { color: var(--accent); }
.nav { display: flex; gap: 18px; font-size: .92rem; }
.nav a { color: var(--muted); }
.nav a.active, .nav a:hover { color: var(--text); text-decoration: none; }

.age-strip {
  font-size: .8rem; color: var(--muted); padding: 8px 20px;
  border-bottom: 1px solid var(--border); background: #11151c;
}
.age-strip strong { color: var(--lean); }

main.wrap { padding-top: 26px; padding-bottom: 50px; min-height: 60vh; }

/* page head */
.page-head h1 { margin: 0 0 4px; font-size: 1.7rem; }
.tagline { margin: 0 0 6px; color: var(--accent); font-size: 1rem; font-weight: 600; }
.slate-meta { margin: 0 0 22px; color: var(--muted); font-size: .92rem; }
.crumb { margin: 0 0 6px; font-size: .85rem; }
.at { color: var(--muted); }

/* Freezy's Picks of the Day */
.potd { margin: 0 0 26px; }
.potd-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.potd-head h2 { margin: 0; font-size: 1.25rem; }
.potd-lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lane-title { margin: 0 0 10px; font-size: .95rem; font-weight: 650; }
.lane-title .muted { font-weight: 400; font-size: .82rem; }
.potd-cards { display: grid; gap: 10px; }
.potd-card {
  display: block; background: var(--panel); border: 1px solid var(--accent-dim);
  border-radius: 10px; padding: 12px 14px; color: var(--text);
}
.potd-card:hover { text-decoration: none; border-color: var(--accent); }
.potd-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.potd-card-top .tip-time { margin-left: auto; }
.potd-match { font-weight: 650; font-size: 1rem; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.potd-pick { font-size: .95rem; }
.potd-meta { color: var(--muted); font-size: .82rem; font-family: var(--mono); margin-top: 4px; }
.potd-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 0 0 10px; }
.potd-tab {
  background: var(--panel); color: var(--muted); border: 1px solid var(--border);
  border-radius: 16px; padding: 3px 11px; font-size: .76rem; font-weight: 600;
  cursor: pointer; transition: color .12s, border-color .12s, background .12s;
}
.potd-tab:hover { color: var(--text); border-color: var(--accent-dim); }
.potd-tab.active { background: rgba(91,200,239,.14); color: var(--accent); border-color: var(--accent-dim); }
.potd-cards[hidden] { display: none; }
.potd-lane[data-your-board] { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.potd-lane[data-your-board] .lane-title { margin-top: 0; }
.board-empty { color: var(--muted); font-size: .88rem; margin: 4px 0; }
.board-foot { font-size: .76rem; margin: 12px 0 0; }
.board-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text);
}
.board-row:last-child { border-bottom: none; }
.board-row:hover { text-decoration: none; }
.board-row:hover .board-match { color: var(--accent); }
.board-match { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 5px; }
.board-pick { font-family: var(--mono); font-size: .8rem; }
.board-meta { color: var(--muted); font-size: .76rem; font-family: var(--mono); margin-left: auto; }

/* follow stars */
.follow-star {
  cursor: pointer; color: var(--muted); font-size: .95rem; line-height: 1;
  padding: 0 2px; margin-left: 1px; user-select: none; transition: color .12s, transform .12s;
}
.follow-star:hover { color: var(--accent); transform: scale(1.15); }
.follow-star.on { color: var(--accent); }

@media (max-width: 720px) {
  .potd-lanes { grid-template-columns: 1fr; }
}

/* sport tabs */
.sport-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; }
.sport-tab {
  background: var(--panel); color: var(--muted); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 16px; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: color .12s, border-color .12s, background .12s;
}
.sport-tab:hover { color: var(--text); border-color: var(--accent-dim); }
.sport-tab.active {
  background: rgba(91,200,239,.14); color: var(--accent); border-color: var(--accent-dim);
}

/* Props tip strip (replaces the old props gate — a gentle, optional Ko-fi nudge) */
.props-tip {
  display: flex; align-items: center; gap: 10px; margin: 0 0 16px;
  background: rgba(91,200,239,.08); border: 1px solid var(--accent-dim);
  border-radius: 10px; padding: 10px 14px; color: var(--text);
  font-size: .9rem; text-decoration: none;
}
.props-tip:hover { border-color: var(--accent); background: rgba(91,200,239,.13); }
.props-tip strong { color: var(--accent); }
.props-tip-fish { font-size: 1.15rem; line-height: 1; }

/* cards */
.cards { display: grid; gap: 12px; }
.game-card {
  display: block; background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; color: var(--text);
  transition: border-color .15s, transform .15s;
}
a.game-card:hover { border-color: var(--accent-dim); text-decoration: none; transform: translateY(-1px); }
.game-card.static { cursor: default; }
.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.league-chip {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; color: var(--muted);
  border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px;
}
.matchup { font-weight: 650; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.team-logo { width: 20px; height: 20px; object-fit: contain; }
.team-logo.lg { width: 32px; height: 32px; }
.matchup-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tip-time { margin-left: auto; color: var(--muted); font-size: .82rem; font-family: var(--mono); }

.picks-row { display: grid; gap: 8px; }
.pick { display: flex; align-items: center; gap: 10px; font-size: .9rem; flex-wrap: wrap; }
.pick-market { font-family: var(--mono); font-size: .76rem; color: var(--muted); width: 34px; }
.pick-side { font-weight: 700; font-family: var(--mono); }
.pick-detail { color: var(--muted); font-size: .82rem; }
.quant { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.quant > span {
  font-family: var(--mono); font-size: .72rem; padding: 1px 7px;
  border-radius: 10px; border: 1px solid var(--border); color: var(--muted);
  background: #10141b; white-space: nowrap;
}
.q-edge.pos { color: var(--strong); border-color: var(--accent-dim); }
.q-edge.neg { color: #c97b6d; border-color: #57352f; }

/* tiers */
.tier {
  font-size: .7rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}
.tier-strong { background: rgba(91,200,239,.16); color: var(--strong); border: 1px solid var(--accent-dim); }
.tier-lean { background: rgba(216,161,38,.14); color: var(--lean); border: 1px solid #6b5410; }
.tier-split { background: rgba(107,118,134,.14); color: var(--split); border: 1px solid var(--border); }

.legend { color: var(--muted); font-size: .82rem; margin-top: 22px; }
.legend.small { font-size: .78rem; }
.legend .tier { margin: 0 2px; }
.empty { color: var(--muted); padding: 20px 0; }
.empty.note { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-top: 14px; }
.prop-empty { color: var(--muted); font-size: .85rem; font-style: italic; }
/* collapsible per-game prop windows */
details.prop-window { padding: 0; }
.prop-summary {
  list-style: none; cursor: pointer; padding: 14px 16px; margin: 0;
  user-select: none;
}
.prop-summary::-webkit-details-marker { display: none; }
.prop-summary .acc-icon {
  margin-left: 4px; color: var(--muted); transition: transform .15s;
  font-size: .8rem;
}
details.prop-window[open] .prop-summary .acc-icon { transform: rotate(180deg); }
details.prop-window[open] .prop-summary { border-bottom: 1px solid var(--border); }
.prop-summary:hover .matchup { color: var(--accent); }
.prop-meta { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.q-edge.inline { padding: 0 4px; font-size: .72rem; }
details.prop-window > .props-table { padding: 0; }
details.prop-window .props-table td:first-child { padding-left: 16px; }
details.prop-window .props-table td:last-child { padding-right: 16px; }

.props-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.props-table td { padding: 6px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.props-table tr:last-child td { border-bottom: none; }
.prop-player { font-weight: 650; white-space: nowrap; }
.prop-text { color: var(--text); }
.prop-quant { text-align: right; }
@media (max-width: 720px) {
  .props-table td { display: block; border-bottom: none; padding: 2px 0; }
  .props-table tr { display: block; border-bottom: 1px solid var(--border); padding: 8px 0; }
  .prop-quant { text-align: left; }
}

/* gate */
.gated { position: relative; }
/* blur only the gated CONTENT, never the overlay (the overlay is a child of
   .gated, so without :not() it would be blurred and unclickable too) */
.gated.locked > *:not(.gate-overlay) { filter: blur(7px); pointer-events: none; user-select: none; }
.gate-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 40px; z-index: 3;
}
.gate-card {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 26px 28px; max-width: 420px; text-align: center; box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.gate-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.gate-card p { margin: 0 0 18px; color: var(--muted); font-size: .9rem; }
.gate-btn {
  background: var(--accent); color: #06222e; border: none; border-radius: 8px;
  font-size: .98rem; font-weight: 700; padding: 12px 22px; cursor: pointer; width: 100%;
}
.gate-btn:hover { background: #83d8f4; }
.gate-btn:disabled { opacity: .7; cursor: default; }
.gate-fine { margin-top: 14px !important; font-size: .74rem !important; }
.gate-form { display: flex; gap: 8px; }
.gate-email {
  flex: 1; min-width: 0; background: #10141b; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); padding: 11px 12px; font-size: .95rem;
}
.gate-email:focus { outline: none; border-color: var(--accent-dim); }
.gate-email.invalid { border-color: #c97b6d; }
.gate-form .gate-btn { width: auto; white-space: nowrap; }

/* props ad-or-account gate */
.gate-card.propgate { max-width: 480px; text-align: left; }
.propgate-perks { font-size: .86rem; color: var(--muted); margin: 0 0 10px; }
.propgate-perks strong { color: var(--text); }
.propgate .account-form { display: flex; gap: 8px; }
.propgate .account-form .gate-btn { width: auto; white-space: nowrap; }
.propgate-divider { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .78rem; margin: 16px 0; }
.propgate-divider::before, .propgate-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.propgate-ad { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.propgate-ad .gate-btn { width: auto; }
.propgate-ad .muted { font-size: .82rem; }
.gate-btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent-dim); }
.gate-btn.ghost:hover { background: rgba(91,200,239,.1); }
.propgate-adblock {
  font-size: .82rem; color: var(--lean); background: rgba(216,161,38,.08);
  border: 1px solid #6b5410; border-radius: 8px; padding: 8px 10px; margin: 0 0 10px;
}
.propgate-adblock strong { color: var(--text); }
.gate-sim-note { margin-top: 10px; font-size: .68rem; color: #5b6776; }

/* tables */
.record-table, .layer-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.record-table th, .record-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); text-align: left; }
.record-table th { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
.record-table .num { text-align: right; font-family: var(--mono); }
.small-flag { color: var(--lean); font-size: .68rem; }

/* track-record headline (our own published-pick record) */
.record-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin: 0 0 8px; }
.hero-stat { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.hero-stat.primary { border-color: var(--accent-dim); background: rgba(91,200,239,.06); }
.hero-label { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .03em; }
.hero-num { font-size: 1.5rem; font-weight: 700; font-family: var(--mono); display: flex; align-items: baseline; gap: 8px; }
.hero-pct { color: var(--muted); }
.hero-pct.pos { color: var(--strong); }
.hero-pct.neg { color: #c97b6d; }
.hero-unit { font-size: .85rem; color: var(--muted); font-weight: 400; }
.hero-n { color: var(--muted); font-size: .76rem; }
.hero-note { margin-top: 8px !important; margin-bottom: 18px !important; }

.honesty {
  background: rgba(216,161,38,.08); border: 1px solid #6b5410; border-radius: 10px;
  padding: 14px 16px; font-size: .88rem; margin-bottom: 20px;
}
.honesty strong { color: var(--lean); }

/* game detail layers */
.layers { display: grid; gap: 16px; }
.layer-block { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
.layer-block h2 { margin: 0 0 10px; font-size: 1.05rem; }
.layer-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.layer-side { font-weight: 700; font-family: var(--mono); font-size: 1.05rem; }
.layer-score { margin-left: auto; color: var(--muted); font-size: .82rem; font-family: var(--mono); }
.layer-table td { padding: 7px 10px; border-bottom: 1px solid var(--border); }
.layer-table td:first-child { color: var(--muted); width: 180px; font-size: .82rem; }
.layer-detail { margin: 12px 0 0; color: var(--muted); font-size: .84rem; }

/* prose */
.prose { font-size: .95rem; }
.prose h2 { font-size: 1.15rem; margin: 26px 0 8px; }
.prose ol, .prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.disclaimer-body h2 { font-size: 1.1rem; }
.disclaimer-body hr { border: none; border-top: 1px solid var(--border); margin: 22px 0; }
.disclaimer-body em { color: var(--muted); }

/* display ad slots — dashed placeholders in dev; AdSense units replace contents
   in production. Rails only appear when the viewport is wide enough that they
   never overlap the 940px content column. */
.ad-slot {
  border: 1px dashed var(--border); border-radius: 8px; background: #10141b;
  display: flex; align-items: center; justify-content: center;
  color: #4a5563; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
}
.ad-rail { display: none; position: fixed; top: 110px; width: 160px; height: 600px; z-index: 1; }
@media (min-width: 1340px) {
  .ad-rail { display: flex; }
  .ad-rail.left  { left:  calc(50% - 470px - 184px); }
  .ad-rail.right { right: calc(50% - 470px - 184px); }
}
.ad-inline { width: 100%; max-width: 728px; min-height: 90px; margin: 28px auto 4px; }

/* responsive (mobile groundwork for the PWA/app) */
@media (max-width: 720px) {
  .header-inner { height: auto; padding: 10px 0; gap: 4px; }
  .nav { flex-wrap: wrap; gap: 10px 14px; padding-bottom: 4px; }
  .page-head h1 { font-size: 1.4rem; }
  .card-top { flex-wrap: wrap; }
  .tip-time { margin-left: 0; flex-basis: 100%; }
  .pick { gap: 8px; }
  .pick-detail { flex-basis: 100%; padding-left: 44px; }
  .layer-table td:first-child { width: 110px; }
  .record-table th, .record-table td { padding: 7px 6px; font-size: .82rem; }
}

/* ad-block notice banner */
.adblock-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--panel-2); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0,0,0,.45);
}
.adblock-inner {
  max-width: 940px; margin: 0 auto; padding: 14px 20px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.adblock-inner p { margin: 0; font-size: .88rem; flex: 1 1 360px; }
.adblock-actions { display: flex; gap: 10px; }
.adblock-recheck {
  background: var(--accent); color: #06222e; border: none; border-radius: 7px;
  font-weight: 700; padding: 9px 14px; cursor: pointer; font-size: .85rem;
}
.adblock-recheck:hover { background: #83d8f4; }
.adblock-dismiss {
  background: transparent; color: var(--muted); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 14px; cursor: pointer; font-size: .85rem;
}
.adblock-dismiss:hover { color: var(--text); }

/* free-account card */
.account-card {
  background: var(--panel); border: 1px solid var(--accent-dim); border-radius: 12px;
  padding: 16px 18px; margin: 0 0 20px;
}
.account-head { display: flex; align-items: center; gap: 12px; }
.account-head strong { display: block; font-size: 1rem; }
.account-head .muted { font-size: .85rem; }
.account-perks { margin: 12px 0 14px; padding-left: 20px; font-size: .88rem; }
.account-perks li { margin: 4px 0; }
.account-perks em { color: var(--muted); font-style: normal; font-size: .78rem; }
.account-form { display: flex; gap: 8px; max-width: 460px; }
.account-form .gate-btn { width: auto; white-space: nowrap; }
.account-card.account-done { border-color: var(--border); }

/* FreezySim block */
.sim-block { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-top: 18px; }
.sim-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.sim-head h2 { margin: 0; font-size: 1.05rem; }
.sim-runs { margin-left: auto; color: var(--muted); font-size: .78rem; font-family: var(--mono); }
.sim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.sim-stat { display: flex; flex-direction: column; gap: 2px; }
.sim-label { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .03em; }
.sim-val { font-size: .95rem; font-weight: 600; }
.sim-dist { margin-top: 16px; }
.dist-bars { display: flex; align-items: flex-end; gap: 3px; height: 90px; margin-top: 8px; }
.dist-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.dist-fill { width: 100%; background: var(--accent-dim); border-radius: 2px 2px 0 0; min-height: 1px; }
.dist-col:hover .dist-fill { background: var(--accent); }
.dist-tick { color: var(--muted); font-size: .6rem; margin-top: 3px; font-family: var(--mono); }

/* tip jar */
.tip-card {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 18px; margin-top: 26px;
}
.tip-copy { flex: 1 1 280px; display: flex; flex-direction: column; gap: 2px; font-size: .88rem; }
.tip-copy span { color: var(--muted); }
.tip-btn {
  background: var(--accent); color: #06222e; border-radius: 8px; font-weight: 700;
  font-size: .9rem; padding: 10px 16px; white-space: nowrap;
}
.tip-btn:hover { background: #83d8f4; text-decoration: none; }

/* Learn / articles */
.learn-cat { font-size: 1.05rem; margin: 26px 0 12px; color: var(--text); }
.learn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.learn-card {
  display: flex; flex-direction: column; gap: 4px; background: var(--panel);
  border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; color: var(--text);
}
.learn-card:hover { border-color: var(--accent-dim); text-decoration: none; }
.learn-card strong { font-size: .98rem; }
.learn-card .muted { font-size: .83rem; }
.article { max-width: 720px; }
.article-cat {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.article h1 { margin-top: 4px; }
.article h2 { font-size: 1.15rem; margin: 24px 0 8px; }
.article p, .article li { font-size: .96rem; }
.article hr { border: none; border-top: 1px solid var(--border); margin: 24px 0 14px; }
.legal-body h2 { font-size: 1.12rem; margin-top: 22px; }
.legal-body h3 { font-size: 1rem; margin-top: 16px; }

/* cookie consent */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--panel-2); border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 12px 20px; font-size: .82rem; color: var(--muted);
  box-shadow: 0 -8px 24px rgba(0,0,0,.4);
}
.consent-bar span { flex: 1 1 320px; }
.consent-btn {
  background: var(--accent); color: #06222e; border: none; border-radius: 7px;
  font-weight: 700; font-size: .82rem; padding: 8px 16px; cursor: pointer;
}
.consent-btn:hover { background: #83d8f4; }

/* footer */
.site-footer { border-top: 1px solid var(--border); background: var(--panel); padding: 22px 0; margin-top: 30px; }
.disclaimer-short { font-size: .8rem; color: var(--muted); margin: 0 0 10px; }
.foot-links { font-size: .8rem; margin: 0; }
.foot-links .muted { display: inline-block; }
