/* Modern Upscale Unification design system ("DC" — from the claude.ai/design
   project). The video page is the first adopter; other pages migrate one by
   one. Tokens + header live here, page-specific classes are prefixed (vp-). */

:root {
  --dc-bg: #EDEBE4;
  --dc-ink: #14130F;
  --dc-body-ink: #3A362E;
  --dc-muted: #6E6A60;
  --dc-faint: #A29C8F;
  --dc-hair: #DAD5CA;
  --dc-hair2: #F0ECE3;
  --dc-card-bd: rgba(20, 19, 15, .10);
  --dc-panel: #FAF9F5;
  --dc-paper: #F7F5F0;
  --dc-night: #0B0B0E;
  --dc-gold: #C7A24A;
  --dc-mint: #6EE7B7;
  --dc-green: #0A9E5F;
  --dc-green-ink: #0A6E4C;
  --dc-green-bg: #EAF6EF;
  --dc-green-bd: #C4E7D5;
  --dc-red: #B0432B;
  --dc-red-bg: #FBEDE8;
  --dc-red-bd: #F2D5CB;
  --dc-purple: #7C3AED;
  --dc-blue: #2563EB;
  --dc-blue-bg: #EAF1FF;
  --f-disp: 'Anton', sans-serif;
  --f-head: 'Archivo', sans-serif;
  --f-body: 'Hanken Grotesk', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

body.dc {
  margin: 0;
  background: var(--dc-bg);
  color: var(--dc-ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------- header */
.dc-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 11, 14, .92);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.dc-head-in {
  max-width: 1080px; margin: 0 auto; padding: 0 24px; height: 60px;
  display: flex; align-items: center; gap: 22px;
}
.dc-brand { display: flex; align-items: center; text-decoration: none; }
.dc-brand img { height: 34px; width: auto; display: block; }
.dc-nav { display: flex; gap: 2px; }
.dc-nav a {
  padding: 7px 13px; border-radius: 8px; font-size: 13.5px; font-weight: 500;
  text-decoration: none; color: rgba(247, 245, 240, .7);
}
.dc-nav a:hover { color: #F7F5F0; }
.dc-nav a.on { font-weight: 600; color: #0B0B0E; background: var(--dc-mint); }
.dc-head-r { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.dc-toggle { display: flex; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; padding: 3px; }
.dc-fmt {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  color: rgba(247, 245, 240, .6); background: transparent;
  padding: 5px 12px; border-radius: 999px; border: none; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.dc-fmt i { font-style: normal; font-weight: 700; color: var(--dc-gold); }
.dc-fmt:hover:not(.on) { color: #F7F5F0; }
.dc-fmt.on { color: #0B0B0E; background: var(--dc-mint); }
.dc-fmt.on i { color: #0A6E4C; }
/* region dropdown (header) — element+class selectors so these beat the generic
   light-page .dc-dd summary / .dd-menu rules further down the sheet */
.dc-regdd { position: relative; }
details.dc-regdd summary {
  list-style: none; display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: rgba(247, 245, 240, .9); background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 5px 12px;
  box-shadow: none; transition: border-color .15s ease;
}
details.dc-regdd summary::-webkit-details-marker { display: none; }
details.dc-regdd summary .flag { font-size: 14px; line-height: 1; }
details.dc-regdd summary svg { opacity: .55; }
details.dc-regdd summary:hover, details.dc-regdd[open] summary { border-color: rgba(110, 231, 183, .55); }
details.dc-regdd .dd-menu {
  position: absolute; left: auto; right: 0; top: calc(100% + 8px); z-index: 80;
  width: auto; min-width: 160px; max-height: none;
  background: #101013; border: 1px solid rgba(255, 255, 255, .13); border-radius: 13px;
  padding: 6px; box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.dc-regdd .dd-opt {
  display: flex; align-items: center; gap: 9px; width: 100%; text-align: left;
  background: none; border: none; border-radius: 8px; padding: 8px 10px;
  font-family: var(--f-mono); font-size: 11px; color: rgba(247, 245, 240, .85); cursor: pointer;
}
.dc-regdd .dd-opt .flag { font-size: 14px; line-height: 1; }
.dc-regdd .dd-opt:hover { background: rgba(255, 255, 255, .07); }
.dc-regdd .dd-opt.on { background: var(--dc-mint); color: #0B0B0E; font-weight: 700; }

/* account entry (header) — signed-out mint pill / signed-in initial-less avatar chip */
.dc-signin { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .5px; color: #0B0B0E; background: var(--dc-mint); border: 1px solid var(--dc-mint); border-radius: 999px; padding: 5px 12px; text-decoration: none; white-space: nowrap; transition: background .15s ease; }
.dc-signin:hover { background: #5CDCA8; border-color: #5CDCA8; }
.dc-acct { width: 30px; height: 30px; flex: none; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: #0B0B0E; background: var(--dc-mint); box-shadow: 0 0 0 2px rgba(110, 231, 183, .3); text-decoration: none; transition: box-shadow .15s ease; }
.dc-acct:hover { box-shadow: 0 0 0 3px rgba(110, 231, 183, .5); }

.dc-main { max-width: 920px; margin: 0 auto; padding: 18px 24px 80px; }

.dc-demo {
  font-family: var(--f-mono); font-size: 11px; color: #7A5A12;
  background: #FFF7E0; border: 1px solid #F0DFAE; border-radius: 10px;
  padding: 8px 12px; margin-bottom: 14px;
}
.dc-demo code { font-family: var(--f-mono); }

.dc-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; color: var(--dc-muted);
  text-decoration: none; margin-bottom: 14px;
}
.dc-back:hover { color: var(--dc-ink); }

/* ---------------------------------------------------------------- video hero */
.vp-hero { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; margin-bottom: 16px; }
.vp-player {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9;
  background: radial-gradient(120% 140% at 80% -20%, rgba(199, 162, 74, .28), transparent 55%),
              linear-gradient(135deg, #1C1C22, #0B0B0E);
  box-shadow: 0 16px 40px rgba(20, 18, 12, .2);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.vp-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vp-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vp-tag {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-family: var(--f-mono); font-size: 10px; color: rgba(247, 245, 240, .75);
  background: rgba(0, 0, 0, .45); padding: 4px 9px; border-radius: 999px;
}
.vp-play {
  width: 60px; height: 60px; border-radius: 50%; z-index: 2;
  background: rgba(247, 245, 240, .95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
  transition: transform .15s ease;
}
.vp-player:hover .vp-play { transform: scale(1.06); }
.vp-num {
  position: absolute; bottom: 12px; right: 14px; z-index: 2;
  font-family: var(--f-disp); font-size: 26px; color: rgba(199, 162, 74, .9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.vp-meta { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.vp-title {
  font-family: var(--f-head); font-weight: 800; font-size: 19px; line-height: 1.25;
  letter-spacing: -.01em; margin: 0 0 12px;
}
.vp-ch { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dc-ink); margin-bottom: 12px; }
.vp-ch-av {
  position: relative; width: 38px; height: 38px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(150deg, #13372A, #0A1611); color: var(--dc-mint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-size: 15px;
}
.vp-ch-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vp-ch-name { display: block; font-family: var(--f-head); font-weight: 700; font-size: 14px; }
.vp-ch-name:hover { text-decoration: underline; }
.vp-ch-sub { font-size: 11px; color: var(--dc-faint); }
.vp-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.vp-chip {
  font-family: var(--f-mono); font-size: 10px; color: var(--dc-muted);
  background: #fff; border: 1px solid var(--dc-card-bd); padding: 5px 10px; border-radius: 999px;
}
.vp-chip.grn { color: var(--dc-green-ink); background: var(--dc-green-bg); border-color: var(--dc-green-bd); }
.vp-chip.red { color: var(--dc-red); background: var(--dc-red-bg); border-color: var(--dc-red-bd); }
.vp-chip.blue { color: var(--dc-blue); background: var(--dc-blue-bg); border-color: #CFE0FB; }

/* ---------------------------------------------------------------- section rule */
.vp-rule { display: flex; align-items: center; gap: 10px; margin: 22px 0 14px; }
.vp-rule-t { font-family: var(--f-disp); font-size: 20px; text-transform: uppercase; letter-spacing: .01em; }
.vp-rule-line { flex: 1; height: 1px; background: var(--dc-hair); }
.vp-rule-note { font-family: var(--f-mono); font-size: 10px; color: #86806F; text-align: right; }

/* ---------------------------------------------------------------- pick cards */
.vp-list { display: flex; flex-direction: column; gap: 11px; }
.vp-pick {
  display: grid; grid-template-columns: 1fr 204px; gap: 20px; align-items: stretch;
  background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04);
}
.vp-left { min-width: 0; display: flex; flex-direction: column; gap: 11px; justify-content: center; }
.vp-row { display: flex; align-items: center; gap: 10px; min-width: 0; flex-wrap: wrap; }
.vp-face {
  position: relative; width: 34px; height: 34px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(150deg, #2A2A30, #121216); color: #F7F5F0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 700; font-size: 12px;
}
.vp-face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.vp-name { font-family: var(--f-head); font-weight: 700; font-size: 15px; white-space: nowrap; }
.vp-vs { font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-faint); white-space: nowrap; }
.vp-kind {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--dc-faint);
}
.vp-kind.prop { color: var(--dc-purple); }
.vp-val {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: .5px;
  color: #0B0B0E; background: var(--dc-mint); padding: 3px 9px; border-radius: 999px;
}
.vp-res {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 9px; border-radius: 999px;
}
.vp-res.w { color: var(--dc-green-ink); background: var(--dc-green-bg); border: 1px solid var(--dc-green-bd); }
.vp-res.l { color: var(--dc-red); background: var(--dc-red-bg); border: 1px solid var(--dc-red-bd); }
.vp-ts {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  background: #14130F; color: #F7F5F0; padding: 6px 12px; border-radius: 999px;
  border: none; cursor: pointer; text-decoration: none;
}
.vp-ts span { font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; }
.vp-ts:hover { background: #2A2A30; }
.vp-ts.none { background: transparent; color: var(--dc-faint); cursor: default; }
.vp-quote { font-size: 13.5px; line-height: 1.6; color: var(--dc-body-ink); }
.vp-foot { display: flex; align-items: center; gap: 12px; }
.vp-iq { font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-muted); text-decoration: none; }
.vp-iq:hover { color: var(--dc-ink); text-decoration: underline; }

/* ---------------------------------------------------------------- line-since-pick panel */
.vp-panel {
  background: var(--dc-panel); border-radius: 12px; padding: 12px 14px;
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
}
.vp-panel-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.vp-panel-lab {
  font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--dc-faint);
}
.vp-clv { font-family: var(--f-mono); font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 6px; white-space: nowrap; }
.vp-clv.up { color: var(--dc-green-ink); background: var(--dc-green-bg); }
.vp-clv.dn { color: var(--dc-red); background: var(--dc-red-bg); }
.vp-clv.flat { color: var(--dc-muted); background: #EFECE4; }
.vp-spark { width: 100%; height: 52px; display: block; overflow: visible; }
.vp-ends { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.vp-end { display: flex; flex-direction: column; gap: 1px; }
.vp-end.r { text-align: right; }
.vp-end-lab { font-family: var(--f-mono); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--dc-faint); }
.vp-end-lab.entry { color: var(--dc-gold); }
.vp-end-val { font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: var(--dc-ink); }
.vp-arrow { font-family: var(--f-mono); font-size: 10px; color: #C4BEB0; }
.vp-panel-note { font-family: var(--f-mono); font-size: 8.5px; color: var(--dc-faint); line-height: 1.6; }
.vp-panel-big { font-family: var(--f-mono); font-size: 17px; font-weight: 700; color: var(--dc-ink); }

.vp-none {
  font-family: var(--f-mono); font-size: 11px; color: var(--dc-muted);
  background: #fff; border: 1px dashed var(--dc-hair); border-radius: 16px;
  padding: 26px; text-align: center;
}

/* ================================================================ board page */
.vb-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }

/* event-switcher dropdown */
.dc-dd { position: relative; }
.dc-dd summary {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; list-style: none;
  background: #fff; border: 1px solid rgba(20, 19, 15, .12); border-radius: 11px;
  padding: 9px 13px; box-shadow: 0 1px 2px rgba(16, 16, 20, .05);
}
.dc-dd summary::-webkit-details-marker { display: none; }
.dc-dd summary::marker { content: ""; }
.dd-name { font-family: var(--f-head); font-weight: 700; font-size: 14px; white-space: nowrap; }
.dd-sub { font-size: 12px; color: #86806F; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px; }
.dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 30; width: 378px;
  background: #fff; border: 1px solid rgba(20, 19, 15, .12); border-radius: 14px;
  box-shadow: 0 20px 50px rgba(20, 18, 12, .18); padding: 7px; max-height: 430px; overflow: auto;
}
.dd-cap { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--dc-faint); padding: 8px 9px 6px; }
.dd-row { display: flex; align-items: center; gap: 11px; padding: 8px 9px; border-radius: 9px; text-decoration: none; color: var(--dc-ink); }
.dd-row:hover { background: #F6F4EE; }
.dd-row.cur { background: var(--dc-green-bg); }
.dd-poster { width: 38px; height: 52px; flex-shrink: 0; border-radius: 6px; background: linear-gradient(135deg, #1C1C22, #0B0B0E); overflow: hidden; }
.dd-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dd-title { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd-row.cur .dd-title { font-weight: 700; }
.dd-title i { font-style: normal; font-size: 9.5px; color: var(--dc-green-ink); font-weight: 700; }
.dd-side { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.dd-up { font-family: var(--f-mono); font-size: 9px; font-weight: 700; color: var(--dc-blue); background: var(--dc-blue-bg); padding: 2px 7px; border-radius: 999px; }
.dd-units { font-family: var(--f-mono); font-size: 10px; font-weight: 700; color: var(--dc-green-ink); }
.dd-units.neg { color: var(--dc-red); }
.dd-date { font-size: 9px; color: var(--dc-faint); }

/* track-record trigger + panel */
.vb-tr { margin-left: auto; position: relative; }
.tr-btn {
  display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; cursor: pointer;
  background: linear-gradient(120deg, #15211B, #0E1511); color: #F7F5F0;
  border: 1px solid rgba(110, 231, 183, .18); border-radius: 11px; padding: 8px 14px;
  font-family: var(--f-body); box-shadow: 0 2px 8px rgba(12, 23, 18, .18);
}
.tr-cap { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, .5); }
.tr-mini { width: 44px; height: 16px; display: block; overflow: visible; }
.tr-units { font-family: var(--f-disp); font-size: 16px; color: var(--dc-mint); }
.tr-sep { width: 1px; height: 16px; background: rgba(255, 255, 255, .15); }
.tr-hit { font-family: var(--f-mono); font-size: 12px; font-weight: 600; }
.tr-caret { font-size: 11px; color: rgba(247, 245, 240, .5); transition: transform .18s; }
.vb-tr.open .tr-caret { transform: rotate(180deg); }
.tr-panel {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; width: min(408px, calc(100vw - 28px));
  background: linear-gradient(160deg, #141B16, #0C110D); border: 1px solid rgba(110, 231, 183, .16);
  border-radius: 18px; box-shadow: 0 30px 70px rgba(8, 14, 10, .5); padding: 18px 18px 16px; color: #F7F5F0;
}
.trp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.trp-t { font-family: var(--f-disp); font-size: 17px; text-transform: uppercase; letter-spacing: .01em; }
.trp-ranges { display: flex; gap: 3px; background: rgba(255, 255, 255, .07); border-radius: 9px; padding: 3px; }
.trp-ranges button { font-family: var(--f-mono); font-size: 10px; font-weight: 700; cursor: pointer; border: none; padding: 5px 9px; border-radius: 6px; background: transparent; color: rgba(247, 245, 240, .55); }
.trp-ranges button.on { background: var(--dc-mint); color: #0B0B0E; }
.trp-cards { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.trp-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; padding: 11px 13px; }
.trp-card.mint { background: rgba(110, 231, 183, .10); border-color: rgba(110, 231, 183, .25); }
.trp-lab { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, .45); margin-bottom: 5px; }
.trp-card.mint .trp-lab { color: var(--dc-mint); }
.trp-val { font-family: var(--f-disp); font-size: 27px; line-height: 1; }
.trp-card.mint .trp-val { color: var(--dc-mint); }
.trp-axis { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, .4); }
.trp-chart { width: 100%; height: 116px; display: block; overflow: visible; }
.trp-dates { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 14px; font-family: var(--f-mono); font-size: 9px; color: rgba(247, 245, 240, .4); }
.trp-form { display: flex; align-items: center; gap: 10px; padding: 11px 13px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); border-radius: 12px; }
.trp-form-lab { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, .45); }
.trp-sq { display: flex; gap: 4px; margin-left: auto; }
.trp-sq span { width: 14px; height: 14px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 7.5px; font-weight: 700; }
.trp-sq .w { background: rgba(110, 231, 183, .9); color: #0B0B0E; }
.trp-sq .l { background: rgba(176, 67, 43, .55); color: #F7F5F0; }
.trp-cta { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; padding: 11px; border-radius: 10px; background: var(--dc-mint); color: #0B0B0E; text-decoration: none; font-family: var(--f-head); font-weight: 700; font-size: 13px; }
.trp-alt { display: block; text-align: center; margin-top: 8px; font-family: var(--f-mono); font-size: 10px; color: rgba(247, 245, 240, .55); text-decoration: none; }
.trp-alt:hover { color: #F7F5F0; }
.trp-empty { font-family: var(--f-mono); font-size: 11px; color: rgba(247, 245, 240, .55); padding: 8px 0 4px; line-height: 1.7; }

/* hero */
.vb-heroblock { border-radius: 22px; overflow: hidden; box-shadow: 0 1px 2px rgba(16, 16, 20, .05), 0 30px 70px rgba(20, 18, 12, .14); margin-bottom: 22px; }
.vb-stage { position: relative; height: 440px; overflow: hidden; background: radial-gradient(120% 90% at 50% 8%, #1C1C22 0%, #0B0B0E 60%, #060608 100%); }
.vb-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 50% 122%, rgba(199, 162, 74, .16), transparent 70%); }
/* Fighter art hugs the outer edges (per the mock) and never reaches the centre.
   Our source images are mostly square headshots rather than full-length
   cutouts, so each fills the full stage height (cover, head-up) with the inner
   edge fading into the stage. (.r is mirrored, so the element's local right
   edge is its inner edge in both cases.) */
.vb-cut {
  position: absolute; top: 0; bottom: -4px; height: calc(100% + 4px); width: 38%;
  object-fit: cover; object-position: center top;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55)); z-index: 2;
  -webkit-mask-image: linear-gradient(to right, #000 62%, transparent 98%);
  mask-image: linear-gradient(to right, #000 62%, transparent 98%);
}
.vb-cut.l { left: 0; }
.vb-cut.r { right: 0; transform: scaleX(-1); }
.vb-toprow { position: absolute; top: 20px; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 26px; z-index: 5; }
.vb-when { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(247, 245, 240, .6); }
.vb-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px; color: rgba(247, 245, 240, .7); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); padding: 5px 11px; border-radius: 999px; text-transform: uppercase; }
.vb-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; }
.vb-live.done { color: rgba(247, 245, 240, .55); }
.vb-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 4; pointer-events: none; }
.vb-kicker { font-family: var(--f-mono); font-size: 11px; letter-spacing: 5px; color: var(--dc-gold); text-transform: uppercase; }
.vb-names { margin-top: 14px; text-shadow: 0 4px 24px rgba(0, 0, 0, .5); }
.vb-nm { font-family: var(--f-disp); font-size: 66px; line-height: .9; letter-spacing: .005em; text-transform: uppercase; color: #F7F5F0; }
.vb-nm.long { font-size: 46px; }
.vb-vs { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 9px 0; }
.vb-vs span { width: 46px; height: 1px; background: rgba(199, 162, 74, .45); }
.vb-vs b { font-family: var(--f-mono); font-size: 13px; font-weight: 700; letter-spacing: 5px; color: var(--dc-gold); }
.vb-callbar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; display: flex; align-items: center; gap: 14px; padding: 14px 26px; background: linear-gradient(to top, rgba(6, 6, 8, .94), rgba(6, 6, 8, .55) 70%, transparent); }
.vb-call-lab { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(247, 245, 240, .55); }
.vb-call-pick { font-family: var(--f-head); font-weight: 800; font-size: 17px; color: #F7F5F0; }
.vb-call-pick .mint { font-family: var(--f-mono); font-weight: 700; color: var(--dc-mint); margin-left: 6px; }
.vb-call-pick i { font-style: normal; font-size: 12px; color: rgba(247, 245, 240, .6); }
.vb-call-badge { margin-left: auto; font-family: var(--f-mono); font-weight: 700; font-size: 18px; color: #0B0B0E; background: var(--dc-mint); padding: 6px 12px; border-radius: 9px; white-space: nowrap; }
.vb-call-badge.dim { background: rgba(255, 255, 255, .12); color: rgba(247, 245, 240, .75); font-size: 12px; }
.vb-call-badge.miss { background: var(--dc-red); color: #fff; }
.vb-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: #14130F; color: #F7F5F0; }
.vb-cell { padding: 16px 24px; }
.vb-cell + .vb-cell { border-left: 1px solid rgba(255, 255, 255, .09); }
.vb-cell-lab { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.5px; color: rgba(247, 245, 240, .5); text-transform: uppercase; }
.vb-cell-val { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.vb-cell-val .big { font-family: var(--f-disp); font-size: 36px; line-height: .85; }
.vb-cell-val .big.mint { color: var(--dc-mint); }
.vb-cell-val .big.gold { color: var(--dc-gold); }
.vb-cell-val .big.red { color: #E0655E; }
.vb-cell-val .big.dim { color: rgba(247, 245, 240, .4); }
.vb-cell-val .note { font-size: 11px; color: rgba(247, 245, 240, .4); }
.vb-star { font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dc-faint); margin: 0 0 12px; }

/* ---------------------------------------------------------------- premium gating (soft gold) */
/* Calm, flat antique gold — NOT metallic. gold #B99B5A · ink #8A6D2B · cream #FBF6EA · border #E7DABA */
/* The padlock is a plain line icon (no filled box), so nothing reads gaudy. */
.glock { display: inline-grid; place-content: center; vertical-align: middle; color: #B99B5A; }
.glock svg { display: block; }

/* hero — locked edge badge */
.vb-call-badge.locked { display: inline-flex; align-items: center; gap: 7px; color: #8A6D2B; background: #FBF6EA; border: 1px solid #E7DABA; }

/* summary strip — biggest edge locked (muted gold, legible on the dark strip) */
.vb-cell-val .big.gold { color: #CDB06B; }
.vb-cell-val .big.gold .glock { color: #CDB06B; margin-right: 4px; }

/* board unlock CTA bar — one calm cream panel, one dark button (the single Pro CTA) */
.vb-unlock { display: flex; align-items: center; gap: 13px; background: #FBF6EA; border: 1px solid #E7DABA; border-radius: 14px; padding: 14px 17px; text-decoration: none; margin: 0 0 8px; }
.vb-unlock-lock { flex: none; }
.vb-unlock-lock .glock { color: #B99B5A; }
.vb-unlock-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.vb-unlock-txt b { font-family: var(--f-head); font-weight: 800; font-size: 14px; color: var(--dc-ink); letter-spacing: -.1px; }
.vb-unlock-txt i { font-family: var(--f-body); font-style: normal; font-size: 12px; line-height: 1.4; color: var(--dc-muted); }
.vb-unlock-cta { flex: none; margin-left: auto; font-family: var(--f-head); font-weight: 700; font-size: 13px; color: #F7F5F0; background: #14130F; border: 1px solid #14130F; border-radius: 10px; padding: 9px 16px; white-space: nowrap; }
.vb-unlock-cta:hover { background: #262019; }
.vb-unlock-free { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; color: var(--dc-muted); text-decoration: none; margin: 0 0 14px 2px; }
.vb-unlock-free .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--dc-mint); }
.vb-unlock-free:hover { color: var(--dc-ink); }

/* locked featured — quiet caption line, NO button (the bar above is the only CTA) */
.vb-lockfeat { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: #A08A55; margin: 2px 0 12px; }
.vb-lockfeat .glock { color: #B99B5A; }
.vb-lockfeat b { color: #8A6D2B; font-weight: 700; }
.vb-lockfeat i { font-style: normal; font-family: var(--f-body); font-size: 11.5px; letter-spacing: .2px; text-transform: none; color: var(--dc-faint); }

/* locked table rows — calm cream tint */
.vb-row.locked { border-color: #EDE3C8; background: #FCFAF3; }
.vb-row.locked:hover { background: #FBF6EA; }
.vb-td-pick.lock, .vb-td-edge.lock { color: #B99B5A; display: inline-flex; align-items: center; }
.vb-td-pick.lock .glock, .vb-td-edge.lock .glock, .vb-lockprice .glock { color: #B99B5A; }
.vb-lockprice { font-style: normal; }

/* locked leaderboard podium — cream card, soft-gold lock, flat medals */
.lbp.locked { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; text-align: center; min-height: 200px; border-radius: 18px; border: 1px solid #E7DABA; background: #FBF6EA; text-decoration: none; padding: 20px; transition: border-color .15s ease; }
.lbp.locked:hover { border-color: #CDB06B; }
.lbp-lockmedal { width: 30px; height: 30px; border-radius: 99px; display: grid; place-content: center; font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: #fff; }
.lbp-lockmedal.gold { background: #C7A24A; }
.lbp-lockmedal.silver { background: #AFAFAF; }
.lbp-lockmedal.bronze { background: #B67B45; }
.lbp-locklock .glock { color: #B99B5A; }
.lbp-lockt { font-family: var(--f-head); font-weight: 800; font-size: 14px; color: var(--dc-ink); }
.lbp-locks { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .5px; text-transform: uppercase; color: #A08A55; }
.lbp-unlock { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--f-head); font-weight: 700; font-size: 13.5px; color: #F7F5F0; background: #14130F; border: 1px solid #14130F; border-radius: 12px; padding: 12px 18px; text-decoration: none; margin: 4px 0 6px; }
.lbp-unlock:hover { background: #262019; }
.lbp-unlock .glock { color: #CDB06B; }

/* locked leaderboard rows */
.lb-row.locked { background: #FCFAF3; border-color: #EDE3C8; }
.lb-row.locked .vp-ch-av.lock { background: #F5ECD4; color: #B99B5A; display: grid; place-content: center; }
.lb-row.locked .vp-ch-av.lock .glock { color: #B99B5A; }
.lb-row.locked .lb-ch-name { color: #8A6D2B; }
.lb-roi.lock, .lb-hit.lock, .lb-metric.lock, .lb-picks.lock { color: #C2A968; display: inline-flex; align-items: center; justify-content: flex-end; }
.lb-roi.lock .glock { color: #C2A968; }

/* Fight IQ — locked edge (non-Pro): dark poster chip + calm locked panels.
   Reuses .glock and the .vb-unlock bar; new bits lean on shared tokens so they
   read correctly against either gating palette. */
.fi-lockhero .fe-card { gap: 11px; }
.fi-lockedge { display: inline-flex; align-items: center; gap: 10px; margin-top: 2px; padding: 10px 14px; border-radius: 11px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); }
.fi-lockedge-txt { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.fi-lockedge-txt b { font-family: var(--f-head); font-weight: 800; font-size: 13px; color: #F3EFE6; letter-spacing: -.1px; }
.fi-lockedge-txt i { font-style: normal; font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(234, 243, 238, .5); }

/* locked model-read panels — "what the numbers say" / deep research */
.fi-lockpanel { display: flex; align-items: center; gap: 11px; padding: 7px 0 3px; }
.fi-lockpanel .glock { flex: none; }
.fi-lockpanel-txt b { display: block; font-family: var(--f-head); font-weight: 800; font-size: 13px; color: var(--dc-ink); }
.fi-lockpanel-txt i { font-style: normal; font-family: var(--f-body); font-size: 11.5px; line-height: 1.4; color: var(--dc-muted); }

/* locked recommendation — the .fi-rec shell with a padlock + one Pro CTA */
.fi-rec-title .glock { margin-right: 5px; vertical-align: -3px; }
a.fi-rec-badge { text-decoration: none; }
a.fi-rec-badge:hover { filter: brightness(1.05); }

/* FightEdge poster card */
.fe { position: relative; display: flex; align-items: stretch; justify-content: center; min-height: 340px; border-radius: 20px; overflow: hidden; background: radial-gradient(130% 100% at 50% 0%, #20202A, #0A0A0D 66%); box-shadow: 0 16px 40px rgba(12, 23, 18, .3); text-decoration: none; margin-bottom: 12px; }
.fe.on::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 22% 120%, rgba(110, 231, 183, .16), transparent 60%); }
.fe-c { min-height: 214px; }
.fe-img {
  position: absolute; bottom: 0; height: 340px; width: auto; max-width: 42%;
  object-fit: contain; object-position: left bottom; z-index: 1;
  -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 100%);
  mask-image: linear-gradient(to right, #000 70%, transparent 100%);
}
.fe-c .fe-img { height: 214px; }
.fe-img.pick { left: 4.5%; filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .5)); }
.fe-img.pick.grey { filter: grayscale(1) brightness(.6); opacity: .66; }
.fe-img.opp { right: 4.5%; transform: scaleX(-1); filter: grayscale(1) brightness(.6); opacity: .62; z-index: 0; }
/* Mixed art (one full-length cutout + one headshot, flagged by dc.js):
   crop both to matching bust panels so the two sides read at the same scale. */
.fe-uni .fe-img { height: 100%; width: 32%; max-width: 32%; object-fit: cover; object-position: center top; }
.fe-mono { position: absolute; bottom: 34px; font-family: var(--f-disp); font-size: 96px; line-height: 1; }
.fe-c .fe-mono { font-size: 64px; }
.fe-mono.pick { left: 24px; color: rgba(110, 231, 183, .12); }
.fe-mono.opp { right: 24px; color: rgba(255, 255, 255, .05); }
.fe-card { position: relative; z-index: 3; align-self: center; width: 320px; max-width: 80%; margin: 16px 0; background: rgba(10, 10, 13, .8); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; padding: 24px 26px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 13px; color: #EAF3EE; box-shadow: 0 20px 44px rgba(0, 0, 0, .46); }
.fe-c .fe-card { width: 270px; padding: 15px 18px 16px; gap: 9px; }
.fe-region { font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(234, 243, 238, .75); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); padding: 3px 11px; border-radius: 999px; }
.fe-eyebrow { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(234, 243, 238, .55); margin-bottom: 2px; }
.fe-eyebrow.mint { color: var(--dc-mint); }
.fe-name { display: block; font-family: var(--f-disp); font-size: 30px; text-transform: uppercase; line-height: .95; color: #fff; }
.fe-c .fe-name { font-size: 22px; }
.fe-sub { display: block; font-family: var(--f-mono); font-size: 10px; color: rgba(234, 243, 238, .45); margin-top: 3px; }
.fe-fair { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; color: rgba(234, 243, 238, .5); }
.fe-fair span { text-transform: uppercase; letter-spacing: 1px; }
.fe-fair b { font-size: 15px; font-weight: 700; color: rgba(234, 243, 238, .85); }
.fe-buy { width: 100%; border-top: 1px solid rgba(255, 255, 255, .10); padding-top: 13px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.fe-c .fe-buy { padding-top: 9px; gap: 6px; }
.fe-book { display: flex; align-items: center; gap: 9px; }
.fe-book img { height: 16px; width: auto; border-radius: 3px; }
.fe-book img.inv { filter: brightness(0) invert(1); border-radius: 0; }
.fe-bookname { font-family: var(--f-mono); font-size: 10px; color: rgba(234, 243, 238, .85); }
.fe-pays { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-mint); }
.fe-price { font-family: var(--f-disp); font-size: 60px; color: #fff; line-height: .82; }
.fe-c .fe-price { font-size: 42px; }
.fe-price.dim { color: rgba(234, 243, 238, .92); }
.fe-tag { font-family: var(--f-mono); font-size: 13px; font-weight: 800; color: #0B0B0E; background: var(--dc-mint); padding: 7px 16px; border-radius: 8px; }
.fe-tag.miss { background: var(--dc-red); color: #fff; }
.fe-tagwrap { position: relative; display: inline-flex; }
.fe-tag.fe-alt-btn { display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; padding: 6px 12px 6px 7px; }
.fe-tag-logo { width: 20px; height: 20px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.fe-tag-logo img { max-width: 13px; max-height: 13px; display: block; }
.fe-caret { font-style: normal; font-size: 9px; opacity: .65; }
.fe-alts {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); z-index: 40;
  min-width: 216px; background: rgba(10, 10, 13, .97); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px; padding: 7px; box-shadow: 0 18px 40px rgba(0, 0, 0, .5); text-align: left;
}
.fe-alts-cap { display: block; font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(234, 243, 238, .45); padding: 5px 9px 6px; }
.fe-alt { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 7px 9px; border-radius: 8px; }
.fe-alt:hover { background: rgba(255, 255, 255, .06); }
.fe-alt-book { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 10px; color: rgba(234, 243, 238, .8); white-space: nowrap; }
.fe-alt-book img { height: 14px; width: auto; border-radius: 3px; }
.fe-alt b { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: #fff; }
.fe-lab { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(234, 243, 238, .5); }
.fe-best { display: flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11px; color: rgba(234, 243, 238, .5); }
.fe-best b { color: rgba(234, 243, 238, .8); font-weight: 700; }
.fe-pass { font-family: var(--f-mono); font-size: 12px; font-weight: 800; letter-spacing: 1px; color: rgba(234, 243, 238, .7); background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); padding: 7px 16px; border-radius: 8px; }

/* segments */
.vb-seg { margin-bottom: 12px; }
.vb-seg summary { display: flex; align-items: center; gap: 10px; padding: 6px 4px 14px; cursor: pointer; list-style: none; }
.vb-seg summary::-webkit-details-marker { display: none; }
.vb-seg summary::marker { content: ""; }
.vb-seg-diamond { width: 7px; height: 7px; border-radius: 2px; background: #14130F; transform: rotate(45deg); }
.vb-seg-t { font-family: var(--f-disp); font-size: 20px; text-transform: uppercase; letter-spacing: .01em; }
.vb-seg-meta { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--dc-faint); }
.vb-seg-list { display: flex; flex-direction: column; }

/* full-card table */
/* overflow stays visible so the price-comparison panel can escape the card;
   first/last children carry the radius instead of a clipping container */
.vb-table { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.vb-table > :first-child { border-radius: 16px 16px 0 0; }
.vb-table > :last-child { border-radius: 0 0 16px 16px; }
.vb-th { display: grid; grid-template-columns: 78px 1fr 116px 68px 118px; gap: 10px; padding: 10px 18px; border-bottom: 1px solid var(--dc-hair2); font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--dc-faint); }
.vb-th .r { text-align: right; }
.vb-th .grn { color: var(--dc-green-ink); }
.vb-row { display: grid; grid-template-columns: 78px 1fr 116px 68px 118px; gap: 10px; padding: 13px 18px; align-items: center; text-decoration: none; color: var(--dc-ink); border-bottom: 1px solid var(--dc-hair2); background: #fff; }
.vb-row:last-child { border-bottom: none; }
.vb-row.strong { background: linear-gradient(100deg, rgba(14, 138, 95, .05), #fff 42%); }
.vb-row:hover { background: #FAF9F5; }
.vb-td-label { font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: .5px; color: var(--dc-muted); background: #EFECE4; border-radius: 5px; padding: 4px 0; text-align: center; }
.vb-td-match { min-width: 0; display: flex; align-items: center; gap: 10px; }
.vb-faces { display: inline-flex; flex-shrink: 0; }
.vb-face { position: relative; width: 26px; height: 26px; border-radius: 8px; overflow: hidden; background: linear-gradient(150deg, #2A2A30, #121216); color: #F7F5F0; display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 8.5px; box-shadow: 0 0 0 2px #fff; flex-shrink: 0; }
.vb-face + .vb-face { margin-left: -8px; }
.vb-face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.vb-mnames { min-width: 0; }
.vb-mnames b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vb-mnames i { font-style: normal; font-size: 10.5px; color: var(--dc-faint); }
.vb-td-pick { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vb-td-pick.strong { color: var(--dc-green-ink); font-weight: 600; }
.vb-td-pick.weak { color: #4A463C; font-weight: 600; }
.vb-td-pick.none { color: var(--dc-faint); }
.vb-td-edge { text-align: right; font-family: var(--f-mono); font-size: 12.5px; }
.vb-td-edge.strong { color: var(--dc-green-ink); font-weight: 700; }
.vb-td-edge.weak { color: var(--dc-faint); }
.vb-td-edge.none { color: #C4BEB0; }
.vb-td-price { text-align: right; font-family: var(--f-mono); font-size: 13px; color: #8A857A; display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.vb-td-price.strong { color: var(--dc-green-ink); font-weight: 700; }
/* price cell: best-price bookmaker chip + tap-to-compare panel */
.vb-pw { position: relative; display: inline-flex; }
.vb-price-btn { display: inline-flex; align-items: center; gap: 6px; font: inherit; color: inherit; background: transparent; border: 1px solid transparent; border-radius: 8px; padding: 4px 7px; margin: -4px -7px; cursor: pointer; }
.vb-row:hover .vb-price-btn { border-color: rgba(20, 19, 15, .14); background: #fff; }
.vb-bk { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 1px solid var(--dc-hair); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; font-style: normal; }
.vb-bk img { max-width: 12px; max-height: 12px; display: block; }
/* text mark for books without a local logo asset (Bet365 → B365) */
.bk-mono { font-family: var(--f-mono); font-style: normal; font-size: 6.5px; font-weight: 700; letter-spacing: .2px; color: var(--dc-muted); background: #fff; border: 1px solid var(--dc-hair); border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vb-bk.bk-mono { border: 1px solid var(--dc-hair); }
.fi-book-logo .bk-mono { width: 22px; height: 22px; font-size: 7px; }
.fi-book-logo .bk-mono.pm { color: #7C3AED; border-color: rgba(124, 58, 237, .35); background: #F4EEFF; }
/* settled-card result chips in the full-card table */
.vb-td-edge.res-win { color: var(--dc-green-ink); font-weight: 700; }
.vb-td-edge.res-loss { color: var(--dc-red); font-weight: 700; }
/* placeholder fighter art (tones baked into the asset) sits just below photography */
.vb-cut.ph, .fe-img.ph { opacity: .92; }
.vb-td-price .fe-caret { color: var(--dc-faint); }
.vb-alts { bottom: auto; top: calc(100% + 8px); left: auto; right: -4px; transform: none; }

/* top channels (settled cards) */
.vb-chans { display: flex; flex-direction: column; gap: 10px; }
.vb-chan { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 14px; padding: 12px 16px; text-decoration: none; color: var(--dc-ink); box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.vb-chan:hover { background: #FAF9F5; }
.vb-chan-rank { font-family: var(--f-disp); font-size: 18px; color: var(--dc-gold); width: 20px; text-align: center; }
.vb-chan-mid { flex: 1; min-width: 0; }
.vb-chan-mid b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 14px; }
.vb-chan-mid i { font-style: normal; font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); }
.vb-chan-acc { font-family: var(--f-mono); font-size: 15px; font-weight: 700; color: var(--dc-green-ink); }

/* ================================================================ fight iq */
.fi-cap { font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dc-faint); margin-bottom: 9px; }
.fi-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 18px; scrollbar-width: none; }
.fi-chips::-webkit-scrollbar { height: 0; }
.fi-chip { flex: 0 0 auto; display: flex; align-items: center; gap: 9px; text-align: left; cursor: pointer; padding: 7px 15px 7px 8px; border-radius: 12px; background: #fff; color: #4A463C; border: 1px solid rgba(20, 19, 15, .12); text-decoration: none; }
.fi-chip.on { background: #14130F; color: #F7F5F0; border-color: #14130F; }
.fi-chip-faces { display: flex; flex-shrink: 0; }
.fi-chip-face { position: relative; width: 27px; height: 27px; border-radius: 50%; overflow: hidden; background: linear-gradient(150deg, #2A2A30, #121216); color: #F7F5F0; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 9px; box-shadow: 0 0 0 2px #fff; }
.fi-chip.on .fi-chip-face { box-shadow: 0 0 0 2px #14130F; }
.fi-chip-face + .fi-chip-face { margin-left: -9px; }
.fi-chip-face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.fi-chip-txt { display: flex; flex-direction: column; gap: 1px; }
.fi-chip-txt b { font-family: var(--f-head); font-weight: 700; font-size: 12.5px; white-space: nowrap; }
.fi-chip-txt i { font-style: normal; font-family: var(--f-mono); font-size: 8.5px; opacity: .7; white-space: nowrap; }

.fi-card { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; padding: 18px 20px; margin-bottom: 14px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.fi-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fi-card-t { font-family: var(--f-disp); font-size: 15px; text-transform: uppercase; }
.fi-card-line { flex: 1; height: 1px; background: var(--dc-hair2); }
.fi-card-note { font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); }
.fi-empty { font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-faint); padding: 8px 0; }

.fi-book { display: grid; grid-template-columns: 34px 26px 1fr 64px 52px; gap: 10px; align-items: center; padding: 7px 2px; border-bottom: 1px solid #F5F1E9; }
.fi-book:last-child { border-bottom: none; }
.fi-book-code { font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--dc-muted); background: var(--dc-hair2); border-radius: 5px; padding: 4px 0; text-align: center; }
.fi-book-logo img { height: 16px; max-width: 26px; width: auto; border-radius: 4px; object-fit: contain; display: block; }
.fi-book-name { font-size: 12.5px; font-weight: 600; }
.fi-book-name i { font-style: normal; font-family: var(--f-mono); font-size: 9px; color: var(--dc-faint); margin-left: 5px; }
.fi-book-price { text-align: right; font-family: var(--f-mono); font-size: 14px; font-weight: 700; color: var(--dc-ink); }
.fi-book-ev { text-align: center; font-family: var(--f-mono); font-size: 11px; font-weight: 700; color: var(--dc-faint); background: var(--dc-hair2); border-radius: 6px; padding: 4px 0; }
.fi-book-ev.pos { color: var(--dc-green-ink); background: var(--dc-green-bg); }
.fi-book-ev:empty { background: transparent; }

.fi-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fi-grid2 .fi-card { margin-bottom: 0; }
.fi-cons-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.fi-cons-bar { display: flex; height: 34px; border-radius: 9px; overflow: hidden; margin-bottom: 10px; }
.fi-cons-a { background: linear-gradient(90deg, #0A6E4C, #0E8A5F); color: #fff; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-family: var(--f-head); font-weight: 700; font-size: 13px; min-width: 0; white-space: nowrap; }
.fi-cons-a b { margin-left: auto; font-family: var(--f-mono); }
.fi-cons-b { background: #D3CEC1; color: #5B534A; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-family: var(--f-head); font-weight: 700; font-size: 13px; flex: 1; justify-content: flex-end; white-space: nowrap; }
.fi-cons-b b { font-family: var(--f-mono); margin-right: auto; }
.fi-cons-note { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--dc-muted); }
.fi-cons-note span { margin-left: 6px; }
.fi-cons-ch { position: relative; width: 22px; height: 22px; border-radius: 50%; overflow: hidden; background: linear-gradient(150deg, #13372A, #0A1611); color: var(--dc-mint); display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 7.5px; text-decoration: none; flex-shrink: 0; }
.fi-cons-ch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fi-meth { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.fi-meth-lab { width: 78px; font-size: 11px; color: #4A463C; }
.fi-meth-bar { flex: 1; height: 7px; background: #EFECE4; border-radius: 999px; overflow: hidden; }
.fi-meth-bar span { display: block; height: 100%; background: linear-gradient(90deg, #0E8A5F, #12B981); }
.fi-meth-n { font-family: var(--f-mono); font-size: 11px; width: 18px; text-align: right; font-weight: 700; }
.fi-meth-odd { font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; color: var(--dc-green-ink); background: var(--dc-green-bg); border: 1px solid var(--dc-green-bd); border-radius: 6px; padding: 2px 7px; min-width: 52px; text-align: center; }
/* Polymarket prop strip under the method bars */
.fi-pm { margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--dc-hair2); }
.fi-pm-t { display: block; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dc-faint); margin-bottom: 7px; }
.fi-pm-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fi-pm-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 10px; color: var(--dc-muted); background: var(--dc-panel); border: 1px solid var(--dc-hair2); border-radius: 999px; padding: 5px 10px; }
.fi-pm-chip b { color: var(--dc-ink); font-weight: 700; }

.fi-tape-names { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: center; gap: 12px; margin-bottom: 6px; }
.fi-tape-names .a { text-align: right; font-family: var(--f-head); font-weight: 800; font-size: 18px; color: var(--dc-green-ink); }
.fi-tape-names .b { text-align: left; font-family: var(--f-head); font-weight: 800; font-size: 18px; color: #4A463C; }
.fi-tape-names i { font-style: normal; font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); font-weight: 400; margin: 0 6px; }
.fi-tape-names .vs { text-align: center; font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--dc-gold); }
.fi-tape-row { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid #F5F1E9; }
.fi-tape-row .a { text-align: right; font-family: var(--f-mono); font-size: 13.5px; font-weight: 700; }
.fi-tape-row .b { text-align: left; font-family: var(--f-mono); font-size: 13.5px; font-weight: 700; }
.fi-tape-row .lab { text-align: center; font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); }

.fi-ai-head { display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.fi-ai-btn { margin-left: auto; font-family: var(--f-head); font-weight: 700; font-size: 12px; color: #fff; background: linear-gradient(135deg, #7C3AED, #4F46E5); padding: 8px 14px; border-radius: 9px; border: none; cursor: pointer; }
.fi-ai-btn:disabled { opacity: .6; cursor: default; }
.fi-ai-desc { font-size: 11.5px; color: #86806F; margin-bottom: 15px; }
.fi-ai-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 10px; margin-bottom: 16px; }
.fi-panel { background: var(--dc-panel); border: 1px solid rgba(20, 19, 15, .08); border-radius: 12px; padding: 13px 16px; }
.fi-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 7px; margin-bottom: 3px; font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); }
.fi-panel-n { font-size: 8.5px; color: #C4BEB0; letter-spacing: 0; text-transform: none; }
.fi-find { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--dc-hair2); }
.fi-find:last-child { border-bottom: none; }
.fi-find-tag { font-family: var(--f-mono); font-size: 8px; font-weight: 700; color: #fff; padding: 3px 7px; border-radius: 5px; height: fit-content; white-space: nowrap; }
.fi-find-tag.good { background: var(--dc-green-ink); }
.fi-find-tag.bad { background: var(--dc-red); }
.fi-find-tag.watch { background: var(--dc-gold); }
.fi-find-body { min-width: 0; }
.fi-find-t { font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; }
.fi-find-n { font-size: 11.5px; color: var(--dc-muted); line-height: 1.45; margin-top: 2px; }
.fi-find-src { font-family: var(--f-mono); font-size: 9px; color: var(--dc-faint); margin-top: 4px; }
.fi-num { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--dc-hair2); }
.fi-num:last-child { border-bottom: none; }
.fi-num .k { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--dc-muted); }
.fi-num .v { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: #4A463C; text-align: right; }
.fi-num .v.good { color: var(--dc-green-ink); }
.fi-num .v.bad { color: var(--dc-red); }
.fi-ai-text { font-size: 13px; line-height: 1.65; color: var(--dc-body-ink); margin: 0 0 16px; }
.fi-ai-text p { margin: 0 0 8px; }
.fi-ai-text p:last-child { margin-bottom: 0; }
.fi-ai-text ul { margin: 0 0 8px; padding-left: 18px; }
.fi-ai-text li { margin-bottom: 4px; }
.fi-ai-text strong { color: var(--dc-ink); }
.fi-rec { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: linear-gradient(120deg, #12211A, #0C1712); border-radius: 12px; }
.fi-rec-l { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fi-rec-lab { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; color: rgba(234, 243, 238, .5); text-transform: uppercase; }
.fi-rec-title { font-family: var(--f-head); font-weight: 800; font-size: 16px; color: #EAF3EE; }
.fi-rec-title i { font-style: normal; font-weight: 500; font-size: 13px; color: rgba(234, 243, 238, .7); }
.fi-rec-badge { margin-left: auto; font-family: var(--f-mono); font-weight: 700; font-size: 15px; color: #0B0B0E; background: var(--dc-mint); padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
.fi-rec-badge.dim { background: rgba(255, 255, 255, .12); color: rgba(234, 243, 238, .75); }

.fi-feed { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.fi-take { display: flex; align-items: flex-start; gap: 10px; background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 12px; padding: 10px 14px; }
.vp-ch-av.sm { width: 28px; height: 28px; border-radius: 8px; font-size: 10px; }
.fi-take-mid { flex: 1; min-width: 0; font-size: 12px; }
.fi-take-mid b { font-family: var(--f-head); font-weight: 700; }
.fi-take-mid i { font-style: normal; color: var(--dc-muted); }
.fi-take-quote { display: block; font-size: 12px; color: var(--dc-body-ink); margin-top: 3px; line-height: 1.5; }
.fi-take-odds { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--dc-ink); }
.fi-form-row { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid #F5F1E9; }
.fi-form-row:last-child { border-bottom: none; }
.fi-form-wl { width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 9.5px; font-weight: 700; }
.fi-form-wl.w { background: var(--dc-green-bg); color: var(--dc-green-ink); border: 1px solid var(--dc-green-bd); }
.fi-form-wl.l { background: var(--dc-red-bg); color: var(--dc-red); border: 1px solid var(--dc-red-bd); }
.fi-form-opp { font-size: 12.5px; font-weight: 600; }
.fi-form-meta { font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-faint); flex: 1; }
.fi-form-when { font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-faint); }

/* ================================================================ leaderboard */
@keyframes lbUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
/* cards fade with NO transform: a lingering transform on the perspective parent
   (.lbp) flattens the preserve-3d children, so the flip's back face bleeds
   through mirror-reversed. Opacity-only keeps .lbp transform-free. */
@keyframes lbCardIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .lb-hero, .lbp { animation-duration: .001s !important; animation-delay: 0s !important; }
  .lbp-in, .lbp-front, .lbp-back { transition: none !important; }
}

/* hero — masthead: kicker, then H1 and the scoreboard sharing one baseline
   over a single rule; sub-copy hangs quietly beneath it */
.lb-hero { margin-bottom: 24px; animation: lbUp .7s cubic-bezier(.16, 1, .3, 1) both; }
.lb-kicker { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: #B8871A; }
.lb-hero-row { display: flex; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-top: 10px; padding-bottom: 18px; border-bottom: 1px solid rgba(20, 19, 15, .16); }
.lb-h1 { font-family: var(--f-disp); font-size: 40px; text-transform: uppercase; letter-spacing: .01em; line-height: .92; margin: 0; color: var(--dc-ink); max-width: 380px; text-wrap: balance; }
.lb-scores { margin-left: auto; display: flex; align-items: flex-end; }
.lb-score { text-align: right; padding-left: 26px; margin-left: 26px; position: relative; }
.lb-score:first-child { padding-left: 0; margin-left: 0; }
.lb-score:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(20, 19, 15, .14); }
.lb-score b { display: block; font-family: var(--f-disp); font-weight: 400; font-size: 30px; line-height: .85; color: var(--dc-ink); font-variant-numeric: tabular-nums; }
.lb-score b.grn { color: var(--dc-green-ink); }
.lb-score b.gold { color: #B8871A; }
.lb-score span { display: block; font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.4px; color: var(--dc-faint); text-transform: uppercase; margin-top: 7px; }
.lb-sub { font-size: 13.5px; color: var(--dc-muted); margin: 13px 0 0; max-width: 600px; line-height: 1.55; }
/* the source of every pick — the official-style lockup: red play tile + wordmark */
.yt { display: inline-flex; align-items: center; gap: 5px; vertical-align: -2px; }
.yt svg { width: 21px; height: 15px; display: block; filter: drop-shadow(0 1px 2px rgba(176, 26, 26, .28)); }
.yt b { font-family: var(--f-head); font-weight: 800; font-size: 1.02em; color: #1F1F1F; letter-spacing: -.035em; }

/* poster wall — top 3 flip cards: front = poster, back = ledger sheet.
   The flip is belt-and-braces: backface-visibility for browsers that honour
   it, PLUS an instant opacity swap at the rotation's halfway point — Safari
   mis-renders hidden backfaces on rounded, clipped faces, and the swap makes
   that impossible to see. The card itself carries NO transform (a transform
   on the perspective element flattens preserve-3d children). */
.lbp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lbp { position: relative; height: 430px; perspective: 1500px; cursor: pointer; animation: lbCardIn .55s ease both; }
.lbp:nth-child(2) { animation-delay: .06s; }
.lbp:nth-child(3) { animation-delay: .12s; }
.lbp:focus-visible { outline: 2px solid var(--dc-gold); outline-offset: 3px; border-radius: 22px; }
.lbp-in { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; -webkit-transform-style: preserve-3d; transition: transform .5s cubic-bezier(.3, .75, .28, 1); }
/* hover flips, leaving un-flips; keyboard focus (:focus-visible) flips without
   the mouse-click latch that :focus-within caused. :has() rules stay separate
   so engines without it only drop that one rule. */
.lbp:hover .lbp-in, .lbp:focus-visible .lbp-in, .lbp.flip .lbp-in { transform: rotateY(180deg); }
.lbp:has(a:focus-visible) .lbp-in { transform: rotateY(180deg); }
.lbp-face { position: absolute; inset: 0; border-radius: 20px; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; color: #F7F5F0; box-shadow: 0 1px 2px rgba(16, 16, 20, .05), 0 22px 52px rgba(20, 18, 12, .22); }
.lbp-front { transform: rotateY(0deg); opacity: 1; transition: opacity .18s ease .14s; }
.lbp-back { transform: rotateY(180deg); opacity: 0; transition: opacity .18s ease .14s; }
.lbp:hover .lbp-front, .lbp:focus-visible .lbp-front, .lbp.flip .lbp-front { opacity: 0; }
.lbp:has(a:focus-visible) .lbp-front { opacity: 0; }
.lbp:hover .lbp-back, .lbp:focus-visible .lbp-back, .lbp.flip .lbp-back { opacity: 1; }
.lbp:has(a:focus-visible) .lbp-back { opacity: 1; }
/* front grounds by tier */
.lbp-front { background: radial-gradient(110% 130% at 80% -20%, rgba(199, 162, 74, .32), transparent 55%), linear-gradient(165deg, #13372A, #0A1611); }
.lbp.silver .lbp-front { background: radial-gradient(110% 130% at 80% -20%, rgba(200, 204, 210, .24), transparent 55%), linear-gradient(165deg, #23232A, #101014); }
.lbp.bronze .lbp-front { background: radial-gradient(110% 130% at 80% -20%, rgba(217, 168, 119, .28), transparent 55%), linear-gradient(165deg, #2A2118, #14100B); }
/* dimmed, blurred fighter cutout; aspect tiers set in dc.js (bust / tall / xtall) */
.lbp-art { position: absolute; bottom: 0; right: -6px; height: 76%; width: auto; object-fit: contain; object-position: bottom right; opacity: .82; filter: brightness(.6) saturate(.92) blur(1px) drop-shadow(0 16px 30px rgba(0, 0, 0, .5)); z-index: 1; }
.lbp-art.tall { height: 90%; }
.lbp-art.xtall { height: 118%; top: 6%; bottom: auto; object-position: top right; opacity: .72; }
.lbp-shade { position: absolute; left: 0; right: 0; bottom: 0; top: 38%; background: linear-gradient(to top, rgba(6, 10, 8, .95) 44%, rgba(6, 10, 8, .5) 76%, transparent); z-index: 2; }
.lbp-top { position: absolute; top: 16px; left: 16px; right: 16px; z-index: 3; }
.lbp-pill { display: inline-block; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #0B0B0E; padding: 4px 11px; border-radius: 999px; }
.lbp-pill.gold { background: linear-gradient(135deg, #F6C544, #D99E1A); }
.lbp-pill.silver { background: linear-gradient(135deg, #C8CCD2, #9AA0A8); }
.lbp-pill.bronze { background: linear-gradient(135deg, #D9A877, #B07A45); }
.lbp-id { display: flex; align-items: center; gap: 12px; margin-top: 15px; }
.lbp-av { position: relative; width: 52px; height: 52px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: linear-gradient(150deg, #2A2A30, #101014); color: var(--dc-mint); display: flex; align-items: center; justify-content: center; font-family: var(--f-disp); font-size: 17px; box-shadow: 0 8px 20px rgba(0, 0, 0, .42); }
.lbp.gold .lbp-av { box-shadow: 0 0 0 1px rgba(199, 162, 74, .5), 0 8px 20px rgba(0, 0, 0, .42); }
.lbp-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lbp-nm { min-width: 0; }
.lbp-nm b { display: block; font-family: var(--f-disp); font-weight: 400; font-size: 23px; line-height: 1; text-transform: uppercase; letter-spacing: .02em; text-shadow: 0 2px 14px rgba(0, 0, 0, .55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lbp-nm span { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .9px; text-transform: uppercase; color: rgba(247, 245, 240, .75); margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lbp-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 16px; }
.lbp-roi { font-family: var(--f-disp); font-size: 44px; line-height: .82; color: var(--dc-mint); }
.lbp-roi.neg { color: #E5674B; }
.lbp-roisub { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.1px; text-transform: uppercase; color: rgba(247, 245, 240, .55); margin-top: 9px; }
.lbp-hint { display: flex; align-items: center; gap: 6px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .14); font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(247, 245, 240, .48); }
/* back — the ledger sheet: airy rows, big Archivo values, mint CTA */
.lbp-back { background: linear-gradient(168deg, #14352A, #0A1611); padding: 20px 18px 18px; display: flex; flex-direction: column; }
.lbp.silver .lbp-back { background: linear-gradient(168deg, #23232A, #101014); }
.lbp.bronze .lbp-back { background: linear-gradient(168deg, #2A2118, #14100B); }
.lbp-bhead { display: flex; align-items: center; gap: 10px; }
.lbp-bhead .lbp-av { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .14); }
.lbp-bhead b { font-family: var(--f-head); font-weight: 800; font-size: 16px; letter-spacing: -.005em; }
.lbp-bhead i { margin-left: auto; font-style: normal; font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.lbp-bhead i.gold { color: var(--dc-gold); }
.lbp-bhead i.silver { color: #B8BEC8; }
.lbp-bhead i.bronze { color: #C88E5C; }
.lbp-led { margin-top: 8px; }
.lbp-lrow { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .10); }
.lbp-lrow span.k { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, .5); }
.lbp-lrow b { margin-left: auto; font-family: var(--f-head); font-weight: 800; font-size: 17px; letter-spacing: -.005em; font-variant-numeric: tabular-nums; }
.lbp-lrow b.mint { color: var(--dc-mint); }
.lbp-lrow b.gold { color: var(--dc-gold); }
.lbp-ldots { display: flex; gap: 4px; margin-left: auto; }
.lbp-ldots i { width: 10px; height: 10px; border-radius: 50%; background: var(--dc-mint); }
.lbp-ldots i.l { background: #E5674B; }
.lbp-cta { margin-top: 20px; display: flex; align-items: center; justify-content: center; background: #F7F5F0; color: #0B0B0E; font-family: var(--f-head); font-weight: 800; font-size: 13px; padding: 13px; border-radius: 999px; text-decoration: none; }
.lbp-cta.mint { background: var(--dc-mint); }
.lbp-note { margin: 8px 0 20px; font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; color: var(--dc-faint); text-align: right; }

/* controls — search + captioned selects, then the rank-by row */
.lb-controls { display: flex; align-items: stretch; gap: 10px; margin: 0; }
.lb-search { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(20, 19, 15, .12); border-radius: 11px; padding: 0 14px; height: 42px; }
.lb-search:focus-within, .lb-sel:focus-within { border-color: rgba(20, 19, 15, .30); }
.lb-search svg { flex-shrink: 0; }
.lb-search input { border: none; outline: none; background: transparent; width: 100%; min-width: 0; font-family: var(--f-body); font-size: 13px; color: var(--dc-ink); }
.lb-search input::placeholder { color: var(--dc-faint); }
.lb-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.lb-count { font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-faint); white-space: nowrap; }
.lb-count b { color: var(--dc-ink); font-weight: 700; }
.lb-sel { position: relative; display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 30px 0 14px; background: #fff; border: 1px solid rgba(20, 19, 15, .12); border-radius: 11px; cursor: pointer; }
.lb-sel-cap { font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); }
.lb-sel select { appearance: none; -webkit-appearance: none; border: none; outline: none; background: transparent; font-family: var(--f-head); font-weight: 700; font-size: 12.5px; color: var(--dc-ink); cursor: pointer; max-width: 150px; }
.lb-sel > svg { position: absolute; right: 11px; pointer-events: none; }
.lb-cats { display: flex; align-items: center; gap: 8px; margin: 12px 0 14px; }
.lb-cats-lab { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); margin-right: 4px; flex-shrink: 0; }
.lb-cat { font-family: var(--f-mono); font-size: 10.5px; line-height: 1; cursor: pointer; color: #6E6A60; background: transparent; border: 1px solid #DAD5CA; padding: 7px 14px; border-radius: 999px; text-decoration: none; white-space: nowrap; transition: border-color .15s ease, background .15s ease; }
.lb-cat:hover { border-color: rgba(20, 19, 15, .38); }
.lb-cat.on { font-weight: 700; color: #F7F5F0; background: #14130F; border-color: #14130F; }
/* rank-by overflow — the metrics that don't fit fold into a menu */
.lb-more { position: relative; margin-left: 2px; }
.lb-more > summary { list-style: none; cursor: pointer; font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-ink); background: #fff; border: 1px dashed #C4BDAE; padding: 7px 13px; border-radius: 999px; white-space: nowrap; user-select: none; }
.lb-more > summary::-webkit-details-marker { display: none; }
.lb-more > summary:hover { border-color: rgba(20, 19, 15, .4); }
.lb-more[open] > summary { background: #14130F; color: #F7F5F0; border-style: solid; border-color: #14130F; }
.lb-more-menu { position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 12px; box-shadow: 0 14px 40px rgba(20, 18, 12, .16); padding: 6px; min-width: 186px; z-index: 20; }
.lb-more-menu a { display: block; font-family: var(--f-head); font-weight: 600; font-size: 12.5px; color: var(--dc-ink); padding: 8px 11px; border-radius: 8px; text-decoration: none; white-space: nowrap; }
.lb-more-menu a:hover { background: var(--dc-panel); }
.lb-more-menu a.on { color: var(--dc-green-ink); background: rgba(110, 231, 183, .14); }
.lb-hl { display: flex; align-items: center; gap: 11px; background: rgba(110, 231, 183, .20); border: 1px solid rgba(10, 110, 76, .28); border-radius: 12px; padding: 10px 14px; margin-bottom: 12px; font-size: 13px; }
.lb-hl-star { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #F6C544, #D99E1A); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .4); }
.lb-hl-x { margin-left: auto; color: #4A463C; font-size: 14px; line-height: 1; padding: 4px 6px; text-decoration: none; }

/* table — 7 columns incl. last-10 form dots and the dynamic score column */
.lb-table { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.lb-th { display: grid; grid-template-columns: 44px minmax(0, 1fr) 92px 60px 74px 118px 86px; gap: 10px; padding: 11px 20px; border-bottom: 1px solid var(--dc-hair2); font-family: var(--f-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); }
.lb-th .r { text-align: right; }
.lb-th .grn { color: var(--dc-green-ink); }
.lb-row { display: grid; grid-template-columns: 44px minmax(0, 1fr) 92px 60px 74px 118px 86px; gap: 10px; padding: 12px 20px; align-items: center; text-decoration: none; color: var(--dc-ink); border-bottom: 1px solid var(--dc-hair2); }
.lb-row:hover { background: #FAF9F5; }
.lb-row.champ { background: #FBF7EC; }
.lb-row.hl { background: rgba(110, 231, 183, .12); box-shadow: inset 3px 0 0 var(--dc-mint); }
.lb-row.xtra { display: none; }
.lb-table.all .lb-row.xtra { display: grid; }
.lb-rank { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--dc-faint); }
.lb-rank.top { font-family: var(--f-disp); font-size: 16px; font-weight: 400; color: #6E6A60; }
.lb-row.champ .lb-rank { color: #B8871A; }
.lb-ch { display: flex; align-items: center; gap: 10px; min-width: 0; }
.lb-ch-mid { min-width: 0; }
.lb-ch-name { display: flex; align-items: center; gap: 7px; font-family: var(--f-head); font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-this { font-style: normal; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1px; color: var(--dc-green-ink); background: rgba(110, 231, 183, .35); padding: 2px 7px; border-radius: 999px; }
.lb-ch-meta { display: block; font-size: 10px; color: var(--dc-faint); }
.lb-roi { text-align: right; font-family: var(--f-mono); font-size: 12.5px; font-weight: 700; }
.lb-roi.pos { color: var(--dc-green-ink); }
.lb-roi.neg { color: var(--dc-red); }
.lb-hit { text-align: right; font-family: var(--f-mono); font-size: 11.5px; color: #4A463C; }
.lb-picks { text-align: right; font-family: var(--f-mono); font-size: 11.5px; color: var(--dc-faint); }
.lb-dots { display: flex; justify-content: flex-end; gap: 3px; }
.lb-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--dc-green-ink); }
.lb-dots i.l { background: var(--dc-red); }
.lb-metric { text-align: right; font-family: var(--f-disp); font-size: 16px; color: var(--dc-ink); }
.lb-metric.neg { color: var(--dc-red); }
.lb-empty { padding: 34px 18px; text-align: center; font-size: 13px; color: var(--dc-faint); }
.lb-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 20px; }
.lb-foot-note { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px; color: var(--dc-faint); }
.lb-foot-note b { color: var(--dc-ink); }
.lb-showall { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-green-ink); background: none; border: none; cursor: pointer; padding: 0; }

/* ================================================================ channel */
.cn-hero { border-radius: 22px; overflow: hidden; box-shadow: 0 1px 2px rgba(16, 16, 20, .05), 0 24px 60px rgba(20, 18, 12, .12); margin-bottom: 14px; }
/* banner: real art when the channel has it; otherwise its logo blown up and
   blurred into a backdrop (only ~1/3 of channels have banner art stored) */
.cn-banner { position: relative; overflow: hidden; height: 120px; background: radial-gradient(120% 200% at 85% -40%, rgba(199, 162, 74, .25), transparent 55%), linear-gradient(120deg, #13372A, #0A1611); }
.cn-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cn-banner-blur { position: absolute; left: -8%; top: -60%; width: 116%; height: 240%; object-fit: cover; filter: blur(46px) saturate(1.15) brightness(.62); opacity: .9; }
.cn-hero-body { background: #fff; padding: 0 24px 20px; }
.cn-hero-row { display: flex; align-items: flex-end; gap: 16px; margin-top: -34px; }
.cn-av { position: relative; width: 82px; height: 82px; border-radius: 20px; overflow: hidden; flex-shrink: 0; background: linear-gradient(150deg, #13372A, #0A1611); color: var(--dc-mint); display: flex; align-items: center; justify-content: center; font-family: var(--f-disp); font-size: 28px; box-shadow: 0 0 0 4px #fff; }
.cn-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cn-hero-mid { flex: 1; padding-bottom: 2px; min-width: 0; }
.cn-name-row { display: flex; align-items: center; gap: 9px; }
.cn-name { font-family: var(--f-head); font-weight: 800; font-size: 24px; letter-spacing: -.02em; margin: 0; }
.cn-rank { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #F6C544, #D99E1A); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cn-meta { font-size: 12.5px; color: #86806F; margin-top: 3px; }
.cn-yt { font-family: var(--f-head); font-weight: 700; font-size: 12.5px; color: #F7F5F0; background: #14130F; padding: 10px 16px; border-radius: 10px; text-decoration: none; white-space: nowrap; }
.cn-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 14px; }
.cn-stat { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 14px; padding: 16px 18px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.cn-stat-lab { font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px; color: var(--dc-faint); text-transform: uppercase; }
.cn-stat-val { font-family: var(--f-disp); font-size: 28px; margin-top: 4px; line-height: 1; }
.cn-stat-val.pos { color: var(--dc-green-ink); }
.cn-stat-val.neg { color: var(--dc-red); }

.cn-shelf { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 6px; }
.cn-trophy { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 6px 10px; text-decoration: none; color: inherit; border-radius: 12px; border: 1px solid transparent; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.cn-trophy:hover { transform: translateY(-3px); border-color: rgba(20, 19, 15, .10); background: #FBFAF6; }
.cn-medal { position: relative; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; line-height: 1; box-shadow: 0 5px 13px rgba(0, 0, 0, .20), inset 0 0 0 3px rgba(255, 255, 255, .42), inset 0 -6px 10px rgba(0, 0, 0, .16); }
.cn-medal.gold { background: radial-gradient(120% 120% at 30% 20%, #FBE08A, #E0B93A 55%, #B8871A); }
.cn-medal.silver { background: radial-gradient(120% 120% at 30% 20%, #EDF0F3, #B7BCC4 55%, #8A909A); }
.cn-medal.bronze { background: radial-gradient(120% 120% at 30% 20%, #EBC49B, #C08A56 55%, #96662F); }
.cn-medal.top10 { background: radial-gradient(120% 120% at 30% 20%, #4A463C, #2A2A30 60%, #14130F); }
.cn-medal i { position: absolute; bottom: -3px; right: -3px; min-width: 19px; height: 19px; padding: 0 4px; border-radius: 999px; background: #14130F; color: #F7F5F0; font-family: var(--f-mono); font-style: normal; font-size: 9.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cn-trophy-lab { font-family: var(--f-head); font-weight: 700; font-size: 12px; color: var(--dc-ink); text-align: center; line-height: 1.15; }
.cn-trophy-rank { font-family: var(--f-mono); font-size: 9px; color: var(--dc-faint); }
.cn-shelf-note { margin-top: 12px; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .5px; color: var(--dc-faint); }

.cn-bt { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--dc-hair2); }
.cn-bt:last-child { border-bottom: none; }
.cn-bt-mid b { display: block; font-size: 13px; font-weight: 600; }
.cn-bt-mid i { font-style: normal; font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); }
.cn-bt-roi { font-family: var(--f-mono); font-size: 14px; font-weight: 700; }
.cn-bt-roi.pos { color: var(--dc-green-ink); }
.cn-bt-roi.neg { color: var(--dc-red); }
.cn-bt-roi.dim { color: #8A857A; font-size: 12px; }
.cn-wc { margin-bottom: 14px; }
.cn-wc:last-child { margin-bottom: 0; }
.cn-wc-top { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 6px; }
.cn-wc-top b { font-weight: 600; }
.cn-wc-top span { font-family: var(--f-mono); font-weight: 700; color: var(--dc-green-ink); }
.cn-wc-sub { font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-faint); margin-top: 4px; }

.cn-vid { display: flex; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--dc-hair2); text-decoration: none; color: var(--dc-ink); }
.cn-vid:last-child { border-bottom: none; }
.cn-vid.xtra { display: none; }
.cn-vid.xtra.shown { display: flex; }
.cn-vid-more { display: flex; justify-content: center; padding: 13px 0 2px; }
.cn-vid-more button { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-green-ink); background: none; border: none; cursor: pointer; padding: 4px 8px; }
.cn-vid:hover b { text-decoration: underline; }
.cn-thumb { position: relative; width: 78px; height: 46px; border-radius: 9px; flex-shrink: 0; overflow: hidden; background: radial-gradient(120% 140% at 80% -20%, rgba(199, 162, 74, .3), transparent 55%), linear-gradient(135deg, #1C1C22, #0B0B0E); display: flex; align-items: center; justify-content: center; }
.cn-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cn-thumb i { font-style: normal; font-family: var(--f-disp); font-size: 15px; color: var(--dc-gold); }
.cn-vid-mid { flex: 1; min-width: 0; }
.cn-vid-mid b { display: block; font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cn-vid-mid i { font-style: normal; font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-faint); margin-top: 3px; }
.cn-vid-roi { font-family: var(--f-mono); font-size: 13px; font-weight: 700; }
.cn-vid-roi.pos { color: var(--dc-green-ink); }
.cn-vid-roi.neg { color: var(--dc-red); }

/* ================================================================ tracker */
.bt-hero { margin-bottom: 16px; animation: lbUp .7s cubic-bezier(.16, 1, .3, 1) both; }
.bt-hero-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.lb-score b.red { color: var(--dc-red); }
.lb-score b.grn { color: var(--dc-green-ink); }

/* account pill — where the book lives (account / device / demo) */
.bt-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 10px; background: var(--dc-night); color: #F7F5F0; border-radius: 999px; padding: 7px 15px 7px 8px; }
.bt-pill-av { width: 30px; height: 30px; border-radius: 50%; background: var(--dc-mint); color: #0B0B0E; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.bt-pill-tx b { font-family: var(--f-head); font-size: 12.5px; font-weight: 700; display: block; line-height: 1.15; }
.bt-pill-tx span { font-family: var(--f-mono); font-size: 8.5px; color: rgba(247, 245, 240, .55); display: block; }
.bt-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dc-mint); box-shadow: 0 0 8px var(--dc-mint); }
.bt-pill-dot.local, .bt-pill-dot.demo { background: var(--dc-gold); box-shadow: 0 0 8px rgba(199, 162, 74, .8); }

/* summary strip — expandable; links out to the year view */
.bt-strip { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(16, 16, 20, .05); margin-bottom: 14px; }
.bt-strip-head { display: flex; align-items: center; gap: 28px; padding: 15px 20px 13px; }
.bt-sum { display: flex; flex-direction: column; gap: 3px; }
.bt-sum-cap { font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); white-space: nowrap; }
.bt-sum-v { font-family: var(--f-head); font-weight: 700; font-size: 19px; color: var(--dc-ink); }
.bt-sum-v.grn { color: var(--dc-green-ink); }
.bt-sum-v.red { color: var(--dc-red); }
.bt-sum-v.gold { color: #8A6D1F; }
.bt-sum-div { width: 1px; align-self: stretch; background: var(--dc-hair2); }
.bt-strip-mini { display: none; }
.bt-year-link { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 700; font-size: 12px; color: #F7F5F0; background: #14130F; padding: 9px 16px; border-radius: 999px; text-decoration: none; white-space: nowrap; }
.bt-year-link:hover { background: #26251F; }
.bt-strip-toggle { font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); background: none; border: none; cursor: pointer; padding: 7px 2px; white-space: nowrap; }
.bt-strip-toggle:hover { color: var(--dc-ink); }
.bt-strip-body { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 24px; padding: 12px 20px 16px; border-top: 1px solid var(--dc-hair2); }
.bt-strip.closed .bt-strip-body { display: none; }
.bt-strip-chart svg { display: block; width: 100%; height: 84px; margin-top: 8px; }
.bt-strip-axis { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 8px; color: var(--dc-faint); margin-top: 5px; }
.bt-sum-none { margin: 0 auto; }
.bt-strip-month { border-left: 1px solid var(--dc-hair2); padding-left: 24px; display: flex; flex-direction: column; justify-content: center; gap: 1px; }
.bts-mcap { font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); margin-bottom: 5px; }
.bts-mrow { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12.5px; color: var(--dc-muted); padding: 6px 0; border-bottom: 1px solid #F5F2EA; }
.bts-mrow:last-child { border-bottom: none; }
.bts-mrow > span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bts-mrow b { font-family: var(--f-head); font-size: 12.5px; font-weight: 700; color: var(--dc-ink); white-space: nowrap; }
.bts-mrow b.grn { color: var(--dc-green-ink); }
.bts-mrow b.red { color: var(--dc-red); }
.bts-mrow b.gold { color: #8A6D1F; }

/* layout: the card + a rail with the docked slip and the docket */
.bt-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 16px; align-items: start; }
.bt-grid > section { min-width: 0; }
.bt-rail { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.bt-card { background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; padding: 15px 17px 18px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.bt-head { display: flex; align-items: center; gap: 10px; }
.bt-head-t { font-family: var(--f-disp); font-size: 18px; text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.bt-head-t.sm { font-size: 15px; }
.bt-evsel { margin-left: auto; max-width: 60%; height: 36px; border-radius: 999px; }
.bt-evsel select { max-width: 100%; min-width: 0; text-overflow: ellipsis; }
.bt-refresh { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--dc-hair2); background: var(--dc-panel); color: var(--dc-muted); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.bt-refresh:hover { border-color: rgba(20, 19, 15, .3); color: var(--dc-ink); }
.bt-meta { font-family: var(--f-mono); font-size: 9px; color: var(--dc-faint); margin-top: 7px; }
.bt-empty { padding: 26px 14px; text-align: center; font-size: 13px; color: var(--dc-faint); line-height: 1.6; }
.bt-empty span { font-size: 11.5px; }

/* the card: one row per fight, the model's read worn on the sleeve */
.bt-seg { font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-faint); margin: 16px 0 4px; display: flex; align-items: center; gap: 10px; }
.bt-seg::after { content: ""; flex: 1; height: 1px; background: var(--dc-hair2); }
.bt-fight { margin-bottom: 10px; }
.bt-fmeta { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dc-faint); margin: 10px 2px 7px; }
.bt-fmeta i { font-style: normal; color: #B8871A; letter-spacing: .5px; }
.bt-frow { display: grid; grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr); gap: 7px; align-items: stretch; }
.bt-vs { align-self: center; text-align: center; font-family: var(--f-mono); font-size: 8.5px; color: #A29C8F; }
.bt-side { position: relative; display: flex; align-items: center; gap: 10px; text-align: left; background: var(--dc-panel); border: 1px solid rgba(20, 19, 15, .12); border-radius: 14px; padding: 10px 11px; cursor: pointer; font-family: var(--f-body); min-width: 0; overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.bt-side:hover:not(:disabled) { border-color: rgba(20, 19, 15, .38); background: #fff; }
.bt-side:disabled { opacity: .5; cursor: default; }
.bt-side.val { background: #fff; border: 2px solid var(--dc-ink); padding: 9px 10px 9px 16px; box-shadow: 0 6px 16px rgba(20, 19, 15, .1); }
.bt-side.val.r { padding: 9px 16px 9px 10px; }
.bt-valbar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--dc-mint); }
.bt-side.r .bt-valbar { left: auto; right: 0; }
.bt-side.sel { border-color: var(--dc-ink); background: #fff; box-shadow: 0 0 0 2px var(--dc-mint), 0 6px 16px rgba(20, 19, 15, .14); }
.bt-av { position: relative; width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: linear-gradient(150deg, #2A2A30, #121216); color: #F7F5F0; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.bt-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bt-smain { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.bt-smain em { font-style: normal; font-family: var(--f-head); font-weight: 700; font-size: 13.5px; color: #3E3B33; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-side.val .bt-smain em { font-weight: 800; color: var(--dc-ink); }
.bt-welike { font-style: normal; font-family: var(--f-mono); font-size: 7.5px; font-weight: 800; letter-spacing: .3px; color: #0B0B0E; background: var(--dc-mint); padding: 2px 7px; border-radius: 999px; white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.bt-verdict { font-style: normal; font-family: var(--f-mono); font-size: 8px; color: var(--dc-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.bt-sright { flex-shrink: 0; text-align: right; }
.bt-sright b { display: block; font-family: var(--f-mono); font-size: 15px; font-weight: 700; color: var(--dc-muted); }
.bt-side.val .bt-sright b { color: var(--dc-ink); }
.bt-sright span { display: flex; align-items: center; justify-content: flex-end; font-family: var(--f-mono); font-size: 7.5px; color: var(--dc-faint); margin-top: 3px; max-width: 68px; white-space: nowrap; overflow: hidden; }
.bt-sright span img { height: 11px; width: auto; max-width: 64px; object-fit: contain; border-radius: 2px; }
.bt-sright span i { font-style: normal; min-width: 0; overflow: hidden; text-overflow: ellipsis; }

/* docked slip — the bet builds itself in the rail */
.bt-slip { position: sticky; top: 74px; z-index: 5; background: #fff; border: 1px solid var(--dc-card-bd); border-radius: 16px; overflow: hidden; box-shadow: 0 14px 36px rgba(20, 18, 12, .14); }
.bt-slip-empty { padding: 24px 18px; text-align: center; font-size: 12.5px; color: var(--dc-faint); line-height: 1.65; }
.bt-slip-hero { position: relative; height: 108px; overflow: hidden; background: radial-gradient(130% 120% at 50% 0%, #1C1C22 0%, #0B0B0E 70%); }
.bt-slip-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 20% 130%, rgba(110, 231, 183, .25), transparent 65%); }
.bt-slip-cut { position: absolute; bottom: -58px; right: 4px; height: 172px; width: auto; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .5)); }
.bt-slip-id { position: absolute; left: 15px; top: 14px; z-index: 1; }
.bt-slip-id .cap { font-family: var(--f-mono); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dc-mint); }
.bt-slip-id .name { display: block; font-family: var(--f-disp); font-size: 21px; text-transform: uppercase; line-height: .95; color: #F7F5F0; margin-top: 3px; max-width: 210px; overflow: hidden; text-overflow: ellipsis; }
.bt-slip-id .make { display: block; font-family: var(--f-mono); font-size: 8px; color: rgba(247, 245, 240, .55); margin-top: 4px; }
.bt-slip-x { position: absolute; right: 8px; top: 7px; z-index: 2; background: none; border: none; font-family: var(--f-mono); font-size: 12px; color: rgba(247, 245, 240, .6); cursor: pointer; padding: 4px 6px; }
.bt-slip-x:hover { color: #F7F5F0; }
.bt-slip-body { padding: 12px 14px 15px; display: flex; flex-direction: column; gap: 6px; }
.bt-slip-cap { font-family: var(--f-mono); font-size: 7.5px; letter-spacing: 1px; text-transform: uppercase; color: #86806F; }
.bt-books { display: flex; flex-direction: column; gap: 6px; }
.bt-books.more { max-height: 172px; overflow: auto; }
.bt-book { display: flex; align-items: center; gap: 8px; background: var(--dc-panel); border: 1px solid rgba(20, 19, 15, .1); border-radius: 10px; padding: 8px 10px; cursor: pointer; font-family: var(--f-body); text-align: left; width: 100%; }
.bt-book img { height: 12px; width: auto; border-radius: 3px; flex-shrink: 0; }
.bt-book span { flex: 1; min-width: 0; font-family: var(--f-head); font-weight: 600; font-size: 11px; color: #3E3B33; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-book b { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: #3E3B33; }
.bt-book i { font-style: normal; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; width: 42px; text-align: right; flex-shrink: 0; }
.bt-book i.pos { color: var(--dc-green-ink); }
.bt-book i.neg { color: var(--dc-red); }
.bt-book i.flat { color: var(--dc-faint); }
.bt-book.on { background: var(--dc-ink); border-color: var(--dc-ink); }
.bt-book.on span, .bt-book.on b { color: #F7F5F0; }
.bt-book.on i.pos { color: var(--dc-mint); }
.bt-book.on i.flat { color: rgba(247, 245, 240, .6); }
.bt-allbooks { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(20, 19, 15, .14); background: #fff; border-radius: 10px; padding: 8px 10px; font-family: var(--f-head); font-weight: 600; font-size: 11px; color: #3E3B33; cursor: pointer; width: 100%; text-align: left; }
.bt-allbooks span { margin-left: auto; font-family: var(--f-mono); font-size: 9px; font-weight: 400; color: #86806F; }
.bt-slip-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 3px; }
.bt-slip-fields label { display: flex; flex-direction: column; gap: 3px; }
.bt-slip-fields label span { font-family: var(--f-mono); font-size: 7px; letter-spacing: 1px; text-transform: uppercase; color: #86806F; }
.bt-slip-fields input { width: 100%; font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: var(--dc-ink); background: var(--dc-panel); border: 1px solid rgba(20, 19, 15, .14); border-radius: 8px; padding: 8px 10px; outline: none; }
.bt-slip-fields input:focus { border-color: rgba(20, 19, 15, .4); }
.bt-slip-quick { display: flex; gap: 5px; }
.bt-slip-quick button { border: 1px solid var(--dc-hair2); background: #fff; border-radius: 999px; padding: 5px 10px; font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-muted); cursor: pointer; }
.bt-slip-quick button:hover { border-color: rgba(20, 19, 15, .3); color: var(--dc-ink); }
.bt-slip-sum { display: flex; align-items: baseline; gap: 6px; padding: 2px 2px 0; }
.bt-slip-sum .bt-sum-line { font-family: var(--f-head); font-weight: 700; font-size: 12.5px; color: var(--dc-ink); }
.bt-slip-sum > span { margin-left: auto; font-family: var(--f-mono); font-size: 10px; color: var(--dc-muted); }
.bt-slip-sum .bt-win { color: var(--dc-green-ink); font-size: 12px; }
.bt-log { margin-top: 5px; font-family: var(--f-head); font-weight: 800; font-size: 12.5px; color: #0B0B0E; background: var(--dc-mint); border: none; border-radius: 10px; padding: 12px; cursor: pointer; box-shadow: 0 8px 18px rgba(110, 231, 183, .35); }
.bt-log:hover { filter: brightness(.96); }

/* bet docket — open bets wear their drift; settled rows read like receipts */
.bt-open-sum { font-family: var(--f-mono); font-size: 8.5px; color: #86806F; white-space: nowrap; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.bt-tabs { display: inline-flex; margin-left: auto; background: #F0EDE5; border-radius: 8px; padding: 2px; }
.bt-tabs button { border: none; background: transparent; font-family: var(--f-mono); font-size: 9px; font-weight: 600; color: var(--dc-muted); padding: 4px 9px; border-radius: 6px; cursor: pointer; }
.bt-tabs button.on { background: var(--dc-ink); color: #F7F5F0; }
.bt-sync { font-family: var(--f-mono); font-size: 7.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.bt-sync.server { background: #DCF5E9; color: var(--dc-green-ink); border: 1px solid var(--dc-green-bd); }
.bt-sync.local { background: #EFECE4; color: var(--dc-muted); border: 1px solid var(--dc-hair2); }
.bt-sync.demo { background: #F3ECD9; color: #8A6A14; border: 1px solid rgba(184, 135, 26, .35); }
.bt-list { display: flex; flex-direction: column; margin-top: 6px; }
.bt-dk { padding: 11px 1px; border-bottom: 1px solid rgba(20, 19, 15, .06); }
.bt-dk:last-child { border-bottom: none; padding-bottom: 4px; }
.bt-dk-top { display: flex; align-items: center; gap: 9px; }
.bt-bav { position: relative; width: 34px; height: 34px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(150deg, #2A2A30, #121216); color: #F7F5F0; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 11px; }
.bt-bav img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bt-dk-pick { flex: 1; min-width: 0; }
.bt-dk-pick b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 12.5px; color: var(--dc-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-dk-pick b span { font-weight: 500; color: #86806F; }
.bt-dk-pick small { display: block; font-family: var(--f-mono); font-size: 8px; color: var(--dc-faint); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-chip { flex-shrink: 0; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: .5px; padding: 3px 7px; border-radius: 6px; }
.bt-chip.open { color: #8A6D1F; background: #F5EDD6; }
.bt-chip.won { color: var(--dc-green-ink); background: #DDF1E4; }
.bt-chip.lost { color: var(--dc-red); background: var(--dc-red-bg); }
.bt-dk-line { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 9px; padding-left: 43px; margin-top: 8px; min-width: 0; }
.bt-dk-line > b { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--dc-ink); white-space: nowrap; }
.bt-drift { display: inline-flex; align-items: center; gap: 3px; font-family: var(--f-mono); font-size: 9px; font-weight: 700; border-radius: 6px; padding: 2px 7px; white-space: nowrap; }
.bt-drift .ar { font-size: 8px; }
.bt-drift.pos { color: var(--dc-green-ink); background: var(--dc-green-bg); }
.bt-drift.neg { color: var(--dc-red); background: var(--dc-red-bg); }
.bt-drift.flat { color: var(--dc-faint); background: #F5F2EA; }
.bt-dk-win { margin-left: auto; font-family: var(--f-mono); font-size: 9.5px; color: #86806F; white-space: nowrap; }
.bt-dk-win b { color: var(--dc-ink); }
.bt-dk.done { display: flex; align-items: center; gap: 9px; }
.bt-dk.done .bt-bav { width: 30px; height: 30px; font-size: 10px; }
.bt-dk-pl { flex-shrink: 0; font-family: var(--f-mono); font-size: 11px; font-weight: 700; }
.bt-dk-pl.pos { color: var(--dc-green-ink); }
.bt-dk-pl.neg { color: var(--dc-red); }
.bt-acts { display: inline-flex; gap: 4px; margin-left: 4px; flex-shrink: 0; }
.bt-a { width: 22px; height: 22px; border-radius: 7px; border: 1px solid var(--dc-hair2); background: #fff; font-family: var(--f-mono); font-size: 10px; font-weight: 700; color: var(--dc-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.bt-a:hover { border-color: rgba(20, 19, 15, .32); color: var(--dc-ink); }
.bt-a.on { background: #14130F; border-color: #14130F; color: #F7F5F0; }
.bt-a.del:hover { border-color: var(--dc-red-bd); color: var(--dc-red); }

/* book marks — wordmark logos wherever a saved bet names its book */
.bk-mk { display: inline-flex; align-items: center; vertical-align: middle; max-width: 100%; }
.bk-mk img { height: 11px; width: auto; max-width: 84px; object-fit: contain; border-radius: 2px; display: block; }
.bt-dk-pick small .bk-mk { vertical-align: -2px; }
.bt-dk-pick small .bk-mk img { height: 10px; }
.yr-bar-k .bk-mk img { height: 13px; max-width: 82px; }
.yr-c-book .bk-mk img { height: 12px; max-width: 78px; }
.yr-c-sub .bk-mk { vertical-align: -2px; }
.yr-c-sub .bk-mk img { height: 9px; }

/* account banner — demo notice / device-only nudge / one-tap import */
.bt-acct { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: linear-gradient(100deg, #13372A, #0F2C22); color: #EAF3EE; border-radius: 14px; padding: 12px 16px; margin-bottom: 14px; }
.bt-acct-txt { font-size: 12px; line-height: 1.5; min-width: 0; flex: 1; }
.bt-acct-txt b { color: var(--dc-mint); }
.bt-acct-btns { display: inline-flex; gap: 8px; flex-shrink: 0; }
.bt-acct-btn { font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: .5px; text-decoration: none; color: #EAF3EE; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; padding: 7px 13px; cursor: pointer; }
.bt-acct-btn.primary { background: var(--dc-mint); border-color: var(--dc-mint); color: #0B0B0E; }
.bt-acct-btn:hover { filter: brightness(1.06); }

/* ====================================================== a year in your book */
.yr-crumb { font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-muted); margin: 2px 0 14px; }
.yr-crumb a { color: var(--dc-faint); text-decoration: none; }
.yr-crumb a:hover { color: var(--dc-ink); }
.yr-crumb i { font-style: normal; color: #D8D4C8; padding: 0 3px; }
.yr-crumb b { color: var(--dc-ink); }
.yr-hero { display: flex; align-items: flex-end; gap: 26px; flex-wrap: wrap; animation: lbUp .7s cubic-bezier(.16, 1, .3, 1) both; }
.yr-hero .bt-pill { margin-bottom: 4px; }
.yr-h1 { font-family: var(--f-disp); font-size: 50px; line-height: .92; text-transform: uppercase; margin: 8px 0 0; color: var(--dc-ink); }
.yr-sub { margin-top: 11px; max-width: 620px; }
.yr-controls { background: #fff; border: 1px solid #E6E3D8; border-radius: 16px; padding: 11px 13px; margin: 20px 0 14px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); }
.yr-range { display: flex; gap: 4px; background: var(--dc-panel); border: 1px solid var(--dc-hair2); border-radius: 999px; padding: 3px; }
.yr-range button { font-family: var(--f-mono); font-size: 10.5px; font-weight: 600; color: var(--dc-muted); padding: 6px 12px; border: none; background: transparent; border-radius: 999px; cursor: pointer; }
.yr-range button.on { color: #fff; background: var(--dc-ink); }
.yr-sel { position: relative; display: inline-flex; align-items: center; gap: 7px; background: var(--dc-panel); border: 1px solid var(--dc-hair2); border-radius: 999px; padding: 7px 26px 7px 12px; cursor: pointer; }
.yr-sel > span { font-family: var(--f-mono); font-size: 8px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dc-faint); }
.yr-sel select { appearance: none; -webkit-appearance: none; border: none; background: transparent; font-family: var(--f-mono); font-size: 11px; font-weight: 600; color: var(--dc-ink); outline: none; cursor: pointer; max-width: 132px; }
.yr-sel svg { position: absolute; right: 11px; pointer-events: none; }
.yr-search { flex: 1; min-width: 210px; display: flex; align-items: center; gap: 8px; background: var(--dc-panel); border: 1px solid var(--dc-hair2); border-radius: 999px; padding: 8px 14px; }
.yr-search input { flex: 1; min-width: 0; border: none; background: none; outline: none; font-family: var(--f-body); font-size: 12.5px; color: var(--dc-ink); }
.yr-search input::placeholder { color: var(--dc-faint); }
.yr-search span { font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); white-space: nowrap; }
.yr-score { display: grid; grid-template-columns: repeat(6, 1fr); background: var(--dc-ink); border-radius: 16px; overflow: hidden; color: #F7F5F0; margin-bottom: 14px; }
.yr-cell { padding: 15px 17px; border-left: 1px solid rgba(255, 255, 255, .09); min-width: 0; }
.yr-cell:first-child { border-left: none; }
.yr-cap { display: block; font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(247, 245, 240, .5); white-space: nowrap; }
.yr-cell b { display: block; font-family: var(--f-disp); font-weight: 400; font-size: 26px; margin-top: 6px; line-height: .9; color: #F7F5F0; white-space: nowrap; }
.yr-cell b.grn { color: var(--dc-mint); }
.yr-cell b.red { color: #E0655E; }
.yr-cell b.gold { color: var(--dc-gold); }
.yr-cell i { display: block; font-style: normal; font-family: var(--f-mono); font-size: 9px; color: rgba(247, 245, 240, .45); margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yr-panel { background: #fff; border: 1px solid #E6E3D8; border-radius: 16px; padding: 17px 20px; box-shadow: 0 1px 2px rgba(16, 16, 20, .04); margin-bottom: 14px; min-width: 0; }
.yr-panel-head { display: flex; align-items: baseline; gap: 12px; }
.yr-panel-t { font-family: var(--f-disp); font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--dc-ink); white-space: nowrap; }
.yr-note { margin-left: auto; font-family: var(--f-mono); font-size: 9.5px; color: var(--dc-faint); text-align: right; }
#yr-bank { display: block; width: 100%; height: 160px; margin-top: 10px; }
.yr-axis { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 9px; color: var(--dc-faint); margin-top: 6px; }
.yr-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.yr-2col .yr-panel, .yr-3col .yr-panel { margin-bottom: 0; }
.yr-2col svg { display: block; width: 100%; height: 140px; margin-top: 10px; }
.yr-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.yr-bars { margin-top: 10px; display: flex; flex-direction: column; }
.yr-bar { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #F0ECE3; }
.yr-bar:last-child { border-bottom: none; }
.yr-bar-k { font-family: var(--f-mono); font-size: 10.5px; color: var(--dc-ink); width: 88px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yr-bar-t { flex: 1; height: 8px; border-radius: 99px; background: var(--dc-panel); position: relative; overflow: hidden; }
.yr-bar-f { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 99px; }
.yr-bar-f.pos { background: var(--dc-green); }
.yr-bar-f.neg { background: #D97862; }
.yr-bar b { font-family: var(--f-mono); font-size: 11px; font-weight: 700; width: 64px; text-align: right; flex-shrink: 0; }
.yr-bar b.grn, .yr-c-pl.grn { color: var(--dc-green-ink); }
.yr-bar b.red, .yr-c-pl.red { color: var(--dc-red); }
.yr-none { font-family: var(--f-mono); font-size: 10px; color: var(--dc-faint); padding: 14px 0; }
.yr-none.big { padding: 26px 0; text-align: center; font-size: 12px; }
.yr-table { --yr-cols: 74px minmax(0, 1.3fr) minmax(0, 1.1fr) 88px 62px 62px 70px 52px 60px 84px; padding-bottom: 12px; }
.yr-th { display: grid; grid-template-columns: var(--yr-cols); gap: 10px; padding: 10px 4px 9px; border-bottom: 1px solid #E6E3D8; margin-top: 6px; font-family: var(--f-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--dc-faint); }
.yr-th span { cursor: pointer; user-select: none; white-space: nowrap; }
.yr-th span:hover { color: var(--dc-ink); }
.yr-th span.on { color: var(--dc-ink); }
.yr-th span.r { text-align: right; }
.yr-th i { font-style: normal; }
.yr-row { display: grid; grid-template-columns: var(--yr-cols); gap: 10px; padding: 10px 4px; border-bottom: 1px solid #F0ECE3; align-items: center; }
.yr-row:last-child { border-bottom: none; }
.yr-c-date { font-family: var(--f-mono); font-size: 10px; color: var(--dc-muted); white-space: nowrap; }
.yr-c-event { font-size: 10.5px; color: var(--dc-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yr-c-pick { font-family: var(--f-head); font-weight: 700; font-size: 12px; color: var(--dc-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yr-c-pick span { color: var(--dc-faint); font-weight: 400; font-size: 10.5px; }
.yr-c-book { font-family: var(--f-mono); font-size: 10px; color: var(--dc-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yr-c-num { font-family: var(--f-mono); font-size: 11px; font-weight: 600; color: var(--dc-ink); white-space: nowrap; }
.yr-c-num.dim { font-size: 10.5px; font-weight: 400; color: var(--dc-muted); }
.yr-chip { display: inline-block; font-family: var(--f-mono); font-size: 9.5px; font-weight: 700; border-radius: 6px; padding: 2px 6px; white-space: nowrap; }
.yr-chip.pos { background: var(--dc-green-bg); color: var(--dc-green-ink); }
.yr-chip.neg { background: var(--dc-red-bg); color: var(--dc-red); }
.yr-chip.flat { background: var(--dc-panel); color: var(--dc-faint); }
.yr-chip.res { font-size: 9px; font-weight: 800; padding: 2px 7px; }
.yr-chip.res.open { background: #F5EDD6; color: #8A6D1F; }
.yr-c-pl { font-family: var(--f-mono); font-size: 11px; font-weight: 700; text-align: right; white-space: nowrap; }
.yr-c-pl.dim { color: var(--dc-faint); font-weight: 500; }
.yr-c-sub { display: none; }
.yr-showall { display: block; margin: 14px auto 4px; font-family: var(--f-mono); font-size: 11px; color: var(--dc-muted); background: var(--dc-panel); border: 1px solid #F0ECE3; border-radius: 999px; padding: 8px 22px; cursor: pointer; }
.yr-showall:hover { border-color: rgba(20, 19, 15, .3); color: var(--dc-ink); }

/* free-sample tags — the two unlocked picks a free viewer gets, on the board
   rows and the Fight IQ carousel chips */
.vb-freetag { font-family: var(--f-mono); font-style: normal; font-weight: 700; font-size: 8.5px; letter-spacing: .8px; color: #0A6E4C; background: #EAF6EF; border: 1px solid #BFE3CF; border-radius: 5px; padding: 2px 5px; margin-left: 6px; vertical-align: 2px; white-space: nowrap; }
.vb-freetag.vb-ft-m { display: none; }

/* desktop-only helpers for elements that restructure on mobile */
.vb-td-right { display: contents; }
.vb-mpick, .vb-mlabel { display: none; }
.lb-right { display: contents; }
.dc-tabs { display: none; }

/* ---------------------------------------------------------------- mobile */
@media (max-width: 760px) {
  /* shell: slim brand bar + bottom thumb tabs */
  .dc-head-in { padding: 0 14px; gap: 8px; height: 52px; }
  .dc-brand img { height: 24px; }
  .dc-nav { display: none; }
  .dc-fmt { padding: 4px 9px; font-size: 10px; }
  details.dc-regdd summary { padding: 4px 9px; font-size: 10px; gap: 5px; }
  .dc-signin { padding: 4px 10px; font-size: 10px; }
  .dc-acct { width: 26px; height: 26px; }
  .dc-acct svg { width: 13px; height: 13px; }
  .dc-main { padding: 12px 14px 104px; }
  .dc-tabs {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: #0B0B0E; border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 6px 6px calc(10px + env(safe-area-inset-bottom, 10px));
  }
  .dc-tabs a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 0 4px; text-decoration: none; color: rgba(247, 245, 240, .5); }
  .dc-tabs a.on { color: var(--dc-mint); }
  .dc-tabs span { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .8px; text-transform: uppercase; }

  /* video */
  .vp-hero { grid-template-columns: 1fr; gap: 12px; }
  .vp-pick { grid-template-columns: 1fr; gap: 10px; padding: 14px 16px; }
  .vp-rule-note { display: none; }
  .vp-title { font-size: 17px; margin-bottom: 10px; }
  .vp-rule-t { font-size: 16px; }
  .vp-vs { display: none; }
  .vp-name { font-size: 13.5px; }

  /* board */
  .dd-sub { display: none; }
  .dd-menu { width: min(378px, calc(100vw - 28px)); }
  .tr-mini, .tr-hit, .tr-sep { display: none; }
  .tr-btn { padding: 8px 12px; gap: 8px; }
  .tr-units { font-size: 14px; }
  .vb-stage { height: 322px; }
  /* same edge-hugging cover treatment as desktop, just a wider slice and an
     earlier fade so the headline stays clear on a narrow stage */
  .vb-cut {
    width: 41%;
    -webkit-mask-image: linear-gradient(to right, #000 55%, transparent 94%);
    mask-image: linear-gradient(to right, #000 55%, transparent 94%);
  }
  .vb-toprow { top: 14px; padding: 0 14px; justify-content: center; }
  .vb-live { display: none; }
  .vb-when { font-size: 8.5px; letter-spacing: 1.5px; text-align: center; text-shadow: 0 1px 6px rgba(0, 0, 0, .85), 0 0 14px rgba(0, 0, 0, .6); }
  .vb-center { padding-bottom: 26px; }
  .vb-kicker { font-size: 9px; letter-spacing: 3.5px; }
  .vb-names { margin-top: 10px; }
  .vb-nm { font-size: 36px; line-height: .92; }
  .vb-nm.long { font-size: 26px; }
  .vb-vs { gap: 10px; margin: 7px 0; }
  .vb-vs span { width: 30px; }
  .vb-vs b { font-size: 10px; letter-spacing: 4px; }
  .vb-callbar { padding: 11px 14px; gap: 9px; }
  .vb-call-lab { font-size: 8.5px; white-space: nowrap; }
  .vb-call-pick { font-size: 14px; }
  .vb-call-badge { font-size: 13px; padding: 5px 10px; }
  .vb-cell { padding: 12px 14px; }
  .vb-cell-lab { font-size: 7.5px; }
  .vb-cell-val { margin-top: 5px; gap: 5px; }
  .vb-cell-val .big { font-size: 24px; }
  .vb-cell-val .note { font-size: 10px; }
  .vb-seg:not(.vb-seg-table) { display: none; }
  .vb-seg-table summary { pointer-events: none; }
  .vb-th { display: none; }
  .vb-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
  .vb-td-label, .vb-td-pick { display: none; }
  /* the matchup block must GROW or the right cluster (edge/price/padlock)
     hugs short names instead of the row's right edge */
  .vb-td-match { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; }
  /* FREE tag moves to the meta line on mobile — at the start of the line it
     can never be clipped by the name ellipsis */
  .vb-freetag.vb-ft-d { display: none; }
  .vb-freetag.vb-ft-m { display: inline-block; margin: 0 5px 0 0; vertical-align: 1px; }
  .vb-face { width: 30px; height: 30px; border-radius: 9px; }
  .vb-mnames { flex: 1; min-width: 0; }
  .vb-mnames b { font-size: 13px; }
  .vb-mnames i { font-size: 10px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .vb-mpick, .vb-mlabel { display: inline; font-style: normal; }
  /* edge chip + price sit on ONE row, flush right — the stacked column read
     as misaligned (chip and price ended on different right edges) */
  .vb-td-right { display: flex; align-items: center; justify-content: flex-end; gap: 7px; flex-shrink: 0; }
  .vb-td-edge { font-size: 10px; padding: 2px 7px; border-radius: 6px; background: #F5F2EA; }
  .vb-td-edge.strong { background: var(--dc-green-bg); }
  .vb-td-price { font-size: 12px; }
  /* locked rows: collapse the pick/edge/price locks into ONE clean lock.
     .vb-row.locked prefix out-specifies the .vb-td-pick.lock inline-flex rule
     that would otherwise survive the plain .vb-td-pick{display:none} above. */
  .vb-row.locked .vb-mpick { display: none; }
  .vb-row.locked .vb-td-pick { display: none; }
  .vb-row.locked .vb-td-right { flex-direction: row; }
  .vb-row.locked .vb-td-edge.lock { background: none; padding: 0; }
  .vb-row.locked .vb-td-price { display: none; }
  /* hero strip: padlock + bucket stay on ONE line; the word "locked" is
     redundant next to a padlock at this width */
  .vb-cell-val { flex-wrap: wrap; }
  .vb-cell-val .big { white-space: nowrap; }
  .vb-cell-val .big .glock { margin-right: 2px; }
  .vb-cell-val .big .glock svg { width: 12px; height: 12px; }
  .vb-cell-val .note.lockednote { display: none; }
  /* unlock banner: lighter — drop the icon, CTA goes full-width below */
  .vb-unlock { flex-wrap: wrap; padding: 12px 14px; gap: 8px 10px; }
  .vb-unlock-lock { display: none; }
  .vb-unlock-txt b { font-size: 13px; }
  .vb-unlock-txt i { font-size: 11.5px; }
  .vb-unlock-cta { flex: 1 1 100%; margin-left: 0; text-align: center; }
  /* card rows: bookmaker logo hidden — edge + price is all that fits */
  .vb-row .vb-bk { display: none; }
  .vb-freetag { font-size: 8px; padding: 2px 4px; margin-left: 5px; }

  /* FightEdge poster — same arrangement as desktop, scaled down:
     centered glass panel, pick flanking left, dim opp silhouette right */
  .fe, .fe-c { min-height: 316px; }
  .fe-img, .fe-c .fe-img { height: 100% !important; max-width: 52%; }
  .fe-img.pick { left: 0; }
  .fe-img.opp { right: 0; }
  .fe-card, .fe-c .fe-card { width: min(300px, 82%); margin: 14px 0; padding: 18px 16px 16px; gap: 10px; }
  .fe-name, .fe-c .fe-name { font-size: 26px; }
  .fe-sub { font-size: 9.5px; }
  .fe-buy, .fe-c .fe-buy { padding-top: 11px; gap: 8px; }
  .fe-price, .fe-c .fe-price { font-size: 46px; }
  .fe-tag { font-size: 11px; padding: 5px 10px; border-radius: 7px; }
  .fe-pass { font-size: 10px; padding: 6px 12px; }

  /* fight iq */
  .fi-grid2 { grid-template-columns: 1fr; gap: 10px; }
  .fi-ai-grid { grid-template-columns: 1fr; }
  .fi-tape-names, .fi-tape-row { grid-template-columns: 1fr 82px 1fr; gap: 8px; }
  .fi-tape-names .a, .fi-tape-names .b { font-size: 14px; }
  .fi-tape-row .a, .fi-tape-row .b { font-size: 12.5px; }
  .fi-book { grid-template-columns: 32px 1fr 52px 46px; }
  .fi-book-logo { display: none; }
  .fi-card { padding: 15px 16px; }
  .fi-card-t { font-size: 14px; }

  /* leaderboard (light) */
  .lb-hero { margin-bottom: 14px; }
  .lb-hero-row { gap: 8px; padding-bottom: 13px; }
  .lb-h1 { font-size: 26px; flex-basis: 100%; max-width: none; }
  .lb-sub { font-size: 11.5px; margin-top: 10px; }
  .lb-scores { margin-left: 0; margin-top: 4px; }
  .lb-score { text-align: left; padding-left: 16px; margin-left: 16px; }
  .lb-score b { font-size: 20px; }
  .lb-score span { font-size: 7px; margin-top: 4px; }
  /* poster rail — swipe through the top three; tap flips (hover is N/A on touch,
     so BOTH the rotation and the face swap listen only to .flip here) */
  .lbp-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 0 -14px; padding: 0 14px 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .lbp-grid::-webkit-scrollbar { display: none; }
  .lbp { flex: 0 0 85%; scroll-snap-align: center; height: 410px; animation: none; }
  .lbp:hover .lbp-in, .lbp:focus-visible .lbp-in { transform: none; }
  .lbp:has(a:focus-visible) .lbp-in { transform: none; }
  .lbp:hover .lbp-front, .lbp:focus-visible .lbp-front { opacity: 1; }
  .lbp:hover .lbp-back, .lbp:focus-visible .lbp-back { opacity: 0; }
  .lbp:has(a:focus-visible) .lbp-front { opacity: 1; }
  .lbp:has(a:focus-visible) .lbp-back { opacity: 0; }
  .lbp.flip .lbp-in { transform: rotateY(180deg); }
  .lbp.flip .lbp-front { opacity: 0; }
  .lbp.flip .lbp-back { opacity: 1; }
  .lbp-nm b { font-size: 20px; }
  .lbp-roi { font-size: 36px; }
  .lbp-lrow { padding: 12px 0; }
  .lbp-cta { margin-top: 16px; }
  .lbp-note { margin-bottom: 14px; }
  .lb-controls { flex-wrap: wrap; gap: 8px; }
  .lb-search { flex-basis: 100%; height: 40px; }
  .lb-sel { flex: 1; height: 40px; justify-content: space-between; }
  .lb-sel select { max-width: none; width: 100%; }
  .lb-cats { flex-wrap: wrap; margin: 10px 0 12px; }
  .lb-cat { flex-shrink: 0; }
  .lb-more-menu { left: 0; right: auto; }
  .lb-th { display: none; }
  .lb-row { display: flex; align-items: center; gap: 11px; padding: 11px 14px; }
  .lb-row.xtra { display: none; }
  .lb-table.all .lb-row.xtra { display: flex; }
  .lb-rank { width: 18px; font-size: 12px; flex-shrink: 0; }
  .lb-rank.top { font-size: 14px; }
  .lb-ch { flex: 1; }
  /* mobile: ROI only (the rank shows the order) — tap the row for the full sheet */
  .lb-hit, .lb-picks, .lb-dots, .lb-metric { display: none; }
  /* locked rows: same specificity fix — .lb-hit.lock{inline-flex} would survive */
  .lb-row.locked .lb-hit, .lb-row.locked .lb-picks, .lb-row.locked .lb-metric { display: none; }
  .lb-right { display: flex; align-items: center; flex-shrink: 0; }
  .lb-roi { font-size: 14.5px; }
  .lb-ch-name { font-size: 13.5px; }
  .lb-foot { flex-wrap: wrap; padding: 12px 14px; }

  /* tracker */
  .bt-hero { margin-bottom: 12px; }
  .bt-hero-row { gap: 10px; margin-top: 6px; }
  .bt-pill { padding: 5px 11px 5px 6px; gap: 8px; }
  .bt-pill-av { width: 24px; height: 24px; font-size: 10px; }
  .bt-pill-tx b { font-size: 10.5px; }
  .bt-pill-tx span { font-size: 7.5px; }
  /* summary strip collapses to the compact scoreboard; the year page has the rest */
  .bt-strip-head { gap: 14px; row-gap: 10px; padding: 12px 13px; flex-wrap: wrap; }
  .bt-sum-cap { font-size: 6.5px; letter-spacing: 1px; }
  .bt-sum-v { font-size: 14.5px; }
  .bt-sum.roi, .bt-sum-div.roi { display: none; }
  .bt-strip-mini { display: block; width: 54px; height: 16px; margin-left: auto; flex-shrink: 0; }
  .bt-year-link { margin-left: 0; font-size: 9px; padding: 4px 10px; gap: 5px; }
  .bt-strip-toggle, .bt-strip-body { display: none !important; }
  .bt-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .bt-card { padding: 12px 13px 14px; }
  .bt-head { flex-wrap: wrap; }
  .bt-head-t { font-size: 16px; }
  .bt-evsel { max-width: 100%; flex-basis: 100%; order: 3; height: 38px; display: flex; }
  .bt-evsel select { width: 0; flex: 1; }
  /* fighters stack full-width, thumb-sized */
  .bt-frow { grid-template-columns: 1fr; gap: 8px; }
  .bt-vs { display: none; }
  .bt-smain em { font-size: 13px; }
  .bt-sright b { font-size: 14px; }
  /* the slip docks to the thumb: fixed sheet above the tab bar */
  .bt-rail { display: contents; }
  .bt-slip { position: fixed; left: 10px; right: 10px; top: auto; bottom: calc(64px + env(safe-area-inset-bottom, 10px)); z-index: 60; max-height: 68vh; overflow: auto; box-shadow: 0 -6px 40px rgba(0, 0, 0, .38), 0 2px 10px rgba(0, 0, 0, .22); }
  .bt-slip:not(.live) { display: none; }
  .bt-slip-hero { height: 96px; }
  .bt-slip-cut { height: 150px; bottom: -50px; }
  .bt-docket { order: 4; }
  .bt-open-sum { display: none; }
  .bt-sync { display: none; }
  .bt-dk-line { padding-left: 41px; gap: 6px 7px; }
  .bt-dk-win { flex-basis: auto; }
  .bt-acct { padding: 11px 13px; gap: 10px; }
  .bt-acct-txt { font-size: 11px; flex-basis: 100%; }

  /* a year in your book */
  .yr-crumb { margin-bottom: 10px; }
  .yr-hero { gap: 12px; }
  .yr-h1 { font-size: 30px; margin-top: 5px; }
  .yr-sub { font-size: 11.5px; margin-top: 8px; }
  .yr-controls { padding: 9px 10px; gap: 8px; margin: 14px 0 12px; }
  .yr-range button { padding: 6px 13px; font-size: 10px; }
  .yr-sel { padding: 6px 24px 6px 11px; }
  .yr-search { flex-basis: 100%; order: 5; min-width: 0; }
  .yr-score { grid-template-columns: repeat(3, 1fr); border-radius: 14px; }
  .yr-cell { padding: 12px; }
  .yr-cell:nth-child(3n + 1) { border-left: none; }
  .yr-cell:nth-child(n + 4) { border-top: 1px solid rgba(255, 255, 255, .09); }
  .yr-cell b { font-size: 19px; margin-top: 4px; }
  .yr-cell i { display: none; }
  .yr-panel { padding: 13px 14px; border-radius: 14px; }
  .yr-panel-t { font-size: 13px; }
  .yr-note { font-size: 8px; }
  #yr-bank { height: 96px; margin-top: 8px; }
  .yr-2col, .yr-3col { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .yr-2col .yr-panel, .yr-3col .yr-panel { margin-bottom: 0; }
  .yr-2col svg { height: 84px; margin-top: 8px; }
  /* every bet: rows become cards — pick + meta line, CLV chip, P/L */
  .yr-th { display: none; }
  .yr-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; grid-template-rows: auto auto; column-gap: 9px; row-gap: 2px; padding: 9px 0; }
  .yr-c-date, .yr-c-event, .yr-c-book, .yr-c-num, .yr-c-res { display: none; }
  .yr-c-pick { grid-column: 1; grid-row: 1; font-size: 12.5px; }
  .yr-c-sub { display: block; grid-column: 1; grid-row: 2; font-family: var(--f-mono); font-size: 8px; color: var(--dc-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .yr-c-clv { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .yr-c-pl { grid-column: 3; grid-row: 1 / 3; align-self: center; }

  /* channel */
  .cn-banner { height: 86px; }
  .cn-hero-row { flex-wrap: wrap; }
  .cn-av { width: 64px; height: 64px; border-radius: 16px; font-size: 22px; }
  .cn-name { font-size: 19px; }
  .cn-yt { width: 100%; text-align: center; margin-top: 12px; padding: 11px; }
  .cn-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cn-stat { padding: 13px 15px; }
  .cn-stat-val { font-size: 23px; }
  .cn-shelf { display: flex; overflow-x: auto; gap: 6px; scrollbar-width: none; }
  .cn-shelf::-webkit-scrollbar { display: none; }
  .cn-trophy { flex: 0 0 92px; }
  .cn-medal { width: 48px; height: 48px; font-size: 18px; }
  .cn-thumb { width: 62px; height: 38px; }
}
