/* BTH Design System — structural responsive (00cc066 + Live Games / layout pass) */
:root {
  --bth-bg: #050a18;
  --bth-bg-2: #0a0f18;
  --bth-surface: #0b1220;
  --bth-surface-2: #121c31;
  --bth-surface-3: #162038;
  --bth-border: rgba(0, 180, 255, 0.35);
  --bth-border-soft: rgba(0, 180, 255, 0.18);
  --bth-accent: #007bff;
  --bth-cyan: #00d2ff;
  --bth-text: #ffffff;
  --bth-muted: #94a3b8;
  --bth-live: #22c55e;
  --bth-urgent: #ef4444;
  --bth-caution: #eab308;
  --bth-radius: 12px;
  --bth-max: 1240px;
  --bth-header-h: 64px;
  --bth-bottom-nav-h: 72px;
  --bth-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body.bth-body {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: var(--bth-font);
  color: var(--bth-text);
  background-color: var(--bth-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 123, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(0, 210, 255, 0.08), transparent 50%),
    linear-gradient(rgba(0, 210, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  background-attachment: fixed;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.bth-main {
  width: 100%;
  max-width: min(var(--bth-max), 100%);
  margin: 0 auto;
  padding: 16px 16px calc(var(--bth-bottom-nav-h) + 24px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  min-width: 0;
}

/* ========== HEADER ========== */
.bth-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  background: rgba(5, 10, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bth-border-soft);
}

.bth-header__inner {
  width: 100%;
  max-width: var(--bth-max);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  min-width: 0;
}

.bth-logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

/* Accepted mobile logo: width-driven horizontal lockup (square asset, padded mark) */
.bth-logo img {
  display: block;
  width: min(280px, 82vw);
  height: auto;
  aspect-ratio: 2.37 / 1;
  max-width: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 52%;
}

@media (min-width: 390px) {
  .bth-logo img {
    width: min(280px, 82vw);
  }
}

@media (min-width: 430px) {
  .bth-logo img {
    width: min(300px, 82vw);
  }
}

@media (min-width: 640px) {
  .bth-logo img {
    width: min(320px, 70vw);
  }
}

@media (min-width: 768px) {
  .bth-logo {
    flex: 0 1 auto;
    max-width: min(340px, 50vw);
  }
  .bth-logo img {
    width: min(340px, 50vw);
  }
}

.bth-nav {
  display: none;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
}

.bth-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 64px;
  padding: 8px 10px 10px;
  color: var(--bth-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
}

.bth-nav__item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.bth-nav__item:hover {
  color: var(--bth-text);
  background: rgba(0, 123, 255, 0.08);
}

.bth-nav__item.is-active {
  color: var(--bth-cyan);
  text-shadow: 0 0 12px rgba(0, 210, 255, 0.35);
}

.bth-nav__item.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--bth-cyan);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

/* ========== CARDS / SECTIONS ========== */
.bth-section {
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bth-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}

.bth-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}

.bth-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bth-live);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  flex-shrink: 0;
}

.bth-dot--muted {
  background: var(--bth-muted);
  box-shadow: none;
}

.bth-link {
  color: var(--bth-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.bth-link:hover { text-decoration: underline; }

.bth-card {
  background: linear-gradient(180deg, rgba(18, 28, 49, 0.92), rgba(11, 18, 32, 0.96));
  border: 1px solid var(--bth-border);
  border-radius: var(--bth-radius);
  box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.bth-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--bth-text);
}

.bth-card__title .bth-icon-sq {
  width: 10px;
  height: 10px;
  background: var(--bth-cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.7);
  flex-shrink: 0;
}

.bth-empty {
  color: var(--bth-muted);
  font-size: 14px;
  padding: 18px 8px;
  text-align: center;
}

.bth-card__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--bth-border-soft);
}

/* ========== HERO ========== */
.bth-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--bth-radius);
  border: 1px solid var(--bth-border);
  margin-bottom: 22px;
  min-height: 240px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 40%, rgba(0, 210, 255, 0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.25), transparent 45%),
    linear-gradient(135deg, #07101f 0%, #0a1a3a 45%, #051225 100%);
}

.bth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 210, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
  pointer-events: none;
}

/* Circuit orb — kept inside overflow:hidden on ~390px phones */
.bth-hero::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: min(160px, 45%);
  height: min(160px, 45%);
  border-radius: 50%;
  border: 2px solid rgba(0, 210, 255, 0.25);
  box-shadow:
    inset 0 0 60px rgba(0, 123, 255, 0.15),
    0 0 80px rgba(0, 210, 255, 0.12);
  background: radial-gradient(circle at 40% 40%, rgba(0, 210, 255, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bth-hero__content {
  position: relative;
  z-index: 1;
  padding: 24px 16px;
  width: 100%;
  max-width: 640px;
  min-width: 0;
}

@media (min-width: 768px) {
  .bth-hero { min-height: 320px; }
  .bth-hero__content { padding: 40px 36px; }
  .bth-hero::after {
    right: 16px;
    width: min(280px, 36%);
    height: min(280px, 36%);
  }
}

.bth-hero__headline {
  font-size: clamp(26px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.bth-hero__headline .bth-accent-line {
  color: var(--bth-cyan);
  text-shadow: 0 0 24px rgba(0, 210, 255, 0.45);
}

.bth-hero__sub {
  color: #c7d7ee;
  font-size: clamp(14px, 2.5vw, 17px);
  max-width: 42ch;
  margin-bottom: 22px;
}

.bth-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
}

.bth-hero__actions .bth-btn {
  width: 100%;
  flex: 1 1 100%;
}

@media (min-width: 640px) {
  .bth-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .bth-hero__actions .bth-btn {
    width: auto;
    flex: 0 1 auto;
  }
}

.bth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.bth-btn:hover { transform: translateY(-1px); }

.bth-btn--primary {
  background: var(--bth-accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.35);
}

.bth-btn--primary:hover { background: #0688ff; }

.bth-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.bth-btn--ghost:hover {
  border-color: var(--bth-cyan);
  color: var(--bth-cyan);
}

/* ========== LIVE GAMES ========== */
.bth-rail-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.bth-rail {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.bth-rail::-webkit-scrollbar { height: 6px; }
.bth-rail::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 255, 0.35);
  border-radius: 4px;
}

/* One complete card per mobile viewport */
.bth-game-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--bth-surface);
  border: 1px solid var(--bth-border);
  border-radius: var(--bth-radius);
  padding: 14px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .bth-game-card {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
  }
}

.bth-game-card__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bth-live);
  margin-bottom: 10px;
}

.bth-game-card__status.is-scheduled {
  color: var(--bth-muted);
}

.bth-game-card__status.is-live {
  color: var(--bth-live);
}

.bth-game-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  min-width: 0;
}

.bth-game-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.bth-game-card__team img {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.bth-game-card__team span {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Abbrs on phone; full names from 640+ */
.bth-team-abbr { display: inline; }
.bth-team-full { display: none; }

@media (min-width: 640px) {
  .bth-team-abbr { display: none; }
  .bth-team-full { display: inline; }
}

.bth-game-card__score {
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: right;
  flex-shrink: 0;
}

.bth-rail-btn { display: none; }

/* ========== PANEL GRID — stack until 1024 ========== */
.bth-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bth-news-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--bth-border-soft);
}

.bth-news-item:last-child { border-bottom: none; }

.bth-news-item a {
  color: #7dd3fc;
  font-weight: 700;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bth-news-item a:hover {
  text-decoration: underline;
  color: var(--bth-cyan);
}

.bth-news-item p {
  color: var(--bth-muted);
  font-size: 13px;
  margin-top: 4px;
}

.bth-model-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bth-cyan);
  margin-bottom: 6px;
}

/* ========== DASHBOARD + ACTIONS — stack until 1024 ========== */
.bth-dash-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bth-favorite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.bth-favorite img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  object-fit: contain;
}

.bth-favorite h3 {
  font-size: 20px;
  font-weight: 800;
}

.bth-favorite p { color: var(--bth-muted); }

.bth-insight {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid var(--bth-border-soft);
  font-size: 14px;
  color: #dbeafe;
  overflow-wrap: anywhere;
}

.bth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bth-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid var(--bth-border);
  background: rgba(11, 18, 32, 0.85);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bth-text);
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bth-action:hover {
  border-color: var(--bth-cyan);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.15);
}

.bth-action svg {
  width: 22px;
  height: 22px;
  stroke: var(--bth-cyan);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* ========== COACH ========== */
.bth-coach {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: var(--bth-radius);
  border: 1px solid var(--bth-border);
  background:
    linear-gradient(90deg, rgba(0, 123, 255, 0.18), rgba(11, 18, 32, 0.95) 55%),
    var(--bth-surface);
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .bth-coach {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
  }
}

.bth-coach__title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bth-coach__sub {
  color: var(--bth-muted);
  margin-top: 4px;
}

.bth-coach img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ========== FOOTER ========== */
.bth-footer {
  border-top: 1px solid var(--bth-border-soft);
  padding: 24px 16px 32px;
  text-align: center;
  color: var(--bth-muted);
  font-size: 13px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .bth-footer {
    padding-bottom: calc(24px + var(--bth-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== MOBILE BOTTOM NAV ========== */
.bth-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  width: 100%;
  max-width: 100%;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 10, 24, 0.96);
  border-top: 1px solid var(--bth-border-soft);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.bth-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--bth-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 2px;
  min-height: 44px;
  min-width: 0;
  justify-content: center;
  overflow: hidden;
}

.bth-bottom-nav__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.bth-bottom-nav__item.is-active {
  color: var(--bth-cyan);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.bth-bottom-nav__center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-14px);
  min-width: 0;
}

.bth-bottom-nav__fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #1aa7ff, #0057d9 70%);
  border: 2px solid rgba(0, 210, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.15), 0 8px 24px rgba(0, 123, 255, 0.45);
  color: #fff;
  flex-shrink: 0;
}

.bth-bottom-nav__fab svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.container { width: 100%; max-width: 100%; min-width: 0; }

/* ========== DESKTOP FIDELITY (≥1024) — cohesive overrides only ========== */
@media (min-width: 1024px) {
  :root {
    --bth-bg: #01060D;
    --bth-cyan: #09A6F5;
  }

  body.bth-body {
    background-color: var(--bth-bg);
  }

  .bth-main {
    padding: 24px 28px 48px;
  }

  /* Header */
  .bth-header {
    background: rgba(1, 6, 13, 0.94);
  }

  .bth-header__inner {
    min-height: 112px;
    padding: 12px 28px;
  }

  /* Logo — desktop 320×92 box; mobile width-driven lockup preserved below 1024 */
  .bth-logo img {
    width: 320px;
    height: 92px;
    max-width: 320px;
    max-height: none;
    object-fit: cover;
    object-position: center 50%;
  }

  /* Nav */
  .bth-nav {
    display: flex;
    gap: 6px;
  }

  .bth-nav__item {
    min-width: 72px;
    gap: 6px;
  }

  .bth-nav__item svg {
    width: 24px;
    height: 24px;
  }

  /* Hero */
  .bth-hero {
    min-height: 426px;
  }

  .bth-hero::after {
    right: 40px;
    width: min(360px, 42%);
    height: min(360px, 42%);
  }

  .bth-hero__content {
    max-width: 47%;
    padding: 40px 48px;
  }

  .bth-hero__headline {
    font-size: 60px;
  }

  .bth-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
  }

  .bth-hero__actions .bth-btn {
    width: auto;
    flex: 0 1 auto;
    min-height: 58px;
    min-width: 190px;
    padding: 14px 22px;
  }

  /* Live games rail */
  .bth-rail {
    gap: 16px;
  }

  .bth-game-card {
    flex: 0 0 290px;
    width: 290px;
    min-height: 140px;
  }

  .bth-rail-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bth-border);
    background: rgba(11, 18, 32, 0.9);
    color: var(--bth-cyan);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .bth-rail-btn--prev { left: 0; }
  .bth-rail-btn--next { right: 0; }

  /* Panel grid */
  .bth-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;
  }

  .bth-panel-grid .bth-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
  }

  .bth-panel-grid .bth-card__body { flex: 1; }

  /* Dashboard row */
  .bth-dash-row {
    grid-template-columns: 0.41fr 0.55fr;
    gap: 28px;
  }

  .bth-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bth-action {
    min-height: 85px;
  }

  /* Coach */
  .bth-coach {
    min-height: 120px;
    padding: 28px 36px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Hide mobile bottom nav on desktop */
  .bth-bottom-nav { display: none; }
}


/* ========================================================================== */
/* LEVORD FULL-SITE CONTINUITY EXTENSION V1 — extends approved BTH baseline   */
/* ========================================================================== */
.bth-page { width:100%; min-width:0; }
.bth-page-head { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin:8px 0 18px; }
.bth-page-head__eyebrow { color:var(--bth-cyan); font-size:10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; margin-bottom:5px; }
.bth-page-head h1 { font-size:clamp(28px,5vw,46px); line-height:1.05; margin:0; }
.bth-page-head p { color:var(--bth-muted); margin-top:8px; max-width:74ch; }
.bth-page-head__actions { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.bth-chip-row { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; margin:0 0 18px; padding-bottom:2px; }
.bth-chip-row::-webkit-scrollbar { display:none; }
.bth-chip { flex:0 0 auto; border:1px solid var(--bth-border); border-radius:999px; padding:8px 13px; color:#c9d8ea; background:rgba(11,18,32,.86); font-size:12px; font-weight:800; }
.bth-chip.is-active { background:var(--bth-cyan); color:#04101b; border-color:var(--bth-cyan); box-shadow:0 0 18px rgba(0,210,255,.2); }
.bth-search { width:100%; min-height:48px; border:1px solid var(--bth-border); border-radius:10px; background:rgba(11,18,32,.9); color:var(--bth-text); padding:0 14px; margin-bottom:14px; }
.bth-grid-2 { display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:18px; }
.bth-grid-3 { display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:18px; }
.bth-card--flat { box-shadow:none; }
.bth-muted { color:var(--bth-muted); }
.bth-cyan { color:var(--bth-cyan); }
.bth-value { font-size:clamp(22px,5vw,34px); font-weight:950; line-height:1; }
.bth-small { font-size:11px; color:var(--bth-muted); }
.bth-status-pill { display:inline-flex; align-items:center; min-height:30px; border:1px solid var(--bth-border); border-radius:999px; padding:5px 10px; color:var(--bth-cyan); font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.07em; background:rgba(0,210,255,.05); }
.bth-team-logo { width:54px; height:54px; object-fit:contain; }
.bth-team-logo--lg { width:82px; height:82px; }
.bth-team-logo--xl { width:110px; height:110px; }
.bth-matchup { display:grid; grid-template-columns:1fr 36px 1fr; gap:8px; align-items:center; text-align:center; }
.bth-matchup__team { display:grid; justify-items:center; gap:5px; min-width:0; }
.bth-matchup__team strong { font-size:20px; }
.bth-matchup__at { color:var(--bth-muted); font-weight:900; }
.bth-probability { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:14px; }
.bth-probability > div { border:1px solid var(--bth-border-soft); border-radius:10px; padding:12px; background:rgba(0,0,0,.12); }
.bth-probability .is-favorite .bth-value { color:var(--bth-cyan); }
.bth-market-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; margin-top:12px; }
.bth-market-grid > div { border:1px solid var(--bth-border-soft); border-radius:9px; padding:10px; background:rgba(0,0,0,.12); text-align:center; min-width:0; }
.bth-market-grid small,.bth-market-grid strong { display:block; }
.bth-market-grid small { color:var(--bth-muted); font-size:9px; text-transform:uppercase; }
.bth-takeaway { border-left:3px solid var(--bth-cyan); background:rgba(0,210,255,.045); padding:13px 14px; margin:14px 0; border-radius:0 10px 10px 0; }
.bth-takeaway strong { font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.bth-takeaway p { color:#bdd0e5; margin-top:5px; }
.bth-section-tabs { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; margin-bottom:14px; }
.bth-section-tabs::-webkit-scrollbar { display:none; }
.bth-section-tabs a { flex:0 0 auto; border:1px solid var(--bth-border); border-radius:999px; padding:8px 13px; color:#c8d7e8; font-size:12px; font-weight:800; }
.bth-section-tabs a.is-active { background:var(--bth-cyan); color:#04101b; border-color:var(--bth-cyan); }
.bth-quick-links { display:grid; grid-template-columns:1fr; gap:8px; }
.bth-quick-links a { border:1px solid var(--bth-border-soft); border-radius:10px; padding:13px; background:rgba(0,0,0,.1); }
.bth-quick-links a strong,.bth-quick-links a span { display:block; }
.bth-quick-links a span { color:var(--bth-muted); font-size:11px; margin-top:4px; }
.bth-data-table { width:100%; border-collapse:collapse; font-size:12px; }
.bth-data-table th,.bth-data-table td { padding:10px 8px; border-bottom:1px solid var(--bth-border-soft); text-align:left; vertical-align:middle; }
.bth-data-table th { color:var(--bth-muted); font-size:9px; text-transform:uppercase; letter-spacing:.08em; }
.bth-scroll-x { overflow-x:auto; }
.bth-player-avatar { width:42px; height:42px; border:1px solid var(--bth-border); border-radius:10px; background:linear-gradient(135deg,rgba(0,123,255,.14),rgba(0,210,255,.05)); display:grid; place-items:center; color:var(--bth-cyan); font-weight:900; flex:0 0 auto; }
.bth-player-row { display:flex; align-items:center; gap:10px; }
.bth-player-grid { display:grid; grid-template-columns:1fr; gap:10px; }
.bth-player-card { border:1px solid var(--bth-border-soft); border-radius:10px; padding:12px; background:rgba(0,0,0,.1); min-width:0; }
.bth-player-card__head { display:flex; align-items:center; gap:10px; margin-bottom:9px; }
.bth-player-card__metrics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:6px; }
.bth-player-card__metrics > div { border:1px solid var(--bth-border-soft); border-radius:8px; padding:8px; text-align:center; }
.bth-player-card__metrics small,.bth-player-card__metrics strong { display:block; }
.bth-player-card__metrics small { color:var(--bth-muted); font-size:9px; }
.bth-team-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.bth-team-tile { border:1px solid var(--bth-border-soft); border-radius:10px; padding:12px; background:rgba(0,0,0,.12); display:grid; justify-items:center; gap:6px; text-align:center; }
.bth-team-tile img { width:55px; height:55px; object-fit:contain; }
.bth-team-subnav { display:flex; gap:8px; overflow-x:auto; margin-bottom:14px; scrollbar-width:none; }
.bth-team-subnav a { flex:0 0 auto; border:1px solid var(--bth-border); border-radius:999px; padding:8px 12px; font-size:12px; font-weight:800; }
.bth-team-subnav a.is-active { color:#04101b; background:var(--bth-cyan); border-color:var(--bth-cyan); }
.bth-roster-grid { display:grid; grid-template-columns:1fr; gap:8px; }
.bth-roster-card { border:1px solid var(--bth-border-soft); border-radius:9px; padding:10px; display:flex; align-items:center; justify-content:space-between; gap:10px; background:rgba(0,0,0,.08); }
.bth-empty-state { border:1px dashed var(--bth-border); border-radius:10px; padding:22px 14px; color:var(--bth-muted); text-align:center; }
.bth-news-grid { display:grid; grid-template-columns:1fr; gap:10px; }
.bth-news-card { border:1px solid var(--bth-border-soft); border-radius:10px; padding:13px; background:rgba(0,0,0,.08); }
.bth-news-card h3 { font-size:15px; margin-bottom:6px; }
.bth-news-card p { color:var(--bth-muted); }
.bth-live-state { display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:center; }
.bth-live-badge { width:76px; height:76px; border-radius:50%; border:2px solid var(--bth-cyan); display:grid; place-items:center; color:var(--bth-cyan); font-size:11px; font-weight:900; }
.bth-chat-shell { min-height:64vh; display:grid; grid-template-rows:1fr auto; overflow:hidden; }
.bth-chat-messages { min-height:420px; max-height:68vh; overflow:auto; padding:14px; display:flex; flex-direction:column; gap:10px; }
.bth-chat-bubble { max-width:84%; border:1px solid var(--bth-border-soft); border-radius:14px; padding:12px; background:rgba(18,28,49,.75); }
.bth-chat-bubble.is-user { margin-left:auto; background:rgba(0,123,255,.2); }
.bth-chat-compose { display:grid; grid-template-columns:1fr auto; gap:8px; border-top:1px solid var(--bth-border-soft); padding:10px; }
.bth-chat-compose input { min-width:0; border:1px solid var(--bth-border); background:var(--bth-bg); color:var(--bth-text); border-radius:9px; padding:12px; }

@media (min-width:640px) {
  .bth-grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-quick-links { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-player-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-team-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .bth-roster-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-news-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (min-width:900px) {
  .bth-page-head { align-items:flex-end; }
  .bth-grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-quick-links { grid-template-columns:repeat(5,minmax(0,1fr)); }
  .bth-player-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-team-grid { grid-template-columns:repeat(8,minmax(0,1fr)); }
}
@media (max-width:639px) {
  .bth-page-head { align-items:flex-start; }
  .bth-page-head__actions { display:none; }
  .bth-market-grid { grid-template-columns:1fr; }
  .bth-data-table th:nth-child(n+5),.bth-data-table td:nth-child(n+5) { display:none; }
  .bth-live-state { grid-template-columns:1fr; }
}


/* ========================================================================== */
/* LEVORD PRESERVATION-FIRST FUNCTIONALITY EXTENSION V1.2                    */
/* ========================================================================== */
.bth-team-tile { align-content:start; }
.bth-team-tile__hub { display:grid; justify-items:center; gap:6px; width:100%; }
.bth-team-tile__favorite { width:100%; margin-top:4px; padding:7px 8px; border-top:1px solid var(--bth-border-soft); color:var(--bth-cyan); font-size:10px; font-weight:900; text-align:center; }
.bth-team-hero { display:grid; grid-template-columns:auto 1fr; gap:20px; align-items:center; margin-bottom:14px; }
.bth-fact-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; }
.bth-fact-grid > div { border:1px solid var(--bth-border-soft); border-radius:9px; padding:10px; background:rgba(0,0,0,.08); }
.bth-fact-grid small,.bth-fact-grid strong { display:block; }
.bth-fact-grid small { color:var(--bth-muted); font-size:9px; text-transform:uppercase; letter-spacing:.06em; }
.bth-coach-list { display:grid; gap:8px; }
.bth-coach-row { border:1px solid var(--bth-border-soft); border-radius:9px; padding:10px; display:flex; align-items:center; justify-content:space-between; gap:10px; background:rgba(0,0,0,.08); }
.bth-game-signal { margin-top:12px; border-top:1px solid var(--bth-border-soft); padding-top:10px; display:flex; gap:8px; flex-wrap:wrap; align-items:center; color:var(--bth-muted); font-size:10px; }
.bth-game-signal strong { color:var(--bth-cyan); }
.bth-watch-grid { display:grid; grid-template-columns:1fr; gap:8px; }
.bth-watch-card { border:1px solid var(--bth-border-soft); border-radius:10px; padding:12px; background:rgba(0,0,0,.08); display:grid; gap:5px; }
.bth-watch-card .bth-value { font-size:24px; color:var(--bth-cyan); }
.bth-player-detail-grid { display:grid; grid-template-columns:1fr; gap:8px; }
.bth-player-detail-metric { border:1px solid var(--bth-border-soft); border-radius:9px; padding:10px; background:rgba(0,0,0,.08); }
.bth-player-detail-metric small,.bth-player-detail-metric strong,.bth-player-detail-metric span { display:block; }
.bth-player-detail-metric > small { color:var(--bth-muted); font-size:9px; text-transform:uppercase; }
.bth-player-detail-metric > strong { font-size:20px; color:var(--bth-cyan); margin:4px 0; }
.bth-chat-answer p { margin:5px 0; }
.bth-chat-answer ul,.bth-chat-answer ol { padding-left:20px; margin:6px 0; }
@media (min-width:640px) { .bth-watch-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .bth-player-detail-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (min-width:900px) { .bth-watch-grid { grid-template-columns:repeat(4,minmax(0,1fr)); } .bth-player-detail-grid { grid-template-columns:repeat(4,minmax(0,1fr)); } }
@media (max-width:639px) { .bth-team-hero { grid-template-columns:82px 1fr; } .bth-team-logo--xl { width:76px; height:76px; } .bth-fact-grid { grid-template-columns:1fr; } .bth-coach-row { align-items:flex-start; flex-direction:column; } }

/* ========================================================================== */
/* BTH PRODUCT BATCH 4 — PLAYERS / TEAM HUBS / SCOREBOARD / RESPONSIVE V1   */
/* ========================================================================== */
.bth-filter-bar{display:grid;grid-template-columns:1fr;gap:10px;align-items:end;margin-bottom:18px;padding:14px;border:1px solid var(--bth-border);border-radius:var(--bth-radius);background:rgba(11,18,32,.72)}
.bth-filter-bar label{display:grid;gap:5px;color:var(--bth-muted);font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.bth-filter-bar .bth-search{margin:0}.bth-select{width:100%;min-height:48px;border:1px solid var(--bth-border);border-radius:10px;background:#0b1220;color:var(--bth-text);padding:0 12px}.bth-card-link{display:block;margin-top:10px;color:var(--bth-cyan);font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.bth-player-card--directory{display:block;color:inherit;text-decoration:none}.bth-player-card__identity{min-width:0;flex:1}.bth-player-card__team-logo{width:34px;height:34px;object-fit:contain;margin-left:auto}.bth-player-headshot{width:44px;height:44px;border-radius:10px;object-fit:cover;border:1px solid var(--bth-border);background:#0b1220;flex:0 0 auto}.bth-player-headshot--lg{width:88px;height:88px;border-radius:16px}.bth-player-avatar--lg{width:88px;height:88px;border-radius:16px;font-size:30px}.bth-player-hero{display:grid;grid-template-columns:1fr;gap:16px;align-items:center}.bth-player-hero__media{display:flex;gap:10px;align-items:center}.bth-evidence-strip{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.bth-evidence-strip span{border:1px solid var(--bth-border-soft);border-radius:999px;padding:6px 9px;color:var(--bth-muted);font-size:10px}.bth-evidence-strip strong{color:var(--bth-text)}
.bth-matchup-summary{display:grid;grid-template-columns:1fr 24px 1fr;gap:8px;align-items:center;text-align:center;color:inherit;border:1px solid var(--bth-border-soft);border-radius:12px;padding:12px;background:rgba(0,0,0,.08)}.bth-matchup-summary>div{display:grid;justify-items:center;gap:5px}.bth-matchup-summary img{width:58px;height:58px;object-fit:contain}.bth-matchup-summary>small{grid-column:1/-1;color:var(--bth-muted)}.bth-form-list,.bth-schedule-list{display:grid;gap:8px}.bth-form-row,.bth-schedule-row,.bth-injury-row{display:flex;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid var(--bth-border-soft);padding:10px 0}.bth-form-row:last-child,.bth-schedule-row:last-child,.bth-injury-row:last-child{border-bottom:0}.bth-form-row small,.bth-schedule-row small,.bth-injury-row small{color:var(--bth-muted);text-align:right}.bth-form-result{width:28px;height:28px;display:grid;place-items:center;border-radius:50%;font-size:11px;font-weight:950;flex:0 0 auto}.bth-form-result.is-w{background:rgba(34,197,94,.15);color:#6ee7a1}.bth-form-result.is-l{background:rgba(239,68,68,.15);color:#fca5a5}.bth-form-result.is-t{background:rgba(148,163,184,.15);color:#cbd5e1}.bth-injury-row>div,.bth-schedule-row>div{display:grid;gap:3px}.bth-injury-row span,.bth-schedule-row span{color:var(--bth-muted);font-size:11px}.bth-list-link{color:inherit;padding:8px 0;border-bottom:1px solid var(--bth-border-soft)}.bth-list-link:last-child{border-bottom:0}
.bth-score-grid{display:grid;grid-template-columns:1fr;gap:10px}.bth-score-card{display:block;color:inherit;text-decoration:none;border:1px solid var(--bth-border);border-radius:12px;padding:14px;background:linear-gradient(180deg,rgba(18,28,49,.92),rgba(11,18,32,.96))}.bth-score-card__top{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:10px}.bth-score-card__top .bth-card-link{margin:0}.bth-score-team{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:8px 0;border-top:1px solid var(--bth-border-soft)}.bth-score-team strong{font-size:22px;color:var(--bth-cyan)}.bth-schedule-row--link{color:inherit;text-decoration:none}.bth-schedule-row__meta{display:grid;justify-items:end;gap:3px}
@media(min-width:640px){.bth-filter-bar{grid-template-columns:minmax(220px,2fr) minmax(130px,1fr) minmax(130px,1fr) auto auto}.bth-player-hero{grid-template-columns:auto 1fr}.bth-score-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1024px){.bth-score-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:639px){.bth-player-card__metrics{grid-template-columns:1fr}.bth-form-row,.bth-schedule-row,.bth-injury-row{align-items:flex-start}.bth-form-row small,.bth-schedule-row small,.bth-injury-row small{max-width:42%;overflow-wrap:anywhere}.bth-score-card{padding:12px}.bth-bottom-nav__item{font-size:8px}.bth-bottom-nav__fab{width:48px;height:48px}}

/* ========================================================================== */
/* BTH VISUAL MEDIA / APPROVED-PROOF FIDELITY WIRING V1 — 2026-09-13       */
/* ========================================================================== */
.bth-hero--media.has-media{
  background-image:linear-gradient(90deg,rgba(3,9,20,.96) 0%,rgba(3,9,20,.82) 43%,rgba(3,9,20,.30) 72%,rgba(3,9,20,.58) 100%),var(--bth-proof-hero);
  background-size:cover;background-position:center;background-repeat:no-repeat;
}
.bth-hero--media.has-media::after{opacity:.22}
.bth-center{text-align:center}
.bth-media-row{display:flex;align-items:center;gap:10px;min-width:0}.bth-media-row>div{display:grid;gap:4px;min-width:0;flex:1}.bth-mini-team-logo{width:30px;height:30px;object-fit:contain;flex:0 0 auto}.bth-player-headshot--watch{width:62px;height:62px;border-radius:14px}.bth-player-headshot--directory{width:62px;height:62px;border-radius:14px}.bth-player-headshot--fantasy{width:66px;height:66px;border-radius:15px}.bth-player-headshot--xl{width:132px;height:132px;border-radius:22px;object-fit:cover;border:1px solid var(--bth-border);background:#0b1220}
.bth-roster-only-label{margin-top:8px;border:1px dashed var(--bth-border-soft);border-radius:8px;padding:8px;color:var(--bth-muted);font-size:9px;font-weight:900;letter-spacing:.06em;text-transform:uppercase;text-align:center}
.bth-proof-game-grid .bth-prediction-card{display:grid;gap:10px}.bth-matchup--compact .bth-matchup__team span{color:var(--bth-cyan);font-size:20px;font-weight:950}.bth-matchup--compact .bth-team-logo{width:70px;height:70px}
.bth-score-team__identity{display:flex;align-items:center;gap:10px;min-width:0}.bth-score-team__identity>img{width:42px;height:42px;object-fit:contain}.bth-score-team__identity>span{display:grid;gap:2px}.bth-score-team__identity small{color:var(--bth-muted);font-size:10px}.bth-score-number{font-size:26px!important;color:var(--bth-cyan)}
.bth-schedule-matchup{display:grid!important;grid-template-columns:auto 20px auto;align-items:center;justify-content:start;gap:7px}.bth-schedule-matchup>span{display:flex;align-items:center;gap:6px}.bth-schedule-matchup img{width:28px;height:28px;object-fit:contain}.bth-schedule-matchup>small{grid-column:1/-1;color:var(--bth-muted)}
.bth-team-logo-rail{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.bth-team-logo-rail a{display:grid;justify-items:center;gap:4px;border:1px solid var(--bth-border-soft);border-radius:10px;padding:9px;color:var(--bth-text);background:rgba(0,0,0,.08)}.bth-team-logo-rail img{width:42px;height:42px;object-fit:contain}.bth-team-logo-rail span{font-size:9px;font-weight:900;color:var(--bth-muted)}
.bth-fantasy-hero,.bth-game-hero,.bth-team-hero--media{position:relative;isolation:isolate;overflow:hidden;background-image:linear-gradient(90deg,rgba(3,9,20,.97),rgba(3,9,20,.82) 55%,rgba(3,9,20,.42)),var(--bth-proof-hero);background-size:cover;background-position:center}.bth-fantasy-hero::after,.bth-game-hero::after,.bth-team-hero--media::after{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,210,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,210,255,.04) 1px,transparent 1px);background-size:30px 30px;z-index:-1;pointer-events:none}.bth-fantasy-hero{display:grid;grid-template-columns:1fr;gap:16px;min-height:230px;align-items:end}.bth-fantasy-hero__copy{max-width:720px}.bth-fantasy-hero__player{display:flex;align-items:flex-end;gap:12px}.bth-fantasy-hero__player img{width:150px;height:150px;object-fit:cover;object-position:top;border-radius:18px;border:1px solid var(--bth-border)}.bth-fantasy-hero__player div{display:grid;gap:3px}.bth-fantasy-hero__player small{color:var(--bth-cyan);font-weight:900}.bth-fantasy-hero__player strong{font-size:20px}.bth-fantasy-hero__player span{color:var(--bth-muted)}
.bth-game-hero{display:grid;grid-template-columns:1fr;gap:14px;align-items:center;min-height:270px;margin-bottom:14px}.bth-game-hero__matchup{display:grid;grid-template-columns:1fr 80px 1fr;align-items:center;text-align:center;max-width:600px}.bth-game-hero__matchup>div{display:grid;justify-items:center;gap:8px}.bth-game-hero__matchup img{width:100px;height:100px;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.4))}.bth-game-hero__matchup strong{font-size:26px}.bth-game-hero__matchup>span{display:grid;gap:5px;color:var(--bth-muted)}.bth-game-hero__matchup>span b{font-size:24px;color:var(--bth-cyan)}.bth-game-hero__copy h1{margin:0 0 5px}.bth-game-tabs{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;margin-bottom:14px}.bth-game-tabs::-webkit-scrollbar{display:none}.bth-game-tabs .bth-btn{flex:0 0 auto}
.bth-probability--logos>div{display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;gap:3px 10px;align-items:center}.bth-probability--logos img{grid-row:1/-1;width:58px;height:58px;object-fit:contain}.bth-probability--logos strong{font-size:30px;color:var(--bth-cyan)}
.bth-player-detail-metric--media{display:grid!important;grid-template-columns:auto 1fr auto;align-items:center;gap:10px}.bth-player-detail-metric--media>div{min-width:0}
.bth-news-grid--visual{grid-template-columns:1fr}.bth-news-card--visual{padding:0;overflow:hidden}.bth-news-card__media{display:block;aspect-ratio:16/9;background:#050b15;overflow:hidden}.bth-news-card__media img{width:100%;height:100%;object-fit:cover;display:block}.bth-news-card__copy{padding:13px}.bth-news-meta{display:flex;gap:8px;flex-wrap:wrap;color:var(--bth-muted);font-size:10px;margin-top:8px}.bth-news-item--media{display:grid!important;grid-template-columns:auto 1fr;gap:10px;align-items:start}.bth-news-thumb{width:92px;height:64px;border-radius:9px;overflow:hidden;background:#050b15;display:block}.bth-news-thumb img{width:100%;height:100%;object-fit:cover}.bth-home-prediction-matchup{display:grid;grid-template-columns:1fr 24px 1fr;align-items:center;text-align:center;gap:4px;margin-bottom:10px}.bth-home-prediction-matchup>div{display:grid;justify-items:center;gap:4px}.bth-home-prediction-matchup img{width:52px;height:52px;object-fit:contain}.bth-home-prediction-matchup>span{color:var(--bth-cyan);font-weight:900}
.bth-injury-row--media{display:grid;grid-template-columns:auto 1fr auto;align-items:center}.bth-injury-card .bth-player-card__metrics{grid-template-columns:1fr}.bth-team-hero--media{padding:24px}.bth-team-hero--media>*{position:relative;z-index:1}
.bth-team-standings-grid{display:grid;grid-template-columns:1fr;gap:8px}.bth-standings-row{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;border:1px solid var(--bth-border-soft);border-radius:11px;padding:12px;background:linear-gradient(180deg,rgba(18,28,49,.88),rgba(11,18,32,.94));color:inherit}.bth-standings-row img{width:48px;height:48px;object-fit:contain}.bth-standings-row span{display:grid}.bth-standings-row small{color:var(--bth-muted)}.bth-standings-row b{font-size:20px;color:var(--bth-cyan)}
@media(min-width:640px){.bth-team-logo-rail{grid-template-columns:repeat(8,minmax(0,1fr))}.bth-news-grid--visual{grid-template-columns:repeat(2,minmax(0,1fr))}.bth-fantasy-hero{grid-template-columns:1.4fr .6fr}.bth-game-hero{grid-template-columns:1.1fr 1fr auto}.bth-game-hero__copy{align-self:end}.bth-team-standings-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1000px){.bth-team-logo-rail{grid-template-columns:repeat(16,minmax(0,1fr))}.bth-news-grid--visual{grid-template-columns:repeat(3,minmax(0,1fr))}.bth-player-grid--directory{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:639px){.bth-news-item--media{grid-template-columns:72px 1fr}.bth-news-thumb{width:72px;height:56px}.bth-game-hero__matchup{grid-template-columns:1fr 48px 1fr}.bth-game-hero__matchup img{width:72px;height:72px}.bth-game-hero__matchup strong{font-size:19px}.bth-player-headshot--xl{width:100px;height:100px}.bth-player-detail-metric--media{grid-template-columns:auto 1fr}.bth-player-detail-metric--media>.bth-mini-team-logo{display:none}.bth-team-logo-rail{grid-template-columns:repeat(4,minmax(0,1fr))}}


/* ===== BTH VISUAL FIDELITY V2 — SINGLE GAME CENTER / RICH PLAYER / INTERACTION ===== */
.bth-header__inner{max-width:1440px}.bth-header-tools{display:flex;align-items:center;gap:8px}.bth-global-search{display:none;align-items:center;border:1px solid var(--bth-border-soft);border-radius:9px;overflow:hidden;background:rgba(4,13,29,.8)}.bth-global-search input{width:210px;background:transparent;border:0;color:#fff;padding:8px 10px;outline:0}.bth-global-search button{border:0;background:transparent;color:var(--bth-cyan);padding:8px 10px;cursor:pointer}.bth-my-team{border:1px solid var(--bth-border);background:rgba(0,123,255,.1);color:var(--bth-cyan);border-radius:8px;padding:8px 10px;font-size:10px;font-weight:800;cursor:pointer}.bth-footer--brand{display:flex;align-items:center;justify-content:space-between;gap:20px;max-width:1440px;margin:0 auto;padding:18px 20px}.bth-footer-brand{display:flex;align-items:center;gap:10px;color:var(--bth-muted);font-size:11px}.bth-footer-brand img{width:86px;max-height:46px;object-fit:contain}.bth-team-picker[hidden]{display:none}.bth-team-picker{position:fixed;inset:0;z-index:3000;background:rgba(0,0,0,.78);display:grid;place-items:center;padding:20px}.bth-team-picker__dialog{width:min(820px,100%);max-height:85vh;overflow:auto;background:#071426;border:1px solid var(--bth-border);border-radius:16px;padding:20px;box-shadow:0 30px 100px #000}.bth-team-picker__grid{display:grid;grid-template-columns:repeat(8,1fr);gap:8px;margin:16px 0}.bth-team-choice{display:grid;place-items:center;gap:4px;padding:10px;border:1px solid var(--bth-border-soft);border-radius:10px;background:#0b1a31;color:#fff;cursor:pointer}.bth-team-choice:hover{border-color:var(--bth-cyan);transform:translateY(-1px)}.bth-team-choice img{width:34px;height:34px;object-fit:contain}.bth-coach__actions{display:grid;gap:8px;justify-items:center}.bth-home-game-center{min-width:160px;text-align:center}
.bth-gc{--gc-border:rgba(0,210,255,.32)}.bth-gc-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:10px}.bth-gc-head h1{font-size:clamp(34px,5vw,64px);line-height:.95}.bth-gc-window{display:flex;align-items:center;gap:8px}.bth-gc-searchbar{display:grid;grid-template-columns:1fr auto;gap:8px;margin-bottom:10px}.bth-gc-searchbar input{width:100%;background:#071426;border:1px solid var(--gc-border);border-radius:9px;color:#fff;padding:11px 14px;outline:0}.bth-gc-switcher{margin-bottom:10px;overflow:hidden}.bth-gc-switcher__rail{display:flex;gap:8px;overflow:auto;padding:3px 1px 8px;scrollbar-width:thin}.bth-gc-game-pill{flex:0 0 auto;display:flex;align-items:center;gap:7px;min-height:50px;padding:7px 10px;border:1px solid var(--bth-border-soft);border-radius:9px;background:rgba(8,24,47,.86);color:#fff}.bth-gc-game-pill img{width:28px;height:28px;object-fit:contain}.bth-gc-game-pill small{color:#ffd35c;font-size:8px;font-weight:900}.bth-gc-game-pill.is-selected{border-color:var(--bth-cyan);box-shadow:0 0 18px rgba(0,210,255,.18)}.bth-gc-tabs{display:flex;gap:6px;overflow:auto;margin-bottom:12px}.bth-gc-tabs a{white-space:nowrap;border:1px solid var(--bth-border-soft);border-radius:999px;padding:7px 14px;color:var(--bth-muted);font-size:11px;font-weight:800}.bth-gc-tabs a.is-active{background:var(--bth-cyan);color:#03111f;border-color:var(--bth-cyan)}.bth-gc-overview-grid{display:grid;grid-template-columns:1.1fr 1fr 1.25fr;gap:10px}.bth-gc-overview-grid>.bth-card:nth-child(4),.bth-gc-overview-grid>.bth-card:nth-child(5){grid-column:span 1}.bth-gc-matchup{background-image:linear-gradient(90deg,rgba(5,10,24,.96),rgba(5,10,24,.72)),var(--bth-proof-hero);background-size:cover;background-position:center}.bth-gc-matchup__teams{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px;margin:16px 0}.bth-gc-matchup__teams>div{display:grid;justify-items:center;gap:5px}.bth-gc-matchup__teams img{width:84px;height:64px;object-fit:contain}.bth-gc-matchup__teams strong{font-size:28px}.bth-gc-takeaway h3{font-size:21px;margin-bottom:8px}.bth-gc-odds-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}.bth-gc-odds-grid>div{padding:9px;border:1px solid var(--bth-border-soft);border-radius:8px;background:#07172b;display:grid;gap:3px}.bth-gc-odds-grid small{color:var(--bth-muted)}.bth-gc-odds-grid span{color:#7ce7ff}.bth-gc-snapshot{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:8px}.bth-gc-snapshot>div{display:grid;gap:5px;padding:10px;border:1px solid var(--bth-border-soft);border-radius:9px;background:#07172b}.bth-gc-watch-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px}.bth-gc-watch{padding:11px;border:1px solid var(--bth-border);border-radius:10px;background:linear-gradient(180deg,#0b1c34,#071526);display:grid;gap:8px;min-width:0}.bth-gc-role{font-size:9px;font-weight:900;letter-spacing:.08em}.bth-gc-role--featured{color:#6ad9ff}.bth-gc-role--signal{color:#7ff29a}.bth-gc-role--opportunity{color:#ffd35c}.bth-gc-role--td{color:#ff6c74}.bth-gc-role--context{color:#cf8cff}.bth-gc-bottom-grid{display:grid;grid-template-columns:3fr 1fr;gap:10px;margin-top:16px}.bth-gc-props-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.bth-gc-prop{display:grid;grid-template-columns:70px 1fr;gap:10px;padding:11px;border:1px solid var(--bth-border);border-radius:10px;background:#08182d}.bth-gc-prop>img{width:70px;height:76px;object-fit:contain;align-self:end}.bth-gc-prop>div{display:grid;gap:4px}.bth-gc-prop__numbers{display:grid;grid-template-columns:repeat(3,1fr);gap:5px}.bth-gc-prop__numbers span{padding:6px;background:#061224;border:1px solid var(--bth-border-soft);border-radius:6px;font-size:9px;display:grid}.bth-gc-prop__numbers b{font-size:14px;color:#79e6ff}.bth-gc-facts{display:grid;gap:8px;padding-left:18px;color:#dbe9ff;font-size:12px}.bth-gc-team-compare{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.bth-gc-team-compare article{padding:14px;border:1px solid var(--bth-border);border-radius:10px;background:#08182d}.bth-gc-team-compare dl{display:grid;gap:6px;margin-top:10px}.bth-gc-team-compare dl>div{display:flex;justify-content:space-between;gap:10px}.bth-player-bio-grid{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.bth-player-bio-grid span{display:grid;min-width:92px;padding:7px 9px;border:1px solid var(--bth-border-soft);border-radius:8px;background:#07172b}.bth-player-bio-grid small{color:var(--bth-muted);font-size:9px;text-transform:uppercase}.bth-player-bio-grid b{font-size:13px}.bth-team-hubs-strip{display:flex;gap:10px;overflow:auto}.bth-team-hubs-strip a{min-width:180px;display:flex;align-items:center;gap:9px;padding:10px;border:1px solid var(--bth-border);border-radius:10px;background:#08182d}.bth-team-hubs-strip img{width:42px;height:42px;object-fit:contain}
@media(min-width:1000px){.bth-nav{display:flex}.bth-global-search{display:flex}.bth-main{max-width:1440px}.bth-gc-overview-grid>.bth-card:nth-child(4){grid-column:1/2}.bth-gc-overview-grid>.bth-card:nth-child(5){grid-column:2/4}}
@media(max-width:999px){.bth-header-tools{margin-left:auto}.bth-gc-overview-grid{grid-template-columns:1fr 1fr}.bth-gc-watch-grid{grid-template-columns:repeat(2,1fr)}.bth-gc-bottom-grid{grid-template-columns:1fr}.bth-team-picker__grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:639px){.bth-gc-head{align-items:start;flex-direction:column}.bth-gc-searchbar{grid-template-columns:1fr}.bth-gc-overview-grid{grid-template-columns:1fr}.bth-gc-overview-grid>.bth-card{grid-column:auto!important}.bth-gc-watch-grid,.bth-gc-props-grid,.bth-gc-team-compare{grid-template-columns:1fr}.bth-gc-prop{grid-template-columns:58px 1fr}.bth-gc-prop>img{width:58px;height:66px}.bth-gc-prop__numbers{grid-template-columns:1fr 1fr 1fr}.bth-team-picker__grid{grid-template-columns:repeat(3,1fr)}.bth-footer--brand{padding-bottom:calc(var(--bth-bottom-nav-h) + 20px);flex-direction:column;text-align:center}.bth-footer-brand{flex-direction:column}.bth-my-team{display:none}.bth-gc-matchup__teams img{width:64px}.bth-gc-matchup__teams strong{font-size:22px}}

/* BTH V2 factual Fantasy proof-density layer */
.bth-fantasy-leader-row{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}.bth-fantasy-leader{position:relative;display:flex;align-items:center;gap:9px;min-width:0;padding:10px;border:1px solid var(--bth-border);border-radius:10px;background:rgba(7,22,38,.78);color:inherit;text-decoration:none}.bth-fantasy-leader>img:first-child{width:52px;height:52px;object-fit:cover;border-radius:9px;background:#071322}.bth-fantasy-leader>div{display:grid;gap:2px;min-width:0}.bth-fantasy-leader strong,.bth-fantasy-leader span,.bth-fantasy-leader b,.bth-fantasy-leader small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bth-fantasy-leader b{color:var(--bth-cyan)}.bth-fantasy-leader .bth-mini-team-logo{margin-left:auto}.bth-fantasy-support-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:14px}@media(max-width:1050px){.bth-fantasy-leader-row{grid-template-columns:repeat(2,minmax(0,1fr))}.bth-fantasy-support-grid{grid-template-columns:1fr}}@media(max-width:640px){.bth-fantasy-leader-row{grid-template-columns:1fr}}


/* ==========================================================================
   BTH VISUAL FIDELITY V2.1 — TRUTH + APPROVED-PROOF COMPOSITION
   ========================================================================== */
.bth-gc--v21 .bth-gc-head--compact{margin:0 0 6px;align-items:center}
.bth-gc--v21 .bth-gc-head--compact h1{font-size:clamp(30px,3.8vw,48px)}
.bth-gc--v21 .bth-gc-head--compact p{margin:3px 0 0}
.bth-gc-commandbar{display:grid;gap:6px;margin-bottom:6px}
.bth-gc-commandbar .bth-gc-searchbar{margin:0}
.bth-gc-switcher--compact{margin:0;max-height:58px}
.bth-gc-switcher--compact .bth-gc-switcher__rail{padding-bottom:3px}
.bth-gc-switcher--compact .bth-gc-game-pill{min-height:42px;padding:5px 8px}
.bth-gc-switcher--compact .bth-gc-game-pill img{width:22px;height:22px}
.bth-gc-switcher--compact .bth-gc-game-pill small{display:none}
.bth-gc--v21 .bth-gc-tabs{margin-bottom:8px}
.bth-gc-overview-grid--proof{grid-template-columns:1.1fr 1fr 1.2fr;gap:8px}
.bth-gc-overview-grid--proof>.bth-card{padding:11px}
.bth-gc-overview-grid--proof>.bth-card:nth-child(4){grid-column:1/2}
.bth-gc-overview-grid--proof>.bth-card:nth-child(5){grid-column:2/4}
.bth-gc--v21 .bth-gc-matchup__teams{margin:9px 0}
.bth-gc--v21 .bth-gc-matchup__teams img{width:66px;height:50px}
.bth-gc--v21 .bth-gc-matchup__teams strong{font-size:23px}
.bth-gc--v21 .bth-gc-odds-grid>div{padding:7px}
.bth-gc--v21 .bth-gc-snapshot>div{padding:7px}
.bth-gc-watch-section{margin-top:8px}
.bth-gc--v21 .bth-gc-watch-grid{gap:7px}
.bth-gc--v21 .bth-gc-watch{padding:8px;min-height:112px}
.bth-gc--v21 .bth-player-headshot{width:42px;height:42px}
.bth-gc-watch--pending,.bth-gc-prop--pending{border-style:dashed!important;opacity:.78}
.bth-gc-watch--pending strong,.bth-gc-prop--pending strong{color:#d4e5f8}
.bth-gc--v21 .bth-gc-bottom-grid{margin-top:10px;gap:8px}
.bth-gc--v21 .bth-gc-prop{padding:8px;grid-template-columns:58px 1fr}
.bth-gc--v21 .bth-gc-prop>img{width:58px;height:66px}
.bth-prediction-pending{display:grid;place-items:center;gap:8px;min-height:112px;padding:16px;border:1px dashed rgba(0,210,255,.36);border-radius:10px;background:rgba(2,14,28,.56);text-align:center}
.bth-prediction-pending strong{color:var(--bth-cyan);font-size:15px;letter-spacing:.05em}
.bth-prediction-pending span{color:var(--bth-muted);font-size:11px;max-width:420px}

/* Home proof hierarchy */
.bth-home-proof-v21{display:grid;gap:14px}
.bth-hero--proof{min-height:310px;border-radius:16px;overflow:hidden}
.bth-hero--proof .bth-hero__headline{font-size:clamp(42px,6vw,78px);max-width:760px;line-height:.95}
.bth-hero--proof .bth-hero__sub{font-size:17px}
.bth-actions--proof{grid-template-columns:repeat(4,minmax(0,1fr))}
.bth-actions--proof .bth-action{min-height:112px;display:grid;align-content:center;gap:7px;text-align:left}
.bth-actions--proof .bth-action strong{font-size:14px;color:#fff}
.bth-actions--proof .bth-action span{font-size:10px;color:var(--bth-muted);line-height:1.35}
.bth-action--button{width:100%;font:inherit;cursor:pointer}
.bth-home-feature-grid{display:grid;grid-template-columns:1.25fr .9fr;gap:14px}
.bth-home-matchups{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.bth-home-matchup{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:7px;padding:11px;border:1px solid var(--bth-border-soft);border-radius:10px;background:#07172b;color:inherit}
.bth-home-matchup>div{display:grid;justify-items:center;gap:4px}.bth-home-matchup img{width:54px;height:42px;object-fit:contain}.bth-home-matchup small{grid-column:1/-1;color:var(--bth-muted)}
.bth-home-prediction-proof{display:grid;gap:12px}
.bth-home-lower-grid{display:grid;grid-template-columns:1.6fr .7fr;gap:14px}
.bth-home-news-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.bth-home-team-card{display:grid;align-content:start}
.bth-coach--proof{margin-top:0}

/* Scores proof-density */
.bth-score-tabs{display:flex;gap:7px;margin:-4px 0 14px;overflow:auto}
.bth-score-tabs a{border:1px solid var(--bth-border-soft);border-radius:999px;padding:7px 14px;color:var(--bth-muted);font-size:10px;font-weight:900}
.bth-score-tabs a.is-active{background:var(--bth-cyan);color:#03111f;border-color:var(--bth-cyan)}
.bth-score-grid--proof,.bth-score-grid--schedule{grid-template-columns:repeat(4,minmax(0,1fr))}
.bth-score-card--proof,.bth-score-card--schedule{padding:11px;min-height:150px}
.bth-score-matchup-proof{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:6px;text-align:center}
.bth-score-matchup-proof>div{display:grid;justify-items:center;gap:4px}.bth-score-matchup-proof img{width:58px;height:48px;object-fit:contain}.bth-score-matchup-proof strong{font-size:16px}.bth-score-matchup-proof span{font-size:22px;color:var(--bth-cyan);font-weight:900}

/* Players proof workspace */
.bth-players-workspace{display:grid;grid-template-columns:minmax(420px,.9fr) minmax(0,1.45fr);gap:14px;align-items:start}
.bth-players-directory-panel{padding:12px}
.bth-player-directory-list{max-height:690px;overflow:auto;display:grid;gap:5px;padding-right:4px}
.bth-player-directory-row{display:grid;grid-template-columns:52px minmax(0,1fr) 72px 30px;align-items:center;gap:9px;padding:7px 8px;border:1px solid transparent;border-radius:9px;color:inherit;background:rgba(5,18,35,.58)}
.bth-player-directory-row:hover{border-color:var(--bth-cyan);background:rgba(0,210,255,.07)}
.bth-player-directory-row .bth-player-headshot--directory{width:48px;height:48px}
.bth-player-directory-row__copy{display:grid;gap:2px}.bth-player-directory-row__copy span{font-size:10px;color:var(--bth-muted)}
.bth-player-directory-row__stat{display:grid;justify-items:end}.bth-player-directory-row__stat small{font-size:8px;color:var(--bth-muted)}.bth-player-directory-row__stat b{color:var(--bth-cyan)}
.bth-player-preview{position:sticky;top:86px;display:grid;gap:13px}
.bth-player-preview__hero{display:grid;grid-template-columns:150px 1fr 78px;gap:16px;align-items:center}
.bth-player-preview__hero>img:first-child{width:150px;height:150px;object-fit:cover;border-radius:18px;background:#071426}
.bth-player-preview__hero h2{font-size:34px;margin:3px 0}
.bth-player-bio-grid--preview{margin-top:0}
.bth-player-preview__stats{grid-template-columns:repeat(3,minmax(0,1fr))}
.bth-player-preview__projections{display:grid;gap:6px}.bth-player-preview__projections h3{font-size:11px;color:var(--bth-cyan)}.bth-player-preview__projections>div{display:flex;justify-content:space-between;gap:12px;padding:7px 9px;border:1px solid var(--bth-border-soft);border-radius:8px}.bth-player-preview__projections span{font-size:10px;color:var(--bth-muted)}

/* Fantasy factual table */
.bth-fantasy-table{display:grid;border:1px solid var(--bth-border-soft);border-radius:10px;overflow:hidden}
.bth-fantasy-table__head,.bth-fantasy-table__row{display:grid;grid-template-columns:42px minmax(220px,2fr) 70px 70px 90px 72px;align-items:center;gap:8px;padding:8px 10px}
.bth-fantasy-table__head{background:#061427;color:var(--bth-muted);font-size:9px;font-weight:900;text-transform:uppercase}
.bth-fantasy-table__row{color:inherit;border-top:1px solid var(--bth-border-soft);font-size:11px}
.bth-fantasy-table__row:hover{background:rgba(0,210,255,.06)}
.bth-fantasy-table__row .bth-player-headshot{width:36px;height:36px}.bth-fantasy-table__row .bth-media-row{gap:8px}

/* Responsive V2.1 */
@media(max-width:1100px){
  .bth-actions--proof{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-home-feature-grid,.bth-home-lower-grid{grid-template-columns:1fr}
  .bth-score-grid--proof,.bth-score-grid--schedule{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-players-workspace{grid-template-columns:1fr}.bth-player-preview{position:static}
}
@media(max-width:760px){
  .bth-home-matchups{grid-template-columns:1fr}
  .bth-home-news-grid{grid-template-columns:1fr}
  .bth-score-grid--proof,.bth-score-grid--schedule{grid-template-columns:1fr}
  .bth-player-preview__hero{grid-template-columns:92px 1fr}.bth-player-preview__hero>img:first-child{width:92px;height:92px}.bth-player-preview__hero>.bth-team-logo{display:none}
  .bth-player-preview__stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-fantasy-table{overflow:auto}.bth-fantasy-table__head,.bth-fantasy-table__row{min-width:620px}
}
@media(max-width:639px){
  .bth-gc-commandbar{gap:4px}.bth-gc-switcher--compact{max-height:52px}.bth-gc--v21 .bth-gc-game-pill{min-height:38px}
  .bth-gc--v21 .bth-gc-watch-grid{grid-template-columns:1fr}
  .bth-actions--proof{grid-template-columns:1fr 1fr}.bth-actions--proof .bth-action{min-height:96px}
  .bth-hero--proof{min-height:250px}.bth-hero--proof .bth-hero__headline{font-size:42px}
  .bth-player-directory-row{grid-template-columns:46px 1fr 28px}.bth-player-directory-row__stat{display:none}
}


/* ==========================================================================
   BTH VISUAL FIDELITY V2.1.5 — MOBILE PROOF GRID CORRECTION
   ========================================================================== */
@media(max-width:999px){
  .bth-gc-overview-grid--proof{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:639px){
  .bth-gc-overview-grid--proof{grid-template-columns:1fr}
  .bth-gc-overview-grid--proof>.bth-card{grid-column:auto!important;min-width:0}
  .bth-gc--v21 .bth-gc-matchup__teams{grid-template-columns:minmax(0,1fr) 42px minmax(0,1fr)}
  .bth-gc--v21 .bth-gc-odds-grid{grid-template-columns:1fr}
  .bth-gc--v21 .bth-gc-snapshot{grid-template-columns:1fr}
}

/* ========================================================================== 
   BTH VISUAL POLISH BATCH V1 — PROVEN-CANDIDATE PRESENTATION ONLY
   Baseline: V2.1.5 application bytes proven by V2.1.8.
   No model, market, data-authority, routing, DNS/TLS or production mutation.
   ========================================================================== */

/* Global rhythm / compact truth states */
:root{--bth-polish-safe-bottom:max(10px,env(safe-area-inset-bottom,0px));--bth-bottom-nav-h:62px}
.bth-page{min-width:0}
.bth-section{margin-bottom:16px}
.bth-section__head{margin-bottom:9px}
.bth-card{padding:14px}
.bth-card__title{margin-bottom:10px}
.bth-empty-state--compact,.bth-projection-empty{min-height:0!important;padding:12px 14px!important;border-radius:9px;line-height:1.45}
.bth-projection-empty-card{padding:13px!important}
.bth-projection-empty-card .bth-card__title{margin-bottom:8px}
.bth-projection-empty{max-width:760px;margin:0 auto;font-size:12px}
.bth-prediction-pending{min-height:86px;padding:12px;gap:5px}
.bth-prediction-pending strong{font-size:13px}
.bth-prediction-pending span{font-size:10px;line-height:1.4}

/* Header: restore proof-like vertical economy without changing navigation */
.bth-header__inner{padding:7px 16px;min-height:68px}
.bth-logo{flex:0 1 auto}
.bth-logo img{width:min(238px,60vw);aspect-ratio:2.37/1;max-height:58px}
.bth-nav__item{min-width:56px;padding:7px 8px 9px;font-size:9px}
.bth-header-tools{flex:0 0 auto}

/* Mobile bottom navigation: remove native button chrome, honor safe area, clear content. */
.bth-bottom-nav{
  grid-template-columns:repeat(3,minmax(0,1fr)) 50px repeat(3,minmax(0,1fr));
  align-items:center;
  min-height:calc(var(--bth-bottom-nav-h) + env(safe-area-inset-bottom,0px));
  padding:6px 4px calc(6px + env(safe-area-inset-bottom,0px));
  box-shadow:0 -10px 28px rgba(0,0,0,.34);
}
button.bth-bottom-nav__item,.bth-bottom-nav__item--my-team{
  appearance:none;-webkit-appearance:none;
  border:0!important;background:transparent!important;box-shadow:none!important;
  color:var(--bth-muted);border-radius:0;margin:0;width:100%;max-width:100%;
  font-family:inherit;line-height:1.05;white-space:normal;text-align:center;cursor:pointer;
}
.bth-bottom-nav__item{min-height:40px;padding:4px 2px;font-size:8px;letter-spacing:.035em;overflow:visible}
.bth-bottom-nav__item--my-team{background:rgba(0,123,255,.08)!important;border:1px solid rgba(0,210,255,.18)!important;border-radius:7px!important}
.bth-bottom-nav__item--my-team span{display:block;max-width:100%;overflow-wrap:anywhere;line-height:1.1}
.bth-bottom-nav__center{align-items:center;transform:translateY(-8px)}
.bth-bottom-nav__fab{width:46px;height:46px;font-size:18px;border-width:2px}
.bth-main{padding-bottom:calc(var(--bth-bottom-nav-h) + 30px + env(safe-area-inset-bottom,0px))}
html{scroll-padding-bottom:calc(var(--bth-bottom-nav-h) + 24px + env(safe-area-inset-bottom,0px))}
.bth-footer{padding-bottom:calc(var(--bth-bottom-nav-h) + 30px + env(safe-area-inset-bottom,0px))}

/* Home: proof hierarchy and density */
.bth-home-proof-v21{gap:11px}
.bth-hero--proof{min-height:270px;margin-bottom:15px}
.bth-hero--proof .bth-hero__content{max-width:72%;padding:28px 30px}
.bth-hero--proof .bth-hero__headline{font-size:clamp(42px,4.8vw,62px);line-height:.96;max-width:820px;margin-bottom:9px}
.bth-hero--proof .bth-hero__sub{font-size:15px;margin-bottom:15px}
.bth-actions--proof{grid-template-columns:repeat(8,minmax(0,1fr));gap:8px}
.bth-actions--proof .bth-action{min-height:82px;padding:10px;gap:4px}
.bth-actions--proof .bth-action strong{font-size:11px}
.bth-actions--proof .bth-action span{font-size:9px;line-height:1.25}
.bth-home-feature-grid,.bth-home-lower-grid{gap:10px}
.bth-home-matchups{gap:7px}
.bth-home-matchup{padding:9px}
.bth-home-news-grid{gap:8px}
.bth-coach--proof{padding:16px 20px;margin-bottom:0;gap:10px}
.bth-coach--proof .bth-coach__title{font-size:20px}
.bth-coach--proof .bth-coach__sub{font-size:12px}
.bth-coach--proof .bth-btn{min-height:38px;padding:9px 15px;font-size:11px}

/* Game Center: preserve truth, improve first-screen information density. */
.bth-gc--v21 .bth-gc-head--compact{margin-bottom:6px}
.bth-gc--v21 .bth-gc-head--compact h1{font-size:clamp(30px,4vw,48px);line-height:1}
.bth-gc--v21 .bth-gc-head--compact p{font-size:11px}
.bth-gc-commandbar{gap:4px;margin-bottom:5px}
.bth-gc-searchbar input{padding:8px 11px;min-height:38px}
.bth-gc-searchbar .bth-btn{min-height:38px;padding:8px 12px;font-size:10px}
.bth-gc-switcher--compact{max-height:50px}
.bth-gc-switcher--compact .bth-gc-game-pill{min-height:36px;padding:4px 7px}
.bth-gc--v21 .bth-gc-tabs{margin-bottom:6px}
.bth-gc--v21 .bth-gc-tabs a{padding:6px 11px;font-size:10px}
.bth-gc-overview-grid--proof{gap:7px}
.bth-gc-overview-grid--proof>.bth-card{padding:10px}
.bth-gc--v21 .bth-gc-matchup__teams{margin:7px 0}
.bth-gc--v21 .bth-gc-matchup__teams img{width:58px;height:44px}
.bth-gc--v21 .bth-gc-matchup__teams strong{font-size:21px}
.bth-gc-watch-section{margin-top:6px;margin-bottom:12px}
.bth-gc--v21 .bth-gc-watch{min-height:104px;padding:7px}
.bth-gc--v21 .bth-gc-bottom-grid{margin-top:8px;gap:7px}
.bth-gc--v21 .bth-gc-prop{padding:7px}
.bth-gc-my-team{white-space:nowrap}

/* Scores: eight-card proof board first, then Team Hubs, then remaining games. */
.bth-scores-polish-v1 .bth-page-head{margin-bottom:10px}
.bth-scores-polish-v1 .bth-score-tabs{margin:0 0 10px}
.bth-scores-polish-v1 .bth-score-grid--proof{gap:8px}
.bth-scores-polish-v1 .bth-score-card--proof{min-height:132px;padding:9px}
.bth-scores-polish-v1 .bth-score-matchup-proof img{width:48px;height:40px}
.bth-scores-polish-v1 .bth-score-matchup-proof strong{font-size:14px}
.bth-scores-polish-v1 .bth-score-matchup-proof span{font-size:19px}
.bth-score-team-hubs{padding:12px}
.bth-score-more-games{margin-top:4px}

/* Fantasy: factual leaders + injuries near the top; filters become utility, not hero. */
.bth-fantasy-polish-v1{display:grid;gap:12px}
.bth-fantasy-polish-v1 .bth-fantasy-hero{margin-bottom:0}
.bth-fantasy-scoring-tabs{gap:6px}
.bth-fantasy-scoring-tabs .bth-chip{padding:6px 10px;font-size:9px}
.bth-fantasy-top-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(260px,.75fr);gap:10px;align-items:start}
.bth-fantasy-actuals,.bth-fantasy-injuries{padding:12px}
.bth-fantasy-leader-row{gap:7px}
.bth-fantasy-leader{padding:7px 8px}
.bth-fantasy-injury-list{display:grid;gap:6px;max-height:390px;overflow:auto;padding-right:3px}
.bth-fantasy-filter-bar{padding:10px!important;gap:7px}
.bth-fantasy-filter-bar label{gap:3px}
.bth-fantasy-filter-bar .bth-search,.bth-fantasy-filter-bar .bth-select{min-height:40px}
.bth-fantasy-table__head,.bth-fantasy-table__row{padding:7px 9px}
.bth-fantasy-impact{margin-top:0}

/* Players: dense factual workspace; empty projection truth never dominates the screen. */
.bth-players-v21 .bth-page-head{margin-bottom:10px}
.bth-players-v21 .bth-filter-bar{padding:10px!important;gap:7px;margin-bottom:10px}
.bth-players-directory-panel{padding:10px}
.bth-player-directory-list{max-height:650px;gap:4px}
.bth-player-directory-row{padding:6px 7px}
.bth-player-preview{gap:9px;top:76px}
.bth-player-preview__hero{grid-template-columns:126px 1fr 66px;gap:13px}
.bth-player-preview__hero>img:first-child{width:126px;height:126px}
.bth-player-preview__hero h2{font-size:29px}
.bth-player-preview__projections .bth-projection-empty{padding:10px!important}
.bth-player-hero{padding:13px!important}
.bth-player-detail-grid{gap:7px}
.bth-player-detail-metric{padding:8px}
.bth-player-detail-metric>strong{font-size:18px}

@media(min-width:1024px){
  .bth-bottom-nav{display:none}
  .bth-main{padding:12px 18px 34px}
  .bth-footer{padding-bottom:24px}
  .bth-header__inner{min-height:70px}
  .bth-logo img{width:228px;max-height:56px}
  .bth-actions--proof{grid-template-columns:repeat(8,minmax(0,1fr))}
}

@media(max-width:1100px){
  .bth-actions--proof{grid-template-columns:repeat(4,minmax(0,1fr))}
  .bth-fantasy-top-grid{grid-template-columns:1fr}
}

@media(max-width:999px){
  .bth-header__inner{min-height:62px;padding:6px 12px}
  .bth-logo img{width:min(208px,56vw);max-height:51px}
  .bth-main{padding-top:11px}
  .bth-gc-my-team{align-self:start;max-width:max-content}
}

@media(max-width:760px){
  .bth-actions--proof{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-actions--proof .bth-action{min-height:76px}
  .bth-fantasy-top-grid{grid-template-columns:1fr}
  .bth-fantasy-injury-list{max-height:280px}
  .bth-player-preview__hero{grid-template-columns:84px 1fr}
  .bth-player-preview__hero>img:first-child{width:84px;height:84px}
}

@media(max-width:639px){
  :root{--bth-bottom-nav-h:60px}
  .bth-header__inner{min-height:58px;padding:5px 10px}
  .bth-logo img{width:min(188px,54vw);max-height:46px}
  .bth-header-tools{gap:4px}
  .bth-main{padding:9px 10px calc(var(--bth-bottom-nav-h) + 34px + env(safe-area-inset-bottom,0px))}
  .bth-section{margin-bottom:13px}
  .bth-card{padding:12px}
  .bth-page-head{margin-bottom:9px}
  .bth-page-head h1{font-size:clamp(28px,9vw,38px)}
  .bth-section__title{font-size:12px}
  .bth-bottom-nav{grid-template-columns:repeat(3,minmax(0,1fr)) 48px repeat(3,minmax(0,1fr));padding-left:2px;padding-right:2px}
  .bth-bottom-nav__item{font-size:7.5px;letter-spacing:.02em;padding-inline:1px;min-height:38px}
  .bth-bottom-nav__center{transform:translateY(-7px)}
  .bth-bottom-nav__fab{width:44px;height:44px}
  .bth-bottom-nav__item--my-team{font-size:7px}
  .bth-footer--brand{padding-bottom:calc(var(--bth-bottom-nav-h) + 26px + env(safe-area-inset-bottom,0px))}
  .bth-hero--proof{min-height:210px;margin-bottom:11px}
  .bth-hero--proof .bth-hero__content{max-width:100%;padding:20px 17px}
  .bth-hero--proof .bth-hero__headline{font-size:35px;line-height:.98;margin-bottom:7px;max-width:80%}
  .bth-hero--proof .bth-hero__sub{font-size:13px;margin-bottom:11px;max-width:74%}
  .bth-actions--proof{gap:6px}
  .bth-actions--proof .bth-action{min-height:70px;padding:8px}
  .bth-actions--proof .bth-action strong{font-size:10px}
  .bth-actions--proof .bth-action span{font-size:8px}
  .bth-coach--proof{padding:13px;margin-bottom:0}
  .bth-coach--proof .bth-coach__title{font-size:17px}
  .bth-coach--proof .bth-coach__sub{font-size:11px}
  .bth-gc--v21 .bth-gc-head--compact{gap:7px}
  .bth-gc--v21 .bth-gc-head--compact h1{font-size:32px}
  .bth-gc-commandbar{gap:3px}
  .bth-gc-my-team{min-height:34px;padding:6px 9px;font-size:9px}
  .bth-gc-overview-grid--proof>.bth-card{padding:9px}
  .bth-gc--v21 .bth-gc-watch{min-height:88px}
  .bth-gc-watch--pending,.bth-gc-prop--pending{min-height:72px}
  .bth-prediction-pending{min-height:70px;padding:10px}
  .bth-score-grid--proof,.bth-score-grid--schedule{grid-template-columns:1fr;gap:6px}
  .bth-scores-polish-v1 .bth-score-card--proof,.bth-scores-polish-v1 .bth-score-card--schedule{min-height:116px;padding:8px}
  .bth-scores-polish-v1 .bth-score-matchup-proof{gap:3px}
  .bth-scores-polish-v1 .bth-score-matchup-proof img{width:40px;height:34px}
  .bth-scores-polish-v1 .bth-score-matchup-proof strong{font-size:12px}
  .bth-scores-polish-v1 .bth-score-matchup-proof span{font-size:16px}
  .bth-fantasy-top-grid{gap:8px}
  .bth-fantasy-actuals,.bth-fantasy-injuries{padding:10px}
  .bth-fantasy-injury-list{max-height:230px}
  .bth-fantasy-filter-bar{grid-template-columns:1fr 1fr!important}
  .bth-fantasy-filter-bar .bth-filter-bar__search{grid-column:1/-1}
  .bth-fantasy-filter-bar .bth-btn{min-height:38px;padding:8px 10px}
  .bth-player-directory-list{max-height:560px}
  .bth-player-directory-row{grid-template-columns:42px 1fr 24px;gap:6px;padding:5px 4px}
  .bth-player-directory-row .bth-player-headshot--directory{width:40px;height:40px}
  .bth-player-preview{gap:8px}
  .bth-player-preview__hero{grid-template-columns:76px 1fr;gap:9px}
  .bth-player-preview__hero>img:first-child{width:76px;height:76px}
  .bth-player-preview__hero h2{font-size:23px}
  .bth-player-detail-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-player-detail-metric{padding:7px}
  .bth-projection-empty-card{padding:10px!important}
  .bth-projection-empty-card .bth-card__title{font-size:11px;margin-bottom:6px}
  .bth-projection-empty{padding:9px 10px!important;font-size:10.5px;line-height:1.35}
}

@media(max-width:420px){
  .bth-score-grid--proof,.bth-score-grid--schedule{grid-template-columns:1fr}
  .bth-scores-polish-v1 .bth-score-matchup-proof img{width:36px;height:31px}
  .bth-bottom-nav__item{font-size:7px}
}


/* BTH VISUAL POLISH CLOSEOUT V1.1 — TABLET GAME CENTER GRID */
@media (min-width:640px) and (max-width:999px){
  .bth-gc-overview-grid--proof>.bth-card:nth-child(4){grid-column:auto}
  .bth-gc-overview-grid--proof>.bth-card:nth-child(5){grid-column:1/-1}
}

/* BTH responsive desktop interpolation V1 â€” 2026-09-17 */
.bth-gc-overview-grid > *, .bth-gc-watch-grid > *, .bth-gc-props-grid > *, .bth-players-workspace > *, .bth-home-feature-grid > *, .bth-home-lower-grid > * { min-width:0; }
.bth-gc-prop__numbers span, .bth-gc-odds-grid > div, .bth-player-directory-row > *, .bth-fantasy-leader > * { min-width:0; overflow-wrap:anywhere; }
@media (min-width:1000px) and (max-width:1279px) {
  .bth-gc-overview-grid, .bth-gc-overview-grid--proof { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-gc-overview-grid > .bth-card:nth-child(4), .bth-gc-overview-grid > .bth-card:nth-child(5) { grid-column:auto; }
  .bth-gc-watch-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-gc-props-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-players-workspace { grid-template-columns:minmax(320px,.8fr) minmax(0,1.2fr); }
  .bth-home-matchups { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bth-score-grid--proof, .bth-score-grid--schedule { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .bth-fantasy-leader-row { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (min-width:1000px) and (max-width:1149px) {
  .bth-players-workspace { grid-template-columns:1fr; }
  .bth-player-preview { position:static; }
}
@media (min-width:640px) and (max-width:899px) {
  .bth-gc-props-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* BTH mobile News restoration V1 â€” 2026-09-17 */
@media (max-width:639px) {
  .bth-header-tools .bth-my-team { display:inline-flex; align-items:center; justify-content:center; padding:6px 7px; min-width:54px; max-width:64px; font-size:7px; line-height:1.05; white-space:normal; text-align:center; }
}

/* BTH game lifecycle presentation V1 — 2026-09-17 */
.bth-game-result{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;margin-bottom:12px}
.bth-game-result__teams{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:18px;max-width:520px;width:100%;margin:0 auto}
.bth-game-result__teams>div{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:8px}
.bth-game-result__teams img{width:42px;height:42px;object-fit:contain}
.bth-game-result__teams b{font-size:28px;color:var(--bth-cyan)}
.bth-game-result.is-final{border-color:rgba(148,163,184,.35)}
.bth-game-result.is-live{border-color:rgba(34,197,94,.5)}
@media(max-width:639px){.bth-game-result{grid-template-columns:1fr}.bth-game-result__teams{gap:8px}.bth-game-result__teams>div{grid-template-columns:auto 1fr auto}.bth-game-result__teams img{width:34px;height:34px}.bth-game-result__teams b{font-size:23px}}

/* Stack & Cheese intelligence attribution V1 — 2026-09-17 */
.bth-intelligence-credit{display:inline-flex;align-items:center;max-width:100%;padding:5px 8px;border:1px solid rgba(0,210,255,.3);border-radius:999px;background:rgba(0,123,255,.08);color:var(--bth-cyan);font-size:8px;font-weight:900;letter-spacing:.07em;text-transform:uppercase;line-height:1.15;text-align:center}
@media(max-width:639px){.bth-intelligence-credit{font-size:7px;padding:4px 7px;white-space:normal}}

/* Stack & Cheese subtle source mark V2 */
.bth-intelligence-credit{display:none!important}
.bth-intelligence-mark{display:block;width:28px;height:28px;object-fit:contain;opacity:.82;flex:0 0 auto}
.bth-intelligence-mark--inline{width:22px;height:22px}
.bth-source-line{display:flex;align-items:center;gap:6px}
@media(max-width:639px){.bth-intelligence-mark{width:24px;height:24px}.bth-intelligence-mark--inline{width:20px;height:20px}}

/* BTH_PREDICTION_SCOPED_GAME_ODDS_V1 */
.bth-gc-odds-grid--scoped{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.bth-gc-odds-grid--scoped>div{min-height:0;padding:14px 16px}.bth-gc-odds-grid--scoped strong{display:flex;align-items:baseline;justify-content:space-between;gap:10px}.bth-gc-odds-grid--scoped strong em{font-style:normal;font-size:.72em;font-weight:700;color:var(--bth-cyan,#65d6ff)}.bth-gc-odds-grid--scoped>div>span{font-size:1.25rem;font-weight:800}.bth-game-market-card .bth-section__head{align-items:flex-start}@media(max-width:640px){.bth-gc-odds-grid--scoped{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.bth-gc-odds-grid--scoped>div{padding:12px}.bth-gc-odds-grid--scoped strong{display:block}.bth-gc-odds-grid--scoped strong em{display:block;margin-top:3px}}

/* BTH_INTELLIGENCE_IA_V1 */
:root{--bth-intel-cyan:#58d4ff;--bth-intel-blue:#3f7cff;--bth-intel-violet:#8b5cf6;--bth-intel-green:#6ee7a8;--bth-intel-surface:rgba(10,21,40,.78);--bth-intel-line:rgba(88,212,255,.22)}
.bth-intel-page{--rail-top:12px;container-type:inline-size;display:grid;gap:clamp(14px,2vw,24px)}
.bth-intel-rail{position:sticky;top:var(--rail-top);z-index:30;display:flex;gap:6px;width:max-content;max-width:100%;padding:5px;border:1px solid var(--bth-intel-line);border-radius:999px;background:rgba(4,10,22,.78);backdrop-filter:blur(20px) saturate(140%);box-shadow:0 12px 40px rgba(0,0,0,.28)}
.bth-intel-rail a{padding:9px 14px;border-radius:999px;color:var(--bth-muted);font-weight:850;font-size:.78rem;letter-spacing:.06em;text-decoration:none;white-space:nowrap}.bth-intel-rail a.is-active{color:#06101f;background:linear-gradient(135deg,var(--bth-intel-cyan),#8be8ff);box-shadow:0 0 28px rgba(88,212,255,.2)}
.bth-intel-hero{position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:end;padding:clamp(24px,5vw,54px);border:1px solid var(--bth-intel-line);border-radius:clamp(24px,4vw,40px);background:radial-gradient(circle at 82% 18%,rgba(88,212,255,.16),transparent 30%),linear-gradient(135deg,rgba(12,26,50,.97),rgba(6,14,30,.92));box-shadow:inset 0 1px rgba(255,255,255,.04),0 24px 70px rgba(0,0,0,.26)}
.bth-intel-hero:after{content:"";position:absolute;inset:auto -8% -55% 38%;height:260px;background:conic-gradient(from 210deg,transparent,rgba(63,124,255,.14),rgba(139,92,246,.13),transparent);filter:blur(20px);pointer-events:none}
.bth-intel-kicker{display:inline-flex;color:var(--bth-intel-cyan);font-weight:900;letter-spacing:.18em;font-size:.74rem}.bth-intel-hero h1{max-width:820px;margin:.3em 0 .18em;font-size:clamp(2.4rem,6vw,5.8rem);line-height:.9;letter-spacing:-.055em}.bth-intel-hero p{max-width:760px;margin:0;color:var(--bth-muted);font-size:clamp(1rem,1.8vw,1.24rem)}
.bth-intel-hero__mark{position:relative;z-index:1;display:grid;justify-items:center;gap:5px;align-self:start;color:var(--bth-muted);font-size:.66rem;letter-spacing:.11em;text-transform:uppercase}.bth-intel-hero__mark img{width:clamp(48px,7vw,72px);aspect-ratio:1;object-fit:contain;filter:drop-shadow(0 0 18px rgba(88,212,255,.25))}
.bth-intel-stats{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.bth-intel-stats>div{min-width:110px;padding:12px 14px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.035)}.bth-intel-stats strong{display:block;font-size:1.45rem}.bth-intel-stats span{color:var(--bth-muted);font-size:.72rem}
.bth-intel-toolbar,.bth-ledger-proofbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 16px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:rgba(255,255,255,.025);color:var(--bth-muted);font-size:.78rem}.bth-live-dot{display:inline-block;width:8px;height:8px;margin-right:8px;border-radius:50%;background:var(--bth-intel-green);box-shadow:0 0 12px var(--bth-intel-green)}
.bth-prediction-board{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,330px),1fr));gap:14px}.bth-prediction-tile{container-type:inline-size;display:grid;gap:14px;padding:18px;border:1px solid var(--bth-intel-line);border-radius:24px;background:linear-gradient(180deg,rgba(14,29,55,.9),rgba(8,18,35,.88));transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}.bth-prediction-tile:hover{transform:translateY(-3px);border-color:rgba(88,212,255,.5);box-shadow:0 18px 44px rgba(0,0,0,.24)}.bth-prediction-tile.is-pending{background:linear-gradient(180deg,rgba(14,24,42,.82),rgba(7,15,28,.82))}.bth-prediction-tile__top,.bth-prediction-tile__actions,.bth-prediction-meta{display:flex;align-items:center;justify-content:space-between;gap:10px}.bth-prediction-tile__top>span:last-child,.bth-prediction-meta{color:var(--bth-muted);font-size:.75rem}.bth-prediction-matchup{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:10px}.bth-prediction-matchup>div{display:flex;align-items:center;gap:9px;font-size:1.25rem}.bth-prediction-matchup>div:last-child{justify-content:flex-end}.bth-prediction-matchup img{width:38px;height:38px;object-fit:contain}.bth-prediction-matchup>span{color:var(--bth-muted);font-weight:800}
.bth-prediction-meter{display:grid;gap:8px}.bth-prediction-meter>div{position:relative;overflow:hidden;display:flex;justify-content:space-between;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.035)}.bth-prediction-meter>div:before{content:"";position:absolute;inset:0 auto 0 0;width:var(--p);background:linear-gradient(90deg,rgba(88,212,255,.12),rgba(88,212,255,.32));border-right:1px solid rgba(88,212,255,.4)}.bth-prediction-meter span,.bth-prediction-meter strong{position:relative;z-index:1}.bth-prediction-meter strong{font-size:1.28rem}.bth-prediction-await{display:flex;gap:12px;align-items:center;padding:15px;border:1px dashed rgba(255,255,255,.12);border-radius:14px;color:var(--bth-muted)}.bth-prediction-await strong{display:block;color:var(--bth-text)}.bth-prediction-await small{display:block;margin-top:3px}.bth-pulse-orb{flex:0 0 10px;width:10px;height:10px;border-radius:50%;background:#61718b;box-shadow:0 0 0 6px rgba(97,113,139,.08)}.bth-prediction-tile__actions a{color:var(--bth-intel-cyan);font-weight:800;font-size:.78rem;text-decoration:none}.bth-intel-history{padding:18px;border:1px solid rgba(255,255,255,.07);border-radius:18px;background:rgba(255,255,255,.02)}.bth-intel-history summary{display:flex;justify-content:space-between;gap:16px;cursor:pointer}.bth-intel-history p{color:var(--bth-muted)}
.bth-ledger-proofbar{display:grid;grid-template-columns:repeat(4,1fr)}.bth-ledger-proofbar div{display:grid;gap:2px}.bth-ledger-proofbar span{font-size:.65rem;text-transform:uppercase;letter-spacing:.12em}.bth-ledger-proofbar strong{color:var(--bth-text);font-size:.78rem;overflow-wrap:anywhere}.bth-ledger-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(250px,320px);gap:18px;align-items:start}.bth-ledger-side{position:sticky;top:70px;display:grid;gap:14px}.bth-ledger-game-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));gap:12px}.bth-ledger-game{container-type:inline-size;padding:16px;border:1px solid var(--bth-intel-line);border-radius:20px;background:linear-gradient(180deg,rgba(12,28,52,.88),rgba(7,17,33,.9))}.bth-ledger-game__head{display:flex;justify-content:space-between;gap:10px;align-items:center}.bth-ledger-game__head a{color:var(--bth-text);text-decoration:none}.bth-ledger-game__head span{color:var(--bth-muted);font-size:.7rem}.bth-ledger-moneyline{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:13px 0}.bth-ledger-moneyline>div{display:grid;gap:2px;padding:12px;border-radius:14px;background:rgba(255,255,255,.035)}.bth-ledger-moneyline strong{font-size:1.5rem;color:var(--bth-intel-cyan)}.bth-ledger-moneyline small{color:var(--bth-muted)}.bth-ledger-game details{border-top:1px solid rgba(255,255,255,.07);padding-top:10px}.bth-ledger-game summary{cursor:pointer;color:var(--bth-muted);font-size:.76rem}.bth-ledger-book-list{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin-top:8px}.bth-ledger-book-list span{display:flex;justify-content:space-between;gap:6px;padding:6px 8px;border-radius:9px;background:rgba(255,255,255,.025);font-size:.72rem}.bth-ledger-radar>div{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06)}.bth-source-matrix{display:grid;grid-template-columns:1fr 1fr;gap:8px}.bth-source-matrix span{display:grid;padding:9px;border-radius:10px;background:rgba(255,255,255,.03);font-size:.7rem}.bth-ledger-governance li{margin:.45em 0;color:var(--bth-muted)}
@container (max-width:760px){.bth-intel-hero{grid-template-columns:1fr}.bth-intel-hero__mark{position:absolute;top:18px;right:18px}.bth-intel-stats{display:grid;grid-template-columns:repeat(2,1fr)}.bth-prediction-board,.bth-ledger-game-grid{grid-template-columns:1fr}.bth-ledger-layout{grid-template-columns:1fr}.bth-ledger-side{position:static}.bth-ledger-proofbar{grid-template-columns:repeat(2,1fr)}}
@container (max-width:520px){.bth-intel-rail{width:100%;overflow:auto;justify-content:flex-start}.bth-intel-rail a{flex:0 0 auto}.bth-intel-hero{padding:22px 18px;border-radius:24px}.bth-intel-hero h1{font-size:clamp(2.2rem,13vw,3.6rem)}.bth-intel-stats>div{min-width:0}.bth-intel-toolbar{align-items:flex-start;flex-direction:column}.bth-prediction-matchup>div{font-size:1.08rem}.bth-prediction-tile__actions{align-items:flex-start;flex-direction:column}.bth-ledger-proofbar{grid-template-columns:1fr 1fr}.bth-ledger-book-list{grid-template-columns:1fr}}
@media (max-width:900px){.bth-intel-page{padding-bottom:16px}.bth-intel-rail{top:8px}.bth-ledger-layout{grid-template-columns:1fr}.bth-ledger-side{position:static}}
@media (prefers-reduced-motion:reduce){.bth-prediction-tile{transition:none}.bth-prediction-tile:hover{transform:none}.bth-pulse-orb{animation:none}}


/* BTH_INTELLIGENCE_POLISH_V1_3 */
.bth-intel-stats>div{display:grid;gap:3px}.bth-intel-hero__mark img{width:clamp(38px,5vw,52px);opacity:.82}.bth-ledger-more{margin-top:14px;padding:12px 14px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.02)}.bth-ledger-more>summary{cursor:pointer;color:var(--bth-intel-cyan);font-weight:850}.bth-ledger-more>.bth-ledger-game-grid{margin-top:12px}.bth-governance-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.bth-governance-grid span{display:grid;gap:2px;padding:10px;border-radius:11px;background:rgba(255,255,255,.03);color:var(--bth-muted);font-size:.68rem}.bth-governance-grid b{color:var(--bth-text);font-size:.76rem}.bth-gc-searchbar input{min-width:0}
@media(max-width:520px){.bth-governance-grid{grid-template-columns:1fr}.bth-intel-hero__mark img{width:38px}}

/* BTH_INTELLIGENCE_FINAL_POLISH_V1_3_2 */
.bth-intel-rail__label{display:flex;align-items:center;padding:0 9px;color:var(--bth-muted);font-size:.62rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}.bth-prediction-kickoff{color:var(--bth-text)!important;font-weight:800;font-size:.78rem!important}.bth-gc{min-width:0;max-width:100%;overflow-x:clip}.bth-gc-commandbar,.bth-gc-switcher{min-width:0;max-width:100%}.bth-gc-switcher{overflow:hidden}.bth-gc-switcher__rail{max-width:100%;min-width:0;overflow-x:auto;overscroll-behavior-inline:contain}.bth-gc-searchbar{margin-bottom:4px}.bth-gc-commandbar{gap:14px}
@media(max-width:620px){.bth-intel-rail__label{display:none}}

/* BTH_GAMECENTER_REAL_PROJECTIONS_V1 */
.bth-gc-prop--no-image{grid-template-columns:1fr!important}.bth-gc-prop--no-image>div{grid-column:1/-1}
@media(min-width:1280px){.bth-gc-props-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(min-width:640px) and (max-width:1279px){.bth-gc-props-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:639px){.bth-gc-props-grid{grid-template-columns:1fr}}

/* BTH_PREDICTIONS_FULL15_V1 */
.bth-full-output{margin-top:10px;border-top:1px solid var(--bth-border-soft);padding-top:9px}.bth-full-output>summary{cursor:pointer;display:flex;justify-content:space-between;gap:10px;color:var(--bth-cyan);font-size:.72rem;font-weight:850}.bth-full-output__m001{margin-top:9px;padding:9px;border-radius:9px;background:rgba(91,211,255,.06);display:grid;gap:3px}.bth-full-output__m001 span{color:var(--bth-muted);font-size:.66rem}.bth-full-output__groups{display:grid;gap:6px;margin-top:8px}.bth-output-group{border:1px solid var(--bth-border-soft);border-radius:9px;background:rgba(4,15,29,.62)}.bth-output-group>summary{cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:44px;padding:8px 42px 8px 9px;font-size:.7rem;position:relative;transition:border-color .15s ease,background .15s ease}.bth-output-group>summary::after{content:"+";position:absolute;right:12px;top:50%;transform:translateY(-50%);width:22px;height:22px;border:1px solid var(--bth-border);border-radius:999px;display:grid;place-items:center;color:var(--bth-cyan);font-size:15px;font-weight:900;line-height:1}.bth-output-group[open]>summary::after{content:"−"}.bth-output-group>summary:hover,.bth-output-group>summary:focus-visible{background:rgba(0,210,255,.08)}.bth-output-group__rows{display:grid;max-height:260px;overflow:auto;border-top:1px solid var(--bth-border-soft)}.bth-output-group__rows>div{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;padding:7px 9px;border-bottom:1px solid rgba(255,255,255,.04);font-size:.68rem}.bth-output-group__rows span{color:var(--bth-muted)}.bth-output-value{display:grid;gap:2px;text-align:right;min-width:118px}.bth-output-value strong{white-space:nowrap}.bth-output-value small{color:var(--bth-cyan);font-size:.56rem;font-weight:750;line-height:1.25;max-width:170px}

/* BTH_ECONOMIC_LEDGER_V2 */
.bth-ledger-v2__head{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:end;margin:18px 0 22px;padding:22px;border:1px solid var(--bth-border);border-radius:18px;background:linear-gradient(135deg,rgba(9,31,58,.96),rgba(5,18,35,.94))}.bth-ledger-v2__eyebrow{color:var(--bth-cyan);font-size:.72rem;font-weight:900;letter-spacing:.14em}.bth-ledger-v2__head h1{font-size:clamp(2.2rem,6vw,4.8rem);line-height:.95;margin:8px 0}.bth-ledger-v2__head p{color:var(--bth-muted);font-size:clamp(.9rem,2vw,1.15rem)}.bth-ledger-v2__chips{display:flex;flex-wrap:wrap;gap:7px;justify-content:flex-end}.bth-ledger-v2__chips span{padding:7px 10px;border:1px solid var(--bth-border-soft);border-radius:999px;background:#07172b;color:#d9eaff;font-size:.72rem;font-weight:800}.bth-ledger-v2__section{margin-top:20px}.bth-ledger-game-tabs{display:flex;gap:7px;overflow:auto;padding:3px 0 10px}.bth-ledger-game-tabs a{flex:0 0 auto;padding:7px 10px;border:1px solid var(--bth-border-soft);border-radius:999px;color:var(--bth-muted);font-size:.68rem;font-weight:850}.bth-ledger-game-tabs a.is-active{background:var(--bth-cyan);color:#03111f;border-color:var(--bth-cyan)}.bth-ledger-prop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.bth-ledger-prop-v2{padding:12px;border:1px solid var(--bth-border);border-radius:12px;background:linear-gradient(180deg,#0b1c34,#071526);min-width:0}.bth-ledger-prop-v2__head{display:flex;align-items:center;gap:9px}.bth-ledger-prop-v2__head img{width:46px;height:50px;object-fit:contain}.bth-ledger-prop-v2__head>div{display:grid;gap:2px}.bth-ledger-prop-v2__head span{color:var(--bth-muted);font-size:.7rem}.bth-ledger-prop-v2__prices{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-top:10px}.bth-ledger-prop-v2__prices>div{display:grid;gap:2px;padding:8px;border:1px solid var(--bth-border-soft);border-radius:8px;background:#061224}.bth-ledger-prop-v2__prices small{color:var(--bth-muted);font-size:.62rem}.bth-ledger-prop-v2__prices strong{color:#7ce7ff;font-size:1rem}.bth-ledger-prop-v2__prices span{font-size:.64rem;color:#dcecff}.bth-ledger-prop-v2__prices .is-model strong{color:#fff}.bth-ledger-prop-v2__foot{display:flex;justify-content:space-between;gap:8px;align-items:center;margin-top:9px;color:var(--bth-muted);font-size:.65rem}.bth-ledger-prop-v2__foot details{position:relative}.bth-ledger-prop-v2__foot summary{cursor:pointer;color:var(--bth-cyan);font-weight:800}.bth-ledger-prop-v2__foot .bth-ledger-book-list{margin-top:6px}.bth-ledger-v2__note{margin:20px 0 8px;padding:12px;border-top:1px solid var(--bth-border-soft);color:var(--bth-muted);font-size:.72rem;text-align:center}@media(max-width:999px){.bth-ledger-prop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.bth-ledger-v2__head{grid-template-columns:1fr}.bth-ledger-v2__chips{justify-content:flex-start}}@media(max-width:639px){.bth-ledger-v2__head{padding:16px;border-radius:14px}.bth-ledger-v2__head h1{font-size:2.7rem}.bth-ledger-prop-grid{grid-template-columns:1fr}.bth-ledger-prop-v2__prices{grid-template-columns:repeat(2,minmax(0,1fr))}}
/* BTH MOBILE INTELLIGENCE POLISH V3 — 2026-09-20 */
.bth-full-output__toggle{margin:0;padding:10px 12px!important;border:1px solid rgba(88,212,255,.34);border-radius:12px;background:rgba(88,212,255,.07);align-items:center;text-decoration:none}
.bth-full-output__toggle>span{display:grid;gap:2px;min-width:0}
.bth-full-output__toggle b{color:var(--bth-cyan);font-size:.72rem;letter-spacing:.055em}
.bth-full-output__toggle small{color:var(--bth-muted);font-size:.6rem;font-weight:700}
.bth-full-output__toggle>strong{white-space:nowrap}
.bth-full-output[open]>.bth-full-output__toggle{background:rgba(88,212,255,.12);border-color:rgba(88,212,255,.52)}
.bth-ledger-v3,.bth-ledger-v3__section,.bth-ledger-game-grid,.bth-ledger-game,.bth-ledger-side,.bth-ledger-side>div{min-width:0;max-width:100%;box-sizing:border-box}
.bth-ledger-v3{overflow-x:clip}
.bth-ledger-game__head{min-width:0}
.bth-ledger-game__head a,.bth-ledger-game__head strong,.bth-ledger-game__head span{min-width:0;overflow-wrap:anywhere}
.bth-ledger-more>summary{display:flex;align-items:center;justify-content:center;min-height:42px;border:1px solid rgba(88,212,255,.28);border-radius:12px;background:rgba(88,212,255,.06)}
.bth-gc-player-fallback{margin-top:4px}
@media(max-width:760px){
  .bth-intel-hero--predictions{grid-template-columns:minmax(0,1fr)!important}
  .bth-intel-hero--predictions .bth-intel-hero__mark{position:static!important;top:auto!important;right:auto!important;justify-self:start;align-self:start;margin-top:10px}
  .bth-intel-hero--predictions .bth-intel-hero__mark img{width:46px!important}
}
@media(max-width:639px){
  .bth-intel-page{min-width:0;max-width:100%;overflow-x:clip}
  .bth-intel-rail{max-width:100%;box-sizing:border-box}
  .bth-ledger-game-grid{grid-template-columns:minmax(0,1fr)!important}
  .bth-ledger-game{padding:12px;overflow:hidden;border-radius:16px}
  .bth-ledger-game__head{display:grid;grid-template-columns:minmax(0,1fr);gap:4px;align-items:start}
  .bth-ledger-game__head span{font-size:.64rem;white-space:normal}
  .bth-ledger-side{position:static!important;top:auto!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:6px}
  .bth-ledger-side>div{padding:8px;overflow:hidden}
  .bth-ledger-side strong{font-size:1rem}
  .bth-ledger-side small{font-size:.59rem;line-height:1.25;overflow-wrap:anywhere}
  .bth-ledger-more{padding:10px}
  .bth-ledger-more>.bth-ledger-game-grid{margin-top:10px}
  .bth-full-output__toggle{display:grid!important;grid-template-columns:minmax(0,1fr);gap:6px}
  .bth-full-output__toggle>strong{white-space:normal}
}


/* ========================================================================== */
/* BTH PREDICTION CENTER V4 — game-scoped model + market + fantasy           */
/* ========================================================================== */
.bth-pc-inventory{margin-top:12px}
.bth-pc-section{padding:14px 0;border-top:1px solid rgba(88,212,255,.16)}
.bth-pc-section:first-of-type{margin-top:6px}
.bth-pc-market-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.bth-pc-market-card{min-width:0;border:1px solid rgba(88,212,255,.22);border-radius:14px;background:rgba(5,17,35,.58);padding:12px;display:grid;gap:10px}
.bth-pc-market-card .bth-media-row{min-width:0;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:9px;align-items:center}
.bth-pc-market-card .bth-media-row>div{min-width:0}
.bth-pc-market-card .bth-media-row strong,.bth-pc-market-card .bth-media-row span{overflow-wrap:anywhere}
.bth-pc-market-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px}
.bth-pc-market-metrics>div{min-width:0;border:1px solid rgba(88,212,255,.16);border-radius:10px;padding:8px;background:rgba(0,0,0,.12)}
.bth-pc-market-metrics small,.bth-pc-market-metrics span{display:block;color:var(--bth-muted);font-size:.62rem;line-height:1.25}
.bth-pc-market-metrics strong{display:block;margin-top:3px;color:var(--bth-cyan);font-size:.96rem;overflow-wrap:anywhere}
.bth-pc-best-market{display:grid;grid-template-columns:auto minmax(0,1fr);gap:4px 10px;align-items:center;border-radius:10px;padding:8px 10px;background:rgba(88,212,255,.08);border:1px solid rgba(88,212,255,.2)}
.bth-pc-best-market>span,.bth-pc-best-market>small{color:var(--bth-muted);font-size:.62rem}
.bth-pc-best-market>strong{color:var(--bth-cyan);overflow-wrap:anywhere}
.bth-pc-best-market>small{grid-column:2}
.bth-pc-market-only,.bth-pc-contract-note{color:var(--bth-muted);font-size:.66rem;line-height:1.35}
.bth-pc-td-models{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
.bth-pc-td-models>div{border:1px solid rgba(88,212,255,.15);border-radius:10px;padding:8px}
.bth-pc-td-models small,.bth-pc-td-models span{display:block;color:var(--bth-muted);font-size:.62rem}
.bth-pc-td-models strong{display:block;color:#fff;font-size:.95rem;margin:2px 0}
.bth-pc-fantasy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.bth-pc-fantasy-card{min-width:0;display:grid;grid-template-columns:auto minmax(0,1fr);gap:8px 10px;align-items:center;text-decoration:none;color:inherit;border:1px solid rgba(88,212,255,.18);border-radius:12px;padding:9px;background:rgba(5,17,35,.46)}
.bth-pc-fantasy-card>div{min-width:0}
.bth-pc-fantasy-card strong,.bth-pc-fantasy-card span{overflow-wrap:anywhere}
.bth-pc-fantasy-values{grid-column:1/-1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}
.bth-pc-fantasy-values>span{border:1px solid rgba(88,212,255,.14);border-radius:8px;padding:7px;color:var(--bth-muted);font-size:.62rem}
.bth-pc-fantasy-values b{display:block;color:#fff;font-size:.84rem;margin-top:2px}
.bth-intel-hero__mark{gap:8px}
.bth-intel-hero__mark span{font-size:.67rem;font-weight:900;letter-spacing:.12em;color:var(--bth-muted);white-space:nowrap}
@media(max-width:760px){
  .bth-pc-market-grid,.bth-pc-fantasy-grid{grid-template-columns:minmax(0,1fr)}
  .bth-pc-market-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bth-intel-hero--predictions .bth-intel-hero__mark{display:flex!important;align-items:center!important}
}
@media(max-width:420px){
  .bth-pc-market-metrics,.bth-pc-td-models{grid-template-columns:minmax(0,1fr)}
  .bth-pc-best-market{grid-template-columns:minmax(0,1fr)}
  .bth-pc-best-market>small{grid-column:auto}
}


/* BTH PREDICTION CENTER V4.1 — touchdown pricing context */
.bth-pc-td-pricing{margin:12px 0;border:1px solid rgba(88,212,255,.2);border-radius:12px;background:rgba(5,17,35,.42);overflow:hidden}
.bth-pc-td-pricing>summary{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:11px 12px;cursor:pointer;background:rgba(88,212,255,.06);font-weight:900;letter-spacing:.045em}
.bth-pc-td-pricing>summary span{color:var(--bth-cyan)}
.bth-pc-td-pricing>summary strong{color:var(--bth-muted);font-size:.72rem}
.bth-pc-td-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;padding:10px}
.bth-pc-td-card{min-width:0;border:1px solid rgba(88,212,255,.16);border-radius:12px;padding:10px;background:rgba(0,0,0,.12);display:grid;gap:8px}
.bth-pc-td-card .bth-media-row{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:8px;align-items:center}
@media(max-width:760px){.bth-pc-td-grid{grid-template-columns:minmax(0,1fr)}.bth-pc-td-pricing>summary{align-items:flex-start;flex-direction:column}}


/* BTH PREDICTION CENTER V4.2 â€” primary navigation merger */
.bth-bottom-nav__item--prediction-center{white-space:normal;line-height:1.02;text-align:center;overflow-wrap:normal;word-break:normal}
@media(max-width:639px){.bth-bottom-nav__item--prediction-center{font-size:6.8px;letter-spacing:0;max-width:72px;justify-self:center}}


/* BTH_BETA_PREDICTION_CENTER_V1 */
.bth-gc-head--compact{flex-wrap:wrap;align-items:center}
.bth-gc-head--compact>div:first-child{min-width:min(100%,420px);flex:1 1 420px}
.bth-window-chips--gc{display:flex;flex:1 1 100%;gap:7px;flex-wrap:wrap;align-items:center;margin-top:2px}
.bth-window-chips--gc a{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;border:1px solid var(--bth-border-soft);border-radius:999px;background:#07172b;color:var(--bth-muted);font-size:.72rem;font-weight:850;line-height:1;text-decoration:none;white-space:nowrap}
.bth-window-chips--gc a.is-active{border-color:var(--bth-cyan);background:rgba(0,210,255,.12);color:var(--bth-cyan)}
.bth-pc-beta{display:grid;gap:14px}.bth-pc-beta__hero{margin-bottom:0}.bth-pc-beta__hero h1{max-width:850px}
.bth-pc-game-picker{min-width:0;border:1px solid var(--bth-border-soft);border-radius:18px;background:rgba(5,17,35,.66);padding:8px}
.bth-pc-game-picker__rail{display:flex;gap:8px;overflow-x:auto;overscroll-behavior-inline:contain;scrollbar-width:thin;padding:2px}
.bth-pc-game-chip{flex:0 0 auto;width:230px;min-height:92px;display:grid;gap:6px;padding:10px;border:1px solid var(--bth-border-soft);border-radius:14px;background:#07172b;color:inherit;text-decoration:none}
.bth-pc-game-chip.is-selected{border-color:var(--bth-cyan);box-shadow:0 0 0 1px rgba(0,210,255,.2),0 0 20px rgba(0,210,255,.12)}
.bth-pc-game-chip__matchup{display:grid;grid-template-columns:28px auto 16px auto 28px;gap:6px;align-items:center;justify-content:start}
.bth-pc-game-chip__matchup img{width:28px;height:28px;object-fit:contain}.bth-pc-game-chip__matchup span{color:var(--bth-muted);text-align:center}.bth-pc-game-chip small{color:var(--bth-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bth-pc-game-chip>b{font-size:.73rem;color:var(--bth-cyan)}
.bth-pc-selected{display:grid;gap:12px;scroll-margin-top:84px}.bth-pc-selected__head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;align-items:center;padding:18px;border:1px solid var(--bth-border);border-radius:18px;background:linear-gradient(180deg,#0a1c34,#071526)}
.bth-pc-selected__teams{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);align-items:center;gap:14px}.bth-pc-selected__teams>div{display:flex;align-items:center;gap:10px;font-size:1.45rem}.bth-pc-selected__teams>div:last-child{justify-content:flex-end}.bth-pc-selected__teams img{width:52px;height:52px;object-fit:contain}.bth-pc-selected__teams>span{color:var(--bth-muted);font-weight:900}
.bth-pc-selected__meta{display:flex;gap:8px;align-items:center;flex-wrap:wrap;justify-content:flex-end}.bth-pc-selected__meta>span:not(.bth-status-pill){color:var(--bth-muted);font-size:.75rem;font-weight:800}
.bth-pc-summary-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.bth-pc-moneyline{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.bth-pc-moneyline>div{padding:12px;border:1px solid var(--bth-border-soft);border-radius:12px;background:#061427}.bth-pc-moneyline small{display:block;color:var(--bth-muted);margin-bottom:4px}.bth-pc-moneyline strong{font-size:1.2rem}
.bth-pc-section-nav{display:flex;gap:7px;overflow-x:auto;scrollbar-width:thin}.bth-pc-section-nav a{flex:0 0 auto;padding:9px 12px;border:1px solid var(--bth-border-soft);border-radius:999px;color:var(--bth-muted);font-size:.72rem;font-weight:850;text-decoration:none}.bth-pc-section-nav a:hover{border-color:var(--bth-cyan);color:var(--bth-cyan)}
.bth-pc-beta-section{scroll-margin-top:84px}.bth-pc-beta-details{padding:0;overflow:hidden;scroll-margin-top:84px}.bth-pc-beta-details>summary{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:15px 16px;cursor:pointer;font-weight:900;letter-spacing:.04em}.bth-pc-beta-details>summary strong{color:var(--bth-muted);font-size:.72rem}.bth-pc-beta-details[open]>summary{border-bottom:1px solid var(--bth-border-soft)}.bth-pc-beta-details>div,.bth-pc-beta-details>p{margin:12px 14px}.bth-pc-selected__actions{display:flex;gap:8px;flex-wrap:wrap}
@media(max-width:760px){.bth-pc-beta__hero{padding:20px 16px}.bth-pc-beta__hero h1{font-size:clamp(2rem,11vw,3rem);line-height:.98}.bth-pc-beta__hero .bth-intel-hero__mark{display:none}.bth-pc-game-chip{width:205px}.bth-pc-selected__head{grid-template-columns:1fr;padding:14px}.bth-pc-selected__meta{justify-content:flex-start}.bth-pc-selected__teams>div{font-size:1.2rem}.bth-pc-selected__teams img{width:42px;height:42px}.bth-pc-summary-grid{grid-template-columns:1fr}.bth-pc-market-grid{grid-template-columns:1fr}.bth-pc-selected__actions{display:grid;grid-template-columns:1fr}.bth-pc-selected__actions .bth-btn{text-align:center}.bth-gc-head--compact{align-items:flex-start}.bth-gc-window{flex-wrap:wrap}}
@media(max-width:430px){.bth-pc-game-chip{width:190px}.bth-pc-selected__teams{gap:7px}.bth-pc-selected__teams>div{gap:6px;font-size:1.05rem}.bth-pc-selected__teams img{width:36px;height:36px}.bth-pc-moneyline{grid-template-columns:1fr 1fr}.bth-window-chips--gc{gap:5px}.bth-window-chips--gc a{padding:7px 9px;font-size:.68rem}}


.bth-gc-prediction-link{flex:0 0 auto;white-space:nowrap;text-decoration:none}.bth-gc-head--compact .bth-gc-prediction-link{margin-left:auto}@media(max-width:760px){.bth-gc-head--compact .bth-gc-prediction-link{width:100%;margin-left:0;text-align:center}}

/* BTH_SEP20_RECONCILIATION_UI_FIX_V1 */
@media(max-width:760px){
  .bth-gc-head--compact>div:first-child{min-width:0!important;width:100%;flex:0 0 auto!important}
  .bth-gc-head--compact{gap:10px!important}
}
