@keyframes cta-sweep {
  0% {
    left: -35%;
    opacity: 0
  }

  18% {
    opacity: 1
  }

  45% {
    left: 110%;
    opacity: .9
  }

  to {
    left: 110%;
    opacity: 0
  }
}

/* Today's and previous O/U rows use one consistent centered grid. Lock status
   is deliberately plain text here, without a pill, border, or highlight. */
.terminal-table.ou-data-table th,
.terminal-table.ou-data-table td,
.terminal-table.ou-data-table .matchup-cell,
.terminal-table.ou-data-table .team-line,
.terminal-table.ou-data-table .vs-line,
.terminal-table.ou-data-table .metric-tip {
  text-align: center !important;
}

.terminal-table.ou-data-table .trade-state-pill,
.terminal-table.ou-data-table .trade-state-pill.state-monitoring,
.terminal-table.ou-data-table .trade-state-pill.state-locked {
  display: inline !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
}

.table-panel > .terminal-title {
  text-align: center !important;
}

@keyframes aiGlowSweep {
  0% {
    transform: translateX(-120%)
  }

  to {
    transform: translateX(120%)
  }
}

@keyframes premiumFlow {

  0%,
  to {
    background-position: 0 50%
  }

  25% {
    background-position: 100% 50%
  }

  50% {
    background-position: 100% 100%
  }

  75% {
    background-position: 0 100%
  }
}

@keyframes colorPulse {

  0%,
  to {
    opacity: .65;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.04)
  }
}

@keyframes shineSweep {
  0% {
    left: -70%
  }

  to {
    left: 170%
  }
}

@keyframes premiumAtmosphere {

  0%,
  to {
    transform: translateX(0) translateY(0) scale(1)
  }

  50% {
    transform: translateX(12px) translateY(-6px) scale(1.03)
  }
}

@keyframes premiumSweep {
  0% {
    left: -50%
  }

  to {
    left: 160%
  }
}

@keyframes burnishedGoldMove {

  0%,
  to {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

:root {
  --bg-1: #07111f;
  --bg-2: #0c1728;
  --bg-3: #101b2e;
  --panel: rgba(12, 24, 44, 0.82);
  --panel-border: rgba(122, 160, 255, 0.16);
  --text: #e9f1ff;
  --soft: rgba(233, 241, 255, 0.72);
  --muted: #9eb4d5;
  --cyan: #63d6ff;
  --cyan-dark: #03131c;
  --blue: #74a7ff;
  --green: #44e2a8;
  --yellow: #ffd466;
  --orange: #ffae63;
  --red: #ff7676;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px
}

*,
::after,
::before,
body.debug-layout * {
  box-sizing: border-box
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden
}

body,
html {
  min-height: 100%;
  background: radial-gradient(circle at top left, rgba(72, 123, 255, .18), transparent 25%), radial-gradient(circle at top right, rgba(54, 217, 164, .12), transparent 18%), linear-gradient(180deg, var(--bg-1), #040811 70%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  max-width: 100%
}

a {
  color: var(--cyan);
  text-decoration: none
}

a:hover {
  opacity: .9
}

.page-shell {
  padding: 34px 22px 70px
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6, 12, 22, .88)
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #06111d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 10px 25px rgba(68, 226, 168, .24)
}

.brand-kicker {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px
}

.brand-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em
}

.brand-subtitle {
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px
}

.brand-accent {
  color: #59d2ff
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.nav a {
  color: #c7d8f5;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent
}

.nav a:hover {
  border-color: rgba(99, 214, 255, .3);
  background: rgba(255, 255, 255, .03)
}

.hero-compact {
  padding-top: 8px
}

.hero-docs {
  padding-bottom: 8px
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px
}

.hero .eyebrow {
  font-size: 18px;
  letter-spacing: 2px
}

.hero h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 980px
}

.hero-text {
  margin-top: 16px;
  font-size: 22px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease
}

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

.btn-primary {
  color: #06111d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 12px 25px rgba(68, 226, 168, .18)
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(122, 160, 255, .18)
}

.update-form {
  display: flex;
  justify-content: center;
  margin: 40px 0
}

.btn-update {
  background: linear-gradient(135deg, #67e8f9, #3b82f6);
  color: #021018;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(59, 130, 246, .35), 0 0 12px rgba(103, 232, 249, .25);
  transition: all .25s ease
}

.btn-update:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(59, 130, 246, .45), 0 0 18px rgba(103, 232, 249, .35)
}

.btn-update:active {
  transform: scale(.97);
  box-shadow: 0 4px 12px rgba(59, 130, 246, .3)
}

.btn-update.loading {
  opacity: .7;
  pointer-events: none
}

.panel {
  border: 1px solid var(--panel-border)
}

.panel,
.pick-card,
.stat-card {
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius)
}

.side-panel {
  border: 1px solid var(--panel-border)
}

.code-panel,
.docs-section-card,
.docs-sidebar-panel,
.overview-card,
.side-panel,
.table-panel {
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius)
}

.code-panel,
.docs-section-card,
.docs-sidebar-panel,
.overview-card {
  border: 1px solid var(--panel-border)
}

.panel {
  padding: 18px;
  margin-bottom: 18px;
  backdrop-filter: blur(12px)
}

.code-panel,
.docs-section-card,
.overview-card {
  padding: 22px
}

.side-panel {
  padding: 20px
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px
}

.status-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%
}

.status-label {
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  text-align: center;
  width: 100%
}

.status-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  width: 100%
}

.label {
  color: #8ea7cb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em
}

.value {
  margin-top: 10px;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.12
}

.value-small {
  font-size: 22px
}

.stat-card .label,
.stat-card .value {
  text-align: center;
  width: 100%
}

.stat-card .label {
  font-size: 12px;
  opacity: .7
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800
}

.section-title-row {
  margin: 0 0 6px
}

.section-title-row h2,
.stat-card .value {
  font-size: 28px
}

.section-caption {
  font-size: 14px
}

.terminal-layout {
  display: grid;
  grid-template-columns: 2.1fr .9fr;
  gap: 20px;
  margin-top: 24px
}

.overview-grid,
.terminal-side {
  display: grid;
  gap: 18px
}

.overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px
}

.pick-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2
}

.pick {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 800;
  color: #fff
}

.game-pick,
.game-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3
}

.game-meta,
.game-stats {
  font-size: 14px;
  opacity: .85
}

.game-meta {
  opacity: .7
}

.meta-row,
.submeta {
  margin-top: 12px;
  font-size: 14px
}

.meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #d0def8
}

.submeta {
  color: var(--cyan);
  font-weight: 600
}

.card-note {
  line-height: 1.55;
  font-size: 15px
}

.card-header-meta {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(180, 200, 255, .75);
  display: flex;
  gap: 10px
}

.game-date {
  opacity: .85
}

.game-time {
  color: #7fdcff;
  font-weight: 500
}

.bet-card-meta,
.bet-card-subtle,
.bet-card-summary {
  font-family: "SF Mono", "Menlo", monospace
}

.side-label {
  font-size: 12px;
  color: var(--cyan)
}

.notes-list,
.snapshot-row {
  color: var(--muted)
}

.snapshot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  margin: 0 auto
}

.snapshot-row:last-child {
  border-bottom: 0
}

.snapshot-row strong {
  color: var(--text)
}

.snapshot-sub {
  font-size: 11px;
  opacity: .6;
  margin-top: 4px;
  letter-spacing: .5px
}

.full-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.full-board-time {
  font-size: 2rem;
  font-weight: 700;
  color: #cfe2ff;
  letter-spacing: -.02em
}

.table-wrap {
  margin-top: 14px
}

.docs-table-wrap {
  overflow-x: auto;
  margin-top: 14px
}

.table-dark-custom td {
  color: var(--text);
  font-size: .94rem
}

.terminal-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cyan);
  font-weight: 800
}

.terminal-table tr {
  transition: background .2s ease
}

.table-dark-custom tbody tr:hover,
.terminal-table tbody tr:hover,
.terminal-table tr:hover {
  background: rgba(255, 255, 255, .03)
}

.terminal-table td:last-child,
.terminal-table th:last-child {
  padding-right: 24px
}

.docs-table td {
  vertical-align: top
}

.num-col {
  text-align: right;
  white-space: nowrap
}

.confidence-cell,
.text-end {
  font-variant-numeric: tabular-nums
}

.confidence-cell {
  text-align: right;
  width: 100px;
  padding-right: 18px
}

.edge-col {
  width: 90px;
  max-width: 90px;
  padding-right: 16px
}

.confidence-col {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  text-align: right;
  padding-right: 20px;
  font-variant-numeric: tabular-nums
}

.conf-high,
.confidence-high {
  color: #21c999;
  font-weight: 600
}

.conf-mid,
.confidence-medium {
  color: #f4c430;
  font-weight: 600
}

.conf-low,
.confidence-low {
  color: #ff6b6b;
  font-weight: 500
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase
}

.status,
.status-pill {
  font-size: 12px;
  text-align: center
}

.status-wrap {
  display: inline-block
}

.status-cell,
td.status {
  text-align: center;
  vertical-align: middle
}

.pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 700;
  background: rgba(143, 231, 251, .12);
  border: 1px solid rgba(143, 231, 251, .3);
  color: var(--cyan)
}

.pill,
.table-dark-custom td.col-center .pill {
  min-width: 110px
}

.status-pill.status-watch,
.status-watch {
  background: rgba(180, 180, 180, .12)
}

.status-pill.status-watch {
  color: #cbd5e1
}

.status-avoid,
.status-pill.status-avoid {
  background: rgba(255, 118, 118, .16);
  color: #ff9a9a
}

.model-best-bet {
  background: rgba(33, 201, 153, .15);
  color: #62e8ff
}

.model-pass {
  background: rgba(255, 255, 255, .06);
  color: #9db2cc
}

.mode-pill.strict {
  background: rgba(255, 215, 0, .15);
  color: gold;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  letter-spacing: .5px
}

.ai-top6-row {
  background: linear-gradient(90deg, rgba(0, 180, 255, .06), rgba(0, 180, 255, .02));
  border-left: 3px solid rgba(0, 180, 255, .6)
}

.conflict-row {
  background: linear-gradient(90deg, rgba(255, 80, 80, .06), rgba(255, 80, 80, .02));
  border-left: 3px solid rgba(255, 80, 80, .7)
}

.ai-top6-row.conflict-row {
  border-left: 3px solid #fc0
}

.mini-flag {
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 6px;
  background: rgba(0, 180, 255, .15);
  color: #6cf;
  font-weight: 600
}

.mini-flag.danger {
  background: rgba(255, 80, 80, .15);
  color: #ff7b7b
}

.ai-view {
  color: #9ec5ff;
  text-align: center;
  vertical-align: middle
}

.ai-summary-row {
  background: rgba(255, 255, 255, .02)
}

.ai-summary-cell {
  padding: 12px 16px;
  font-size: 14px;
  color: #cfe3ff;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.notes {
  color: var(--soft) !important;
  min-width: 260px;
  line-height: 1.45
}

.empty-state {
  color: var(--soft);
  padding: 8px 0
}

.docs-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  margin-top: 26px
}

.docs-sidebar {
  position: relative
}

.docs-sidebar-panel {
  position: sticky;
  top: 92px;
  padding: 18px
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.docs-nav a {
  color: #d8e7ff;
  padding: 10px 12px;
  border-radius: 12px;
  transition: .2s ease;
  border: 1px solid transparent
}

.docs-nav a:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(99, 214, 255, .2)
}

.docs-main {
  display: grid;
  gap: 20px
}

.docs-section-card {
  scroll-margin-top: 96px
}

.docs-code {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #9fd6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px
}

.overview-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px
}

.overview-card li,
.overview-card p {
  color: var(--muted);
  line-height: 1.65
}

.code-panel h2 {
  margin-top: 0
}

.code-panel pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #d7e6ff;
  background: rgba(255, 255, 255, .03);
  border-radius: 14px;
  padding: 18px;
  overflow-x: auto
}

.code-panel-error {
  border-color: rgba(255, 118, 118, .24)
}

.sort-toggle-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px
}

.sort-toggle {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #c7d2e3;
  text-decoration: none;
  background: rgba(255, 255, 255, .04)
}

.sort-toggle.active {
  color: #fff;
  border-color: rgba(66, 153, 225, .55);
  background: rgba(66, 153, 225, .16)
}

.site-footer-premium {
  margin-top: 60px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(10, 14, 25, .9), #05080f);
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-shell {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start
}

.footer-kicker {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6f8bb8;
  margin-bottom: 6px
}

.footer-mainline {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px
}

.footer-copy {
  font-size: 13px;
  line-height: 1.5;
  color: #9fb3d1
}

.footer-email {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #7fd6ff;
  text-decoration: none;
  transition: .2s ease
}

.footer-email:hover {
  color: #a8e6ff;
  text-shadow: 0 0 8px rgba(127, 214, 255, .4)
}

@media (max-width:1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .terminal-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width:1100px) {
  .docs-layout {
    grid-template-columns: 1fr
  }

  .docs-sidebar-panel {
    position: static
  }
}

@media (max-width:900px) {

  .footer-shell,
  .status-grid {
    grid-template-columns: 1fr
  }

  .footer-shell {
    gap: 20px
  }
}

@media (max-width:860px) {
  .hero h1 {
    font-size: 42px
  }

  .hero-text {
    font-size: 18px
  }

  .cards-grid,
  .overview-grid,
  .stats-grid {
    grid-template-columns: 1fr
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .nav {
    width: 100%
  }
}

@media (max-width:540px) {
  .page-shell {
    padding: 24px 14px 54px
  }

  .hero h1 {
    font-size: 34px
  }

  .value {
    font-size: 28px
  }
}

.table-dark-custom {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  table-layout: fixed
}

.table-dark-custom td,
.table-dark-custom th {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  vertical-align: middle
}

.table-dark-custom th {
  text-align: left;
  color: var(--cyan);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800
}

.table-dark-custom td:nth-child(3),
.table-dark-custom th:nth-child(3) {
  width: 120px;
  text-align: center
}

.table-dark-custom td:nth-child(4),
.table-dark-custom th:nth-child(4) {
  width: 140px;
  text-align: center
}

.table-dark-custom td:nth-child(5),
.table-dark-custom th:nth-child(5) {
  width: 170px;
  text-align: center
}

.table-dark-custom td:nth-child(6),
.table-dark-custom th:nth-child(6) {
  width: 280px
}

.table-dark-custom td:nth-child(3),
.table-dark-custom td:nth-child(4) {
  font-variant-numeric: tabular-nums
}

.table-dark-custom td.center .pill,
.table-dark-custom td:nth-child(5) .pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  margin: 0 auto
}

.table-dark-custom td.center,
.table-dark-custom th.center {
  text-align: center !important;
  vertical-align: middle !important
}

.table-dark-custom td.center .pill,
.table-dark-custom td.col-center .pill {
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.table-dark-custom td.center {
  font-variant-numeric: tabular-nums
}

.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  align-items: start;
  margin-top: 14px
}

.card-stat-label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted)
}

.card-stat-value {
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px
}

.pick-card.best-bet {
  border-color: rgba(68, 226, 168, .34);
  box-shadow: 0 0 0 1px rgba(68, 226, 168, .08), 0 20px 60px rgba(0, 0, 0, .35)
}

.card-note {
  margin-top: auto;
  padding-top: 18px
}

.cell-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.cell-center .pill {
  margin: 0 auto
}

.table-dark-custom td.col-center,
.table-dark-custom th.col-center {
  text-align: center !important;
  vertical-align: middle !important
}

.value-loss,
.value-win {
  color: #22c55e;
  font-weight: 700
}

.value-loss {
  color: #ef4444
}

.value-winrate {
  color: rgba(34, 197, 94, .9);
  font-weight: 600
}

.th-ai-score {
  white-space: nowrap;
  min-width: 90px;
  text-align: center
}

.section-title-row {
  margin-top: 2rem
}

.pill-pass {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .4);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  letter-spacing: .5px
}

.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(4),
.table th:nth-child(2),
.table th:nth-child(3),
.table th:nth-child(4) {
  text-align: center
}

.table td {
  vertical-align: middle
}

.table td:nth-child(2),
.table td:nth-child(3) {
  font-variant-numeric: tabular-nums
}

.terminal-table td.ai-pick-col,
.terminal-table td.edge-col,
.terminal-table th.ai-pick-col,
.terminal-table th.edge-col {
  text-align: center
}

.terminal-table td.matchup-cell {
  text-align: left
}

.terminal-table th:nth-child(7) {
  text-align: center
}

.terminal-table td.status-cell {
  text-align: center;
  vertical-align: middle
}

.terminal-table td.status-cell .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto
}

.terminal-table th:nth-child(6) {
  white-space: nowrap
}

.terminal-table td.tier-cell,
.terminal-table th:nth-child(6) {
  text-align: center;
  vertical-align: middle
}

.tier-cell .status-pill {
  margin: 0 auto
}

.status-win {
  background: rgba(34, 197, 94, .15)
}

.status-loss {
  background: rgba(239, 68, 68, .15);
  border: 1px solid rgba(239, 68, 68, .35)
}

.full-width-section {
  width: 100%;
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px
}

.card-top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px
}

.status-pill {
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 5px
}

.table td:last-child,
.table th:last-child,
td:last-child,
th:last-child {
  text-align: center
}

.board-image-box {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #08152f;
  border: 1px solid rgba(110, 170, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03)
}

.board-image-empty {
  font-size: 1rem
}

body.debug-layout article,
body.debug-layout aside,
body.debug-layout div,
body.debug-layout footer,
body.debug-layout header,
body.debug-layout li,
body.debug-layout main,
body.debug-layout section,
body.debug-layout table,
body.debug-layout tbody,
body.debug-layout td,
body.debug-layout th,
body.debug-layout thead,
body.debug-layout tr,
body.debug-layout ul {
  outline: 1px solid rgba(255, 0, 0, .35)
}

body.debug-layout .terminal-layout {
  outline: 3px solid #ff4d4f !important
}

body.debug-layout .terminal-main {
  outline: 3px solid #40a9ff !important
}

body.debug-layout .terminal-side {
  outline: 3px solid #73d13d !important
}

body.debug-layout .cards-grid {
  outline: 3px solid #faad14 !important
}

body.debug-layout .pick-card {
  outline: 3px solid #b37feb !important
}

body.debug-layout .side-panel {
  outline: 3px solid #13c2c2 !important
}

body.debug-layout .board-image-box,
body.debug-layout .board-image-panel {
  outline: 4px solid #ff85c0 !important
}

body.debug-layout .table-panel {
  outline: 3px solid #ffd666 !important
}

body.debug-layout .table-wrap {
  outline: 3px solid #95de64 !important
}

body.debug-layout .terminal-table {
  outline: 3px solid #69c0ff !important
}

body.debug-layout img {
  outline: 3px dashed #fff !important
}

.board-image {
  min-height: 420px;
  object-position: center
}

.board-image-empty {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #89a7d8
}

.subtext {
  margin-top: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .2px
}

.section-title-row h2 .subtext-inline {
  display: inline-block;
  margin-top: 6px;
  font-size: .65em;
  font-weight: 400;
  opacity: .6
}

.terminal-main {
  padding-bottom: 0
}

.system-notes-panel {
  flex: 0 0 360px
}

.terminal-main {
  margin-bottom: 24px
}

.board-image {
  background: #0b1220
}

.image-only {
  padding: 0;
  margin: 0;
  background: 0 0;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  border-radius: 28px
}

.image-only img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  outline: 0;
  box-shadow: none
}

.pick-card.image-only {
  border: 0 !important;
  box-shadow: none !important;
  background: 0 0 !important;
  padding: 0 !important
}

.image-card {
  border: 1px solid rgba(255, 255, 255, .03) !important
}

.pick-card.image-card {
  border: 1px solid rgba(255, 255, 255, .02) !important
}

.image-card,
.image-card *,
.pick-card.image-card {
  border: 0 !important;
  outline: 0 !important
}

.image-card * {
  box-shadow: none !important
}

.image-card,
.pick-card.image-card {
  padding: 0 !important
}

.board-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: inherit !important
}

.board-image,
.image-card img,
.image-slot {
  border: 0 !important;
  outline: 0 !important
}

.image-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: 0 0 !important;
  border-radius: inherit !important
}

.image-slot {
  padding: 0 !important;
  margin: 0 !important
}

.image-slot .board-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  outline: 0;
  border-radius: inherit
}

.stat-card {
  text-align: left
}

.image-panel,
.image-panel img {
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important
}

.board-image,
.image-slot,
.image-slot .board-image {
  -webkit-mask-image: none !important;
  mask-image: none !important
}

.image-slot {
  filter: none !important;
  -webkit-filter: none !important
}

.board-image,
.image-slot .board-image {
  background: 0 0 !important
}

.image-card,
.pick-card.image-card {
  filter: none !important;
  -webkit-filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important
}

.image-card,
.image-slot,
.pick-card.image-card {
  background: 0 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  border-radius: 28px !important
}

.board-image,
.image-card img,
.image-slot .board-image {
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  -webkit-mask-image: radial-gradient(circle, #000 94%, rgba(0, 0, 0, .88) 100%) !important;
  mask-image: radial-gradient(circle, #000 94%, rgba(0, 0, 0, .88) 100%) !important
}

.board-image {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35)
}

.status-pass {
  filter: grayscale(40%)
}

.longshot-table td,
.longshot-table th {
  text-align: left
}

.longshot-table .text-end {
  text-align: right
}

.longshot-signal-cell {
  color: #7dd3fc;
  font-weight: 900
}

.longshot-matchup {
  color: #dbeafe
}

.longshot-pick {
  color: #f8fafc;
  font-weight: 800
}

.longshot-odds {
  color: #67e8f9;
  font-weight: 900
}

.longshot-ai,
.longshot-edge {
  color: #a7f3d0;
  font-weight: 900
}

.longshot-ai {
  color: #c4b5fd
}

.longshot-score {
  color: #fde68a;
  font-weight: 900
}

.longshot-ev,
.longshot-win {
  color: #93c5fd;
  font-weight: 900
}

.longshot-ev {
  color: #38bdf8
}

.longshot-why {
  color: #e5e7eb;
  text-align: left;
  line-height: 1.35
}

.status-ice {
  background: linear-gradient(135deg, rgba(0, 200, 255, .18), rgba(0, 120, 255, .18));
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, .5);
  box-shadow: 0 0 18px rgba(56, 189, 248, .15)
}

.longshot-panel {
  border-color: rgba(56, 189, 248, .25);
  box-shadow: 0 0 30px rgba(56, 189, 248, .08)
}

.longshot-panel tr:hover {
  background: rgba(56, 189, 248, .05)
}

.longshot-subtitle {
  font-weight: 500;
  line-height: 1.5;
  opacity: .95;
  letter-spacing: .2px;
  margin-top: -6px;
  margin-bottom: 14px;
  font-size: 1.15rem;
  color: #9fb3c8
}

.section-subtitle {
  margin-top: 4px;
  margin-bottom: 20px;
  color: rgba(120, 180, 255, .7);
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase
}

.paywall-box {
  margin: 22px 0;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 28, 42, .96), rgba(5, 8, 14, .96));
  border: 1px solid rgba(120, 220, 255, .25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  color: #f4f8ff
}

.paywall-kicker {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7ee7ff;
  margin-bottom: 8px
}

.paywall-box h3 {
  margin: 0 0 8px;
  font-size: 1.35rem
}

.paywall-box p {
  max-width: 720px;
  color: rgba(244, 248, 255, .78);
  margin-bottom: 16px
}

.paywall-button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: #061018;
  background: #7ee7ff;
  text-decoration: none;
  font-weight: 800
}

.longshot-premium-panel {
  background: radial-gradient(circle at top left, rgba(88, 211, 255, .16), transparent 34%), linear-gradient(135deg, rgba(8, 18, 38, .98), rgba(9, 14, 30, .98))
}

.longshot-premium-header h2 {
  font-weight: 900;
  color: #edf5ff
}

.longshot-premium-header p {
  color: rgba(220, 232, 255, .68);
  font-size: .98rem;
  font-weight: 600
}

.longshot-left h3 {
  margin: 16px 0 8px;
  font-size: 1.3rem;
  color: #f2f7ff
}

.longshot-reason {
  max-width: 760px
}

.featured-metric {
  background: linear-gradient(135deg, rgba(255, 224, 104, .12), rgba(88, 211, 255, .08))
}

.longshot-empty {
  background: rgba(255, 255, 255, .04);
  color: rgba(230, 240, 255, .82);
  font-size: 1.2rem;
  font-weight: 700
}

@media (max-width:900px) {
  .longshot-card {
    grid-template-columns: 1fr
  }

  .longshot-metrics {
    grid-template-columns: repeat(2, minmax(120px, 1fr))
  }
}

.longshot-premium-panel {
  margin: 28px 0;
  border: 1px solid rgba(88, 211, 255, .35);
  background: radial-gradient(circle at top left, rgba(88, 211, 255, .14), transparent 32%), linear-gradient(135deg, rgba(8, 18, 38, .98), rgba(9, 14, 30, .98))
}

.longshot-kicker {
  color: #67e8ff;
  margin-bottom: 6px
}

.longshot-card {
  background: linear-gradient(135deg, rgba(18, 31, 58, .95), rgba(8, 14, 30, .95))
}

.longshot-pick-main {
  font-size: 1.65rem;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 12px
}

.longshot-reason {
  color: rgba(225, 236, 255, .76);
  font-size: .88rem
}

.metric-tile {
  background: rgba(255, 255, 255, .045)
}

.metric-label {
  color: rgba(205, 222, 255, .58)
}

.metric-value {
  font-weight: 950
}

.odds-value {
  color: #67e8ff
}

.edge-value {
  color: #b7ffd8
}

.ai-value {
  color: #c7b7ff
}

.score-value {
  color: #ffe987
}

.win-value {
  color: #8dbbff
}

.ev-value {
  color: #b7ffd8
}

.longshot-meta-row span {
  background: rgba(103, 232, 255, .08);
  font-weight: 800
}

.profit-positive {
  color: #00ff9f;
  text-shadow: 0 0 18px rgba(0, 255, 159, .35)
}

.longshot-meta-row span,
.metric-tile,
.status-ice {
  position: relative;
  cursor: help
}

.metric-tile:hover::after {
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .85)
}

.longshot-meta-row span:hover::after,
.metric-tile:hover::after,
.status-ice:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(2, 8, 18, .96);
  color: #eaf6ff;
  border: 1px solid rgba(103, 232, 255, .28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 9px;
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none
}

.longshot-meta-row span:hover::before,
.metric-tile:hover::before,
.status-ice:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  border: 6px solid transparent;
  border-top-color: rgba(2, 8, 18, .96);
  z-index: 9999;
  pointer-events: none
}

@media (max-width:700px) {
  .longshot-card {
    display: block;
    padding: 28px 22px
  }

  .longshot-left {
    width: 100%
  }

  .longshot-right {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .longshot-metric-card,
  .longshot-score-card,
  .longshot-stat-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box
  }

  .longshot-matchup,
  .longshot-pick {
    max-width: 100%;
    overflow-wrap: anywhere
  }

  .longshot-matchup {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 1.08
  }

  .longshot-pick {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    line-height: 1.05
  }
}

@media (max-width:430px) {
  .longshot-premium-panel {
    padding-left: 16px;
    padding-right: 16px
  }

  .longshot-card {
    padding: 24px 18px;
    border-radius: 28px
  }

  .longshot-right {
    grid-template-columns: 1fr
  }

  .longshot-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
  }
}

.longshot-card,
.longshot-premium-panel {
  box-sizing: border-box;
  overflow: hidden
}

.longshot-card {
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: stretch
}

.longshot-left {
  min-width: 0
}

.longshot-right {
  min-width: 0;
  max-width: 420px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.longshot-metric-card,
.longshot-score-card,
.longshot-stat-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box
}

.longshot-matchup,
.longshot-pick,
.longshot-summary {
  max-width: 100%;
  overflow-wrap: anywhere
}

@media (max-width:1200px) {
  .longshot-card {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px
  }

  .longshot-right {
    max-width: 300px;
    gap: 14px
  }
}

@media (max-width:900px) {
  .longshot-card {
    display: block
  }

  .longshot-right {
    max-width: none;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:430px) {
  .longshot-premium-panel {
    padding-left: 16px;
    padding-right: 16px
  }

  .longshot-card {
    padding: 24px 18px
  }

  .longshot-right {
    grid-template-columns: 1fr
  }
}

.terminal-table td.final-score-cell,
.terminal-table th.final-score-col,
th.final-score-col {
  text-align: left !important
}

.learning-divider {
  height: 1px;
  margin: 26px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(88, 217, 255, .35), transparent)
}

.learning-kicker {
  color: #8dffcf
}

.learning-summary {
  margin: 10px 0 16px;
  font-size: .95rem;
  color: rgba(214, 231, 255, .82)
}

.learning-change-card {
  background: rgba(5, 18, 26, .58)
}

.learning-param {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8dffcf
}

.learning-values {
  margin-top: 5px;
  font-size: 1.2rem;
  color: #fff
}

.learning-copy {
  margin-top: 8px;
  font-size: .9rem;
  color: rgba(214, 231, 255, .78)
}

.learning-copy strong {
  color: #fff
}

.learning-empty,
.learning-meta {
  margin-top: 9px;
  font-size: .78rem;
  color: rgba(169, 196, 230, .68)
}

.terminal-table td:nth-child(8),
.terminal-table th:nth-child(8) {
  text-align: left !important;
  padding-left: 14px
}

.terminal-table td.why-cell {
  text-align: left !important;
  line-height: 1.4
}

.premium-lock-banner {
  position: relative;
  margin: 28px 0;
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(120deg, #ff4fd8, #6a5cff, #24d7ff, #39ff88, #fff04a);
  box-shadow: 0 0 28px rgba(36, 215, 255, .35), 0 0 44px rgba(255, 79, 216, .22)
}

.premium-lock-content {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 25px;
  padding: 54px 64px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 28px;
  background: radial-gradient(circle at 78% 48%, rgba(255, 195, 55, .26), transparent 20%), radial-gradient(circle at 90% 20%, rgba(57, 255, 136, .12), transparent 24%), radial-gradient(circle at 10%0, rgba(255, 79, 216, .1), transparent 28%), linear-gradient(135deg, #07152e 0, #061121 48%, #031216 100%)
}

.premium-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px
}

.premium-lock-left h2 {
  max-width: 980px;
  margin: 0 0 24px;
  color: #f4f7ff;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.045em
}

.premium-lock-left p {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(238, 244, 255, .92);
  font-size: clamp(19px, 2.1vw, 32px);
  line-height: 1.35
}

.premium-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 34px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  background: linear-gradient(100deg, #19c8ff, #6a46ff 48%, #ff35dc);
  border: 2px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 24px rgba(255, 53, 220, .45), inset 0 0 18px rgba(255, 255, 255, .18);
  transition: transform .18s ease, box-shadow .18s ease
}

.premium-unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 53, 220, .65), 0 0 28px rgba(25, 200, 255, .4)
}

.premium-unlock-btn .arrow {
  font-size: 34px;
  line-height: 1
}

.premium-lock-graphic {
  position: relative;
  min-height: 260px
}

.glow-burst {
  position: absolute;
  width: 330px;
  height: 330px;
  right: 60px;
  top: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 87, .9), rgba(255, 132, 0, .26) 36%, transparent 68%);
  filter: blur(4px)
}

.treasure-box {
  position: absolute;
  right: 85px;
  top: 72px;
  width: 230px;
  height: 145px;
  transform: rotate(2deg);
  filter: drop-shadow(0 0 28px rgba(255, 196, 58, .65))
}

.box-lid {
  position: absolute;
  left: 16px;
  top: -34px;
  width: 205px;
  height: 74px;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(145deg, #18284a, #f6bd38 48%, #16223b 70%);
  border: 3px solid #ffd369
}

.box-body {
  position: absolute;
  inset: 28px 0 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #101b33, #061126);
  border: 4px solid #fc5
}

.baseball-icon {
  position: absolute;
  left: 82px;
  top: 38px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #fc5;
  font-size: 34px
}

.lock-icon {
  position: absolute;
  left: 92px;
  top: 12px;
  font-size: 54px;
  z-index: 3
}

.chart-bars {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: flex;
  align-items: end;
  gap: 10px
}

.chart-bars span {
  width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#ff4fe8, #7b5cff);
  box-shadow: 0 0 16px rgba(255, 79, 232, .65)
}

.chart-bars span:nth-child(1) {
  height: 42px
}

.chart-bars span:nth-child(2) {
  height: 70px
}

.chart-bars span:nth-child(3) {
  height: 100px
}

.chart-bars span:nth-child(4) {
  height: 136px
}

.up-arrow {
  position: absolute;
  right: 24px;
  top: 10px;
  color: #66ff72;
  font-size: 110px;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(102, 255, 114, .85)
}

@media (max-width:900px) {
  .premium-lock-content {
    grid-template-columns: 1fr;
    padding: 34px 24px
  }

  .premium-lock-graphic {
    display: none
  }

  .premium-unlock-btn {
    width: 100%;
    justify-content: center;
    font-size: 21px
  }
}

.ou-hero-panel {
  margin: 26px 0;
  padding: 34px 38px;
  border-radius: 26px;
  border: 1px solid rgba(103, 232, 249, .28);
  background: radial-gradient(circle at 85% 35%, rgba(45, 212, 191, .22), transparent 28%), linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(2, 6, 23, .98));
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  overflow: hidden
}

.ou-hero-copy h2 {
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 1;
  color: #f8fbff
}

.ou-hero-copy p {
  color: #aab7cc;
  font-size: 18px;
  max-width: 760px
}

.ou-hero-image {
  position: relative;
  min-height: 190px
}

.ou-ball {
  position: absolute;
  right: 110px;
  top: 28px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  font-size: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 50px rgba(103, 232, 249, .35)
}

.ou-bars {
  position: absolute;
  right: 20px;
  bottom: 26px;
  display: flex;
  gap: 10px;
  align-items: end
}

.ou-bars span {
  width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#67e8f9, #a78bfa);
  box-shadow: 0 0 18px rgba(103, 232, 249, .4)
}

.ou-bars span:nth-child(1) {
  height: 44px
}

.ou-bars span:nth-child(2) {
  height: 70px
}

.ou-bars span:nth-child(3) {
  height: 96px
}

.ou-bars span:nth-child(4) {
  height: 130px
}

.ou-bet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px
}

.ou-bet-card {
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(103, 232, 249, .22);
  background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(8, 13, 28, .98));
  box-shadow: 0 0 28px rgba(0, 0, 0, .28)
}

.ou-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px
}

.ou-date {
  color: #8da2c0;
  font-size: 12px;
  font-weight: 800
}

.ou-bet-card h3 {
  line-height: 1.15;
  margin: 0 0 14px
}

.ou-pick-line {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: #67e8f9;
  margin-bottom: 20px
}

.ou-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.ou-metrics div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08)
}

.ou-metrics span {
  display: block;
  color: #8da2c0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 6px
}

.ou-bet-card h3,
.ou-metrics strong {
  color: #f8fbff;
  font-size: 20px
}

.ou-notes {
  margin: 16px 0 0;
  color: #9daac0;
  font-size: 13px;
  line-height: 1.4
}

.empty-panel {
  grid-column: 1/-1;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(103, 232, 249, .22);
  background: rgba(15, 23, 42, .86);
  color: #dbeafe
}

@media (max-width:1100px) {

  .ou-bet-grid,
  .ou-hero-panel {
    grid-template-columns: 1fr
  }

  .ou-hero-image {
    display: none
  }
}

.highlight-row {
  background: rgba(94, 234, 212, .08);
  box-shadow: inset 3px 0 0 rgba(94, 234, 212, .8)
}

.learning-layer-title {
  background: linear-gradient(90deg, #67e8f9 0, #38bdf8 35%, #22d3ee 70%, #6ee7ff 100%)
}

.learning-layer-copy {
  margin-bottom: 1.1rem
}

.learning-layer-title {
  background: linear-gradient(90deg, #7dd3fc 0, #38bdf8 35%, #22d3ee 70%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(56, 189, 248, .18), 0 0 24px rgba(34, 211, 238, .1);
  margin-bottom: 1.4rem
}

.learning-layer-box {
  border-top: 1px solid rgba(90, 180, 255, .22);
  padding-top: 1.8rem;
  margin-top: 1.8rem
}

.learning-layer-copy {
  color: rgba(185, 200, 225, .92);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0
}

.learning-layer-copy p {
  margin-bottom: 1.25rem
}

.ai-reasoning-card p:last-child,
.ai-system-notice p:last-child,
.learning-layer-copy p:last-child {
  margin-bottom: 0
}

.learning-layer-small {
  font-size: .95rem;
  line-height: 1.55;
  margin-top: 1rem
}

.learning-layer-small strong {
  color: #67dfff;
  font-weight: 800
}

.ou-top-card-section h3 {
  margin: 0 0 .35rem;
  color: #f2f7ff;
  font-size: 1.25rem;
  font-weight: 800
}

@media (max-width:1000px) {
  .ou-card-grid {
    grid-template-columns: 1fr
  }
}

.ou-top-card-section {
  margin-top: 2rem;
  margin-bottom: 2.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(80, 180, 255, .22);
  border-radius: 22px;
  background: rgba(10, 18, 36, .82)
}

.ou-muted {
  color: rgba(180, 198, 225, .88);
  margin: 0 0 1.25rem
}

.ou-card-grid {
  gap: 1rem
}

.ou-pick-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(103, 223, 255, .22);
  background: rgba(4, 10, 24, .72)
}

.ou-pick-rank {
  color: #67dfff;
  font-weight: 900;
  margin-bottom: .65rem
}

.ou-pick-matchup {
  color: #d8e4f5;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.35;
  min-height: 2.6rem
}

.ou-pick-main {
  margin-top: .9rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900
}

.ou-pick-metrics {
  margin-top: .9rem;
  display: grid;
  gap: .25rem;
  color: rgba(175, 195, 225, .9);
  font-size: .85rem
}

.full-ou-board {
  margin-top: 2rem
}

@media (max-width:1000px) {
  .ou-card-grid {
    grid-template-columns: 1fr
  }
}

.ou-pending-panel {
  margin-top: 2rem;
  margin-bottom: 2rem
}

.logic-cell {
  text-align: left
}

.ai-cell,
.edge-cell {
  text-align: center
}

.brand-link,
.topnav {
  display: flex;
  align-items: center
}

.brand-link {
  gap: 18px
}

.brand-link,
.brand-link:hover {
  color: inherit;
  text-decoration: none
}

.topnav {
  gap: 46px
}

.final-score-cell {
  line-height: 1.25;
  min-width: 260px
}

@media (max-width:700px) {
  .title-date {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: .62em
  }
}

.title-date {
  display: inline-block;
  font-size: .72em;
  letter-spacing: -.02em
}

.results-subtitle-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 26px
}

.results-date,
.results-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4
}

.results-subtitle {
  color: rgba(220, 230, 255, .82)
}

.results-date {
  color: #67e8f9
}

@media (max-width:900px) {
  .results-subtitle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }
}

.terminal-table tbody td {
  font-size: 1.18rem;
  font-weight: 500;
  color: rgba(235, 242, 255, .96);
  padding-top: 28px;
  padding-bottom: 28px;
  line-height: 1.35
}

.terminal-table tbody td:nth-child(2),
.terminal-table tbody td:nth-child(3) {
  font-weight: 500
}

.date-cell {
  font-weight: 450;
  color: rgba(220, 230, 255, .92)
}

.final-score-cell {
  color: rgba(235, 242, 255, .92)
}

.final-score-complete {
  color: #67e8f9 !important
}

.final-score-cell {
  justify-content: flex-start !important;
  white-space: nowrap;
  font-weight: 600
}

.final-score-col {
  min-width: 360px
}

.final-score-inner {
  white-space: nowrap;
  font-weight: 600
}

.final-score-complete .final-score-inner {
  color: #67e8ff;
  text-shadow: 0 0 14px rgba(103, 232, 255, .24)
}

.final-score-col {
  text-align: left !important;
  padding-left: 140px !important
}

.premium-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px
}

.premium-feature-card {
  position: relative;
  padding: 20px 20px 22px;
  min-height: 170px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 24, 48, .96), rgba(5, 10, 24, .98));
  border: 1px solid rgba(100, 220, 255, .22);
  box-shadow: 0 0 26px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .04)
}

.premium-feature-card .feature-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 900
}

.premium-feature-card .feature-icon {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 2rem
}

.premium-feature-card strong {
  display: block;
  color: #f4f7ff;
  font-size: 1.08rem;
  margin-bottom: 10px
}

.premium-feature-card p {
  margin: 0;
  color: rgba(222, 232, 255, .72);
  font-size: .92rem;
  line-height: 1.45
}

.blue {
  color: #2fe7ff
}

.green {
  color: #39ff8a
}

.purple {
  color: #bd68ff
}

.gold {
  color: #ffd84d
}

.orange {
  color: #ff9a42
}

.cyan {
  color: #46f4ff
}

@media (max-width:900px) {
  .premium-feature-row {
    grid-template-columns: 1fr
  }
}

.final-score-header,
.terminal-table .final-score-cell,
.terminal-table .final-score-header {
  text-align: left !important
}

.final-score-cell {
  padding-left: 40px !important
}

.final-score-inner {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  width: 100%;
  text-align: left !important
}

.final-score-complete {
  font-weight: 800;
  text-shadow: 0 0 12px rgba(80, 220, 255, .22)
}

.terminal-table td:nth-child(4),
.terminal-table th:nth-child(4) {
  text-align: left !important;
  padding-left: 0 !important
}

.terminal-table td:nth-child(4) .final-score-inner {
  text-align: left !important;
  justify-content: flex-start !important;
  margin-left: 0 !important
}

.premium-feature-wall {
  margin: 48px 0;
  padding: 42px;
  border-radius: 34px;
  background: radial-gradient(circle at top right, rgba(40, 210, 255, .14), transparent 32%), linear-gradient(135deg, #071327 0, #020814 100%);
  border: 1px solid rgba(94, 228, 255, .22);
  box-shadow: 0 0 60px rgba(40, 210, 255, .1), inset 0 1px 0 rgba(255, 255, 255, .04)
}

.premium-header {
  margin-bottom: 32px
}

.premium-kicker {
  color: #5fe1ff;
  margin-bottom: 14px
}

.premium-header h2 {
  margin: 0 0 18px;
  color: #f4f8ff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.02;
  max-width: 980px
}

.premium-header p {
  margin: 0;
  max-width: 980px;
  color: rgba(220, 230, 255, .76);
  font-size: 1.1rem;
  line-height: 1.7
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 34px
}

.premium-box {
  min-height: 215px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 28, 52, .95), rgba(4, 10, 24, .98));
  border: 1px solid rgba(255, 255, 255, .07);
  transition: all .18s ease
}

.premium-box:hover {
  transform: translateY(-4px)
}

.box-icon,
.box-value {
  font-size: 2rem;
  margin-bottom: 14px
}

.box-value {
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px
}

.box-text {
  color: rgba(220, 232, 255, .68);
  line-height: 1.55;
  font-size: .94rem
}

.premium-box.cyan {
  border-color: rgba(92, 234, 255, .4)
}

.premium-box.blue {
  border-color: rgba(90, 140, 255, .4)
}

.premium-box.purple {
  border-color: rgba(185, 120, 255, .4)
}

.premium-box.green {
  border-color: rgba(60, 255, 145, .34)
}

.premium-box.orange {
  border-color: rgba(255, 145, 70, .34)
}

.premium-box.gold {
  border-color: rgba(255, 220, 100, .34)
}

@media (max-width:1200px) {
  .premium-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr))
  }
}

@media (max-width:900px) {
  .premium-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr))
  }
}

@media (max-width:640px) {
  .premium-feature-wall {
    padding: 26px;
    border-radius: 26px
  }

  .premium-grid {
    grid-template-columns: 1fr
  }

  .premium-cta-button {
    width: 100%
  }
}

@media (max-width:900px) {
  .comparison-subtext {
    white-space: normal;
    font-size: 1.05rem
  }
}

.premium-cta-button {
  margin-top: 34px;
  gap: 14px;
  background: linear-gradient(135deg, #16d9ff 0, #2c8cff 55%, #8d54ff 100%);
  white-space: nowrap
}

.comparison-subtext {
  color: rgba(220, 232, 255, .82);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  margin-top: 10px
}

@media (max-width:900px) {
  .premium-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px
  }

  .premium-inline-text {
    font-size: 1.18rem;
    text-align: center
  }
}

@media (max-width:900px) {
  .premium-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px
  }

  .premium-inline-text {
    justify-content: center;
    text-align: center;
    font-size: 1.08rem
  }
}

.premium-cta-row {
  flex-wrap: nowrap
}

.premium-inline-text {
  display: flex;
  align-items: center;
  min-height: 108px;
  font-size: 1.48rem
}

@media (max-width:1100px) {
  .premium-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px
  }

  .premium-cta-button {
    min-width: 100%;
    min-height: 84px
  }

  .premium-inline-text {
    min-height: auto;
    justify-content: center;
    text-align: center;
    font-size: 1.08rem
  }
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  min-width: 560px;
  padding: 0 40px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 1.32rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1ad9ff 0, #398cff 52%, #8d5bff 100%);
  box-shadow: 0 0 38px rgba(70, 210, 255, .24)
}

.free-users-highlight {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(27, 217, 255, .24), rgba(76, 119, 255, .24));
  border: 1px solid rgba(103, 232, 255, .32);
  box-shadow: 0 0 18px rgba(70, 210, 255, .12)
}

.date-cell {
  white-space: nowrap !important
}

.status-pill {
  min-width: 118px
}

.status-best-bet {
  background: linear-gradient(135deg, rgba(0, 255, 170, .22), rgba(0, 190, 255, .18))
}

.status-lean {
  background: rgba(255, 193, 7, .14)
}

.status-watch {
  background: rgba(0, 162, 255, .12);
  border: 1px solid rgba(0, 162, 255, .22)
}

.status-pass {
  color: rgba(255, 255, 255, .62)
}

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(0, 195, 255, .14);
  border: 1px solid rgba(0, 195, 255, .22);
  color: #74d7ff;
  font-size: .68rem;
  font-weight: 800;
  cursor: help;
  transition: all .18s ease
}

.info-tip:hover {
  background: rgba(0, 195, 255, .24);
  transform: scale(1.08)
}

.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 145%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(5, 12, 24, .97);
  border: 1px solid rgba(0, 195, 255, .18);
  color: rgba(255, 255, 255, .92);
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45)
}

.info-tip:hover::after {
  opacity: 1
}

.bullpen-col,
.terminal-table td.text-center,
.terminal-table th.text-center {
  vertical-align: middle
}

.terminal-table td.text-center,
.terminal-table th.text-center {
  text-align: center
}

.bullpen-col {
  justify-content: center !important;
  align-items: center !important
}

.side-col,
td.bullpen-col,
th.bullpen-col {
  padding-left: 0 !important;
  padding-right: 0 !important
}

td.bullpen-col,
th.bullpen-col {
  text-align: center !important
}

.side-col {
  vertical-align: middle !important
}

.status-top-5 {
  background: rgba(0, 180, 255, .14);
  border: 1px solid rgba(0, 180, 255, .45);
  color: #63d5ff;
  box-shadow: inset 0 0 12px rgba(0, 180, 255, .08)
}

.premium-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-width: 360px;
  padding: 22px 42px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: none;
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
  transition: transform 180ms ease, box-shadow 180ms ease
}

.premium-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;
  width: 28%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: rotate(18deg);
  animation: cta-sweep 3.4s ease-in-out infinite
}

.premium-cta span {
  position: relative;
  z-index: 1
}

.time-cell,
.time-col {
  white-space: nowrap;
  width: 140px
}

.terminal-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #0a1a2f, #081524);
  border: 1px solid rgba(0, 200, 255, .15);
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #7dd3fc
}

.terminal-title-left {
  display: flex;
  gap: 6px
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  opacity: .6
}

.terminal-title-center {
  font-weight: 600;
  color: #67e8f9
}

.terminal-title-right {
  font-size: 11px;
  color: #22c55e;
  letter-spacing: 1.5px
}

.title-date {
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(103, 232, 249, .35);
  color: #dbeafe;
  font-weight: 700
}

.terminal-title-main {
  font-size: 28px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -.3px
}

.status-box {
  background: rgba(14, 165, 233, .18);
  color: #67e8f9;
  border-color: rgba(14, 165, 233, .55);
  text-decoration: none
}

.status-box:hover {
  background: rgba(14, 165, 233, .28)
}

.terminal-table th:hover {
  background: rgba(91, 213, 255, .08);
  color: #fff
}

.container,
.main-panel,
.page-wrap {
  max-width: 1400px;
  width: 95%
}

.content,
.page-content,
main {
  max-width: none !important;
  width: 96vw !important
}

.table-panel,
.terminal-layout,
.terminal-main {
  width: 96vw !important
}

.longshot-premium-panel {
  max-width: none !important;
  width: 96vw !important
}

.longshot-premium-panel,
.table-panel {
  margin-left: auto !important;
  margin-right: auto !important
}

.table-wrap {
  width: 100% !important
}

.sorted-col {
  background: rgba(56, 189, 248, .1);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, .35)
}

.default-ai-col {
  background: rgba(56, 189, 248, .08)
}

.sorted-col,
th.active,
th.sort-active,
th.sorted {
  background: 0 0 !important;
  box-shadow: none !important
}

.sorted-col {
  border-radius: 0 !important
}

.sorted-header {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(103, 232, 249, .8);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, .45);
  border-radius: 6px;
  background: rgba(56, 189, 248, .1)
}

.has-tip {
  position: relative;
  cursor: help
}

.has-tip .tip {
  display: none;
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  background: rgba(8, 18, 35, .97);
  border: 1px solid rgba(80, 180, 255, .35);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .7);
  z-index: 999;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease
}

.has-tip:hover .tip {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(4px)
}

th.active-sort::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 3px;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #0fc);
  box-shadow: 0 0 6px rgba(0, 229, 255, .6);
  border-radius: 3px
}

th.active,
th.sort-active,
th.sorted {
  border: 0 !important;
  outline: 0 !important;
  position: relative;
  color: #fff
}

th.active::after,
th.sort-active::after,
th.sorted::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 6px;
  height: 2px;
  background: #00e5ff;
  border-radius: 2px
}

.date-col {
  white-space: nowrap
}

.final-result {
  font-weight: 600;
  letter-spacing: .5px
}

.final-result.win {
  color: #00ff9c
}

.final-result.loss {
  color: #ff5c5c
}

.final-result.push {
  color: #ccc
}

.final-score {
  font-size: 12px;
  color: #9fb3c8;
  margin-top: 2px
}

.final-pending {
  color: #7f8c9a;
  font-size: 12px
}

.box-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, .3);
  color: #00e5ff;
  text-decoration: none;
  transition: all .2s ease
}

.box-link:hover {
  background: rgba(0, 229, 255, .1);
  border-color: #00e5ff
}

.terminal-table th {
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease, transform .12s ease
}

.terminal-table th.sorted-header {
  color: #fff;
  background: linear-gradient(135deg, rgba(91, 213, 255, .28), rgba(255, 255, 255, .1));
  border: 1px solid rgba(91, 213, 255, .75);
  box-shadow: 0 0 18px rgba(91, 213, 255, .3), inset 0 0 18px rgba(255, 255, 255, .08);
  border-radius: 8px;
  text-shadow: 0 0 8px rgba(255, 255, 255, .55)
}

.terminal-table th.sorted-header::after {
  color: #fff;
  opacity: .85
}

.metric-tip:hover::after {
  min-width: 220px;
  max-width: 280px;
  padding: 12px 16px;
  border-radius: 12px;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(18, 34, 58, .96);
  border: 1px solid rgba(80, 200, 255, .55);
  box-shadow: 0 0 18px rgba(80, 200, 255, .18), 0 10px 30px rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px)
}

.active-metric,
.metric-tip.active,
th.active .metric-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(120, 220, 255, .22)0, rgba(60, 120, 255, .18) 100%);
  border: 1px solid rgba(90, 220, 255, .55);
  color: #fff;
  box-shadow: 0 0 18px rgba(80, 200, 255, .18), 0 0 40px rgba(80, 140, 255, .12), inset 0 1px 1px rgba(255, 255, 255, .2), inset 0-8px 16px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
  transition: all .22s ease
}

.terminal-table th.sort-active .metric-tip:hover {
  transform: translateY(-1px)
}

.active-metric:hover,
.metric-tip.active:hover,
.terminal-table th.sorted .metric-tip:hover,
th.active .metric-tip:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(80, 220, 255, .28), 0 0 55px rgba(90, 140, 255, .18), inset 0 1px 1px rgba(255, 255, 255, .25), inset 0-10px 18px rgba(0, 0, 0, .24)
}

.metric-tip::after,
.terminal-table th::after {
  display: none !important
}

.terminal-table th.sort-active,
.terminal-table th.sorted {
  background: 0 0 !important
}

.terminal-table th.sort-active .metric-tip,
.terminal-table th.sorted .metric-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, rgba(95, 210, 255, .24), rgba(55, 95, 180, .2));
  border: 1px solid rgba(100, 225, 255, .65);
  box-shadow: 0 0 18px rgba(70, 210, 255, .22), 0 0 42px rgba(70, 120, 255, .16), inset 0 1px 1px rgba(255, 255, 255, .28), inset 0-8px 16px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  transition: all .22s ease
}

.terminal-table th.sort-active .metric-tip:hover {
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, rgba(25, 220, 255, .38), rgba(90, 120, 255, .34), rgba(175, 115, 255, .3));
  border-color: rgba(160, 240, 255, .95);
  box-shadow: 0 0 22px rgba(65, 220, 255, .42), 0 0 60px rgba(95, 120, 255, .28), inset 0 1px 1px rgba(255, 255, 255, .4), inset 0-10px 18px rgba(0, 0, 0, .24);
  transform: translateY(-2px) scale(1.03)
}

.terminal-table th.sort-selected .metric-tip {
  background: linear-gradient(135deg, #20dfff 0, #4f8dff 48%, #b478ff 100%);
  transform: translateY(-1px);
  color: #fff !important;
  background: linear-gradient(135deg, #1fe1ff 0, #4f8dff 50%, #b478ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 0 18px rgba(35, 220, 255, .55), 0 0 50px rgba(95, 120, 255, .3), 0 0 90px rgba(120, 100, 255, .16), inset 0 1px 2px rgba(255, 255, 255, .4), inset 0-8px 18px rgba(0, 0, 0, .22);
  transform: translateY(-1px) scale(1.03);
  z-index: 20;
  position: relative
}

.unlock-premium-btn {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #29d6ff 0, #3f8cff 38%, #6674ff 68%, #b07cff 100%);
  max-width: 540px;
  font-size: 1.65rem
}

.unlock-premium-btn::before {
  top: -20%;
  left: -35%;
  width: 30%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .1) 40%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, .1) 60%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(18deg);
  pointer-events: none
}

.unlock-premium-btn::after {
  inset: 1px;
  border-radius: 999px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  pointer-events: none
}

.unlock-premium-btn:hover {
  filter: brightness(1.05)
}

.unlock-premium-btn:active {
  transform: scale(.985);
  box-shadow: 0 0 18px rgba(41, 214, 255, .24), 0 0 40px rgba(95, 120, 255, .18), inset 0 3px 10px rgba(0, 0, 0, .28)
}

.premium-lock {
  font-size: 1.4rem;
  margin-right: 14px
}

.terminal-table tbody tr td {
  vertical-align: top !important
}

.hero-title,
.main-headline,
.terminal-hero-title {
  letter-spacing: .02em
}

.score-tbd {
  color: #9aa8c8
}

.score-text {
  letter-spacing: 0;
  color: #e8f0ff;
  text-transform: none
}

.final-cell,
.terminal-table td.day-col {
  text-align: center;
  vertical-align: middle
}

.hero-image,
.terminal-image {
  max-width: 75%;
  margin: 0 auto
}

.terminal-image {
  width: 75%;
  height: auto;
  display: block
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr)
}

.pick-card {
  background: linear-gradient(145deg, rgba(10, 20, 42, .96), rgba(4, 10, 28, .98));
  border: 1px solid rgba(90, 145, 210, .22)
}

@media (max-width:1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:760px) {
  .cards-grid {
    grid-template-columns: 1fr
  }

  .hero-image-wrap,
  .pick-card {
    aspect-ratio: auto;
    min-height: 360px
  }
}

@media (max-width:980px) {
  .cards-grid {
    grid-template-columns: 1fr
  }

  .hero-image-wrap,
  .pick-card {
    min-height: 360px
  }
}

.hero-image-wrap {
  background: rgba(8, 18, 40, .96);
  display: flex;
  align-items: center;
  justify-content: center
}

.score-link {
  cursor: pointer
}

.score-link:hover {
  text-shadow: 0 0 14px rgba(126, 231, 255, .65)
}

@media (max-width:900px) {
  .cards-grid {
    grid-template-columns: 1fr
  }
}

.hero-image-wrap,
.pick-card {
  max-height: none !important;
  box-sizing: border-box
}

.pick-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.no-image {
  height: 100%;
  display: grid;
  place-items: center;
  color: #9fb3d8
}

@media (max-width:900px) {
  .cards-grid {
    grid-template-columns: 1fr
  }
}

.day-col {
  text-align: center !important;
  width: 110px;
  white-space: nowrap;
  padding-left: 0 !important;
  padding-right: 0 !important
}

.matchup-cell {
  text-align: left !important
}

.home-cell,
.pick-cell {
  text-align: center !important
}

.ai-pick-col,
.bullpen-col,
.edge-col,
.metric-cell,
.nv-col,
.pitcher-col,
.side-col,
.vol-col {
  text-align: center !important;
  font-variant-numeric: tabular-nums
}

.box-cell {
  text-align: center !important
}

.final-score-text,
.score-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800
}

.final-score-text {
  min-width: 190px;
  padding: 14px 20px;
  background: rgba(15, 35, 55, .95);
  border: 1px solid rgba(90, 220, 255, .25);
  color: #e8f2ff;
  font-size: .92rem;
  letter-spacing: .04em;
  white-space: nowrap
}

.score-text {
  min-width: 240px;
  padding: 12px 18px;
  font-size: .9rem
}

.score-link {
  background: rgba(18, 55, 82, .9);
  border: 1px solid rgba(90, 220, 255, .3)
}

.plain-score-link:hover {
  color: #6ee7ff;
  text-decoration: underline
}

.score-stack {
  padding: 4px 0
}

.plain-score-link,
.plain-score-text {
  font-size: .92rem !important;
  word-break: normal !important;
  max-width: 220px !important;
  margin: 0 auto !important
}

.score-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%
}

.plain-score-link,
.plain-score-text {
  color: #e8eefc !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  text-decoration: none !important
}

.historical-caption {
  font-size: 1.42rem;
  line-height: 1.42;
  font-weight: 500;
  color: #c2d2ee;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 2.2rem;
  max-width: 1450px
}

.terminal-title {
  margin-bottom: .35rem
}

.live-board-caption {
  font-size: 1.42rem;
  line-height: 1.42;
  font-weight: 500;
  color: #c2d2ee;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 2.2rem;
  max-width: 1450px
}

.hero-image-wrap,
.pick-card {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  min-height: unset !important;
  height: auto !important;
  border-radius: 28px !important;
  overflow: hidden !important
}

.cards-grid>.pick-card,
.pick-card {
  padding: 28px !important
}

.cards-grid>.hero-image-wrap,
.hero-image-wrap {
  padding: 0 !important;
  border: 1px solid rgba(90, 145, 210, .22) !important;
  box-shadow: var(--shadow) !important
}

.hero-image-wrap {
  background: 0 0 !important
}

.cards-grid>.hero-image-wrap .hero-image,
.cards-grid>.hero-image-wrap img,
.hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important
}

.hero-image {
  object-position: center 66% !important;
  border-radius: 28px !important;
  background: #07111f !important
}

@media (max-width:900px) {
  .cards-grid {
    grid-template-columns: 1fr !important
  }
}

.cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important
}

.cards-grid>* {
  aspect-ratio: 1/1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 28px !important;
  overflow: hidden !important
}

.cards-grid>.hero-image-wrap {
  background: #07111f !important;
  display: block !important
}

.cards-grid>.hero-image-wrap .hero-image,
.cards-grid>.hero-image-wrap img {
  max-width: none !important;
  max-height: none !important;
  object-position: center center !important;
  border-radius: inherit !important
}

.top-bet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch
}

.top-bet-panel {
  min-height: 100%;
  height: auto
}

.top-bet-image-wrap {
  display: flex;
  height: auto;
  aspect-ratio: auto
}

.top-bet-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 28px
}

.top-five-feature-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 28px
}

.mini-pill {
  min-width: 104px
}

.mini-pill.muted {
  color: rgba(230, 238, 255, .55);
  background: rgba(255, 255, 255, .06)
}

.mini-pill.official {
  color: #4cc9ff;
  background: rgba(25, 94, 255, .22)
}

.mini-pill.open {
  color: #30f092;
  background: rgba(24, 183, 113, .2)
}

.pick-matchup {
  color: #eef5ff
}

.pick-title {
  font-size: 2.1rem;
  color: #fff
}

.pick-main-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px
}

.pick-main-metrics span {
  display: block;
  color: rgba(221, 232, 255, .62)
}

.metric-block span {
  color: rgba(221, 232, 255, .62);
  letter-spacing: .13em
}

.box-title,
.pick-game-time {
  display: block;
  color: rgba(221, 232, 255, .62)
}

.pick-main-metrics strong {
  color: #f3f7ff;
  line-height: 1
}

.pick-game-time strong {
  color: #5be2ff;
  font-weight: 900;
  text-decoration: none
}

.score-link {
  display: inline-block;
  margin-top: 6px;
  font-size: .98rem
}

.score-link:hover {
  color: #8df1ff;
  text-decoration: underline
}

.ai-breakdown-box {
  background: rgba(2, 10, 28, .38)
}

.ai-breakdown-grid {
  margin-top: 18px;
  grid-template-columns: repeat(6, 1fr)
}

.metric-block strong {
  margin: 8px 0;
  color: #eaf1ff;
  line-height: 1
}

.metric-bar {
  width: 100%;
  background: rgba(180, 205, 240, .2)
}

.metric-bar i {
  background: linear-gradient(90deg, #24d9ff, #b8dcff)
}

.metric-bar.good i {
  background: linear-gradient(90deg, #7dff89, #31d76b)
}

.ai-math-card,
.ai-reasoning-card {
  background: rgba(2, 10, 28, .44)
}

.ai-math-card h4,
.ai-reasoning-card h4 {
  color: #f0f6ff
}

.ai-reasoning-card p {
  color: rgba(235, 242, 255, .88)
}

.ai-math-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.ai-math-card li {
  padding: 6px 0;
  color: rgba(235, 242, 255, .9);
  font-size: .96rem
}

.ai-math-card li:last-child {
  border-bottom: none
}

.ai-math-card strong,
.ai-total-edge strong,
.positive {
  color: #74ff84
}

.ai-total-edge {
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 165, 220, .18);
  color: #eef5ff;
  font-size: 1.15rem;
  font-weight: 950
}

@media (max-width:1100px) {

  .ai-detail-grid,
  .pick-feature-row {
    grid-template-columns: 1fr
  }

  .ai-breakdown-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .pick-main-metrics {
    grid-template-columns: repeat(2, 1fr)
  }

  .pick-image-card img {
    height: auto
  }
}

@media (max-width:680px) {
  .ai-breakdown-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pick-chip-row {
    flex-wrap: wrap
  }

  .pick-title {
    font-size: 1.6rem
  }
}

.top-picks-grid {
  grid-template-columns: repeat(2, 1fr)
}

.pick-feature-card,
.pick-image-card {
  background: radial-gradient(circle at top left, rgba(36, 86, 255, .12), transparent 34%), rgba(5, 14, 36, .94)
}

.pick-image-card img {
  border-radius: 28px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.final-score-cell,
.result-cell,
.tier-cell {
  text-align: center !important;
  vertical-align: middle !important
}

.final-score-cell a,
.final-score-cell span,
.result-cell span,
.tier-cell span {
  margin-left: auto;
  margin-right: auto
}

.plain-score-link,
.plain-score-text {
  width: 100%;
  min-height: 72px
}

.plain-score-link,
.plain-score-text,
.result-cell .status-pill,
.tier-cell .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.home-team-cell {
  text-align: center !important;
  font-weight: 800
}

.pick-feature-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px
}

.pick-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: auto;
  background: rgba(2, 10, 28, .55);
  display: flex
}

@media (max-width:980px) {
  .pick-feature-row {
    grid-template-columns: 1fr
  }

  .pick-image-card {
    aspect-ratio: 16/9;
    min-height: unset;
    max-height: 420px
  }

  .pick-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }
}

.terminal-table .matchup-cell,
.terminal-table .pick-cell {
  text-align: center
}

.final-score-cell {
  display: block
}

.final-score-cell a,
.final-score-cell span {
  text-align: center;
  display: block
}

.terminal-table thead th {
  vertical-align: middle
}

.time-cell {
  text-align: center;
  vertical-align: top
}

.home-team-cell,
.result-cell,
.tier-cell {}

.terminal-table .pitcher-col,
.terminal-table thead th {
  text-align: center !important
}

.terminal-table .metric-tip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.terminal-table td.pitcher-col,
.terminal-table th.pitcher-col,
th.pitcher-col {
  text-align: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important
}

th.pitcher-col .metric-tip {
  width: 100%;
  margin: 0 auto !important
}

.terminal-table td,
.terminal-table th,
th.pitcher-col .metric-tip {
  text-align: center !important
}

.matchup-cell {
  min-width: 260px;
  max-width: 320px
}

.matchup-cell,
.pick-cell,
.score-cell {
  white-space: normal !important
}

.pick-cell {
  min-width: 180px;
  max-width: 240px
}

.score-cell {
  min-width: 190px
}

.time-cell {
  min-width: 130px
}

.ai-pick-col,
.edge-col,
.metric-cell,
.result-cell,
.tier-cell {
  min-width: 110px
}

.terminal-table .pitcher-col {
  min-width: 130px;
  width: 130px
}

.terminal-table td.pitcher-col,
.terminal-table th.pitcher-col {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 140px !important
}

.terminal-table th.pitcher-col .metric-tip {
  width: 140px !important;
  min-width: 140px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important
}

.terminal-table td.home-team-cell,
.terminal-table th.home-team-col {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  vertical-align: top
}

.home-team-cell {
  white-space: normal;
  line-height: 1.25;
  margin: 0 auto
}

th.home-team-col,
th.pitcher-col .metric-tip {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important
}

.result-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  border: 1px solid transparent
}

.win-pill {
  background: rgba(0, 255, 120, .15);
  color: #0f8;
  border-color: rgba(0, 255, 120, .35);
  box-shadow: 0 0 10px rgba(0, 255, 120, .15)
}

.loss-pill {
  background: rgba(255, 60, 60, .15);
  color: #ff5a5a;
  border-color: rgba(255, 60, 60, .35);
  box-shadow: 0 0 10px rgba(255, 60, 60, .15)
}

.unlock-premium-btn {
  overflow: hidden;
  isolation: isolate;
  width: 220px;
  padding: 24px 28px;
  border: 0;
  outline: 0;
  background: linear-gradient(135deg, #3a5dff 0, #7a3cff 22%, #1d9bff 48%, #00c2ff 72%, #533bff 100%);
  backdrop-filter: blur(12px);
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease
}

.unlock-premium-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 15% 30%, rgba(0, 255, 255, .28), transparent 32%), radial-gradient(circle at 82% 68%, rgba(255, 0, 140, .22), transparent 38%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), transparent 45%);
  mix-blend-mode: screen;
  animation: colorPulse 5s ease-in-out infinite;
  z-index: 1
}

.unlock-premium-btn::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -60%;
  width: 42%;
  height: 320%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(18deg);
  animation: shineSweep 4.8s linear infinite;
  z-index: 2
}

.unlock-premium-btn .premium-cta-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px
}

.unlock-premium-btn .premium-text {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .4px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35)
}

.unlock-premium-btn .premium-lock {
  font-size: 17px;
  opacity: .96
}

.unlock-premium-btn:hover {
  transform: translateY(-2px) scale(1.015)
}

.premium-info-box {
  position: relative;
  overflow: hidden;
  padding: 28px 34px;
  border-radius: 24px;
  border: 1px solid rgba(90, 170, 255, .16);
  background: linear-gradient(135deg, rgba(10, 22, 42, .88)0, rgba(14, 28, 54, .92) 45%, rgba(20, 18, 58, .9) 100%);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 40px rgba(0, 0, 0, .28);
  isolation: isolate
}

.premium-info-box::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 15% 30%, rgba(0, 180, 255, .14), transparent 32%), radial-gradient(circle at 80% 70%, rgba(120, 80, 255, .16), transparent 36%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .03), transparent 40%);
  animation: premiumAtmosphere 10s ease-in-out infinite;
  z-index: 1
}

.premium-info-box::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 40%;
  height: 320%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .06), transparent);
  transform: rotate(18deg);
  animation: premiumSweep 12s linear infinite;
  z-index: 2
}

.premium-info-box>* {
  position: relative;
  z-index: 5
}

.premium-info-box p {
  margin: 0;
  color: rgba(235, 242, 255, .92);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -.01em;
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25)
}

.score-cell {
  width: 220px;
  max-width: 220px
}

.score-cell-inner {
  width: 100%;
  display: flex;
  overflow: hidden
}

.score-text {
  display: block;
  max-width: 210px;
  overflow-wrap: break-word;
  word-break: normal;
  text-align: center
}

.score-cell {
  position: relative;
  text-align: center;
  vertical-align: middle
}

.score-cell .score-link,
.score-cell .score-tbd,
.score-cell .score-text,
.score-cell-inner {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
  white-space: normal;
  line-height: 1.25
}

.score-link {
  color: #dfe8ff
}

.box-pill,
.score-box-link {
  position: static !important;
  display: inline-flex
}

.bottom-results-table .matchup-cell,
.bottom-results-table .score-text,
.bottom-results-table td {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal
}

.bottom-results-table .score-text {
  display: block;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.28;
  text-align: center
}

.bottom-results-table td {
  vertical-align: middle;
  padding-top: 26px;
  padding-bottom: 26px
}

@media (max-width:768px) {

  .premium-grid,
  .premium-section,
  .terminal-section,
  .terminal-shell,
  .topbar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important
  }

  .premium-card {
    min-width: 0 !important
  }

  .table-panel,
  .table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important
  }

  .topbar {
    position: relative;
    left: auto;
    right: auto;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px
  }

  .topbar nav,
  .topbar-left,
  .topbar-nav {
    width: 100%;
    max-width: 100%
  }

  .topbar nav,
  .topbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px
  }

  .feature-grid,
  .premium-grid,
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 22px
  }

  .feature-card,
  .premium-card {
    width: 100% !important;
    max-width: 100% !important
  }

  .hero-title,
  .terminal-title,
  h1 {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.05;
    overflow-wrap: break-word
  }

  .premium-copy,
  .section-copy,
  p {
    max-width: 100%;
    overflow-wrap: break-word
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .terminal-table {
    min-width: 980px
  }
}

.topbar {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 22px 24px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(2, 10, 28, .98), rgba(3, 14, 38, .98));
  border-bottom: 1px solid rgba(80, 160, 255, .12);
  box-sizing: border-box;
  overflow: hidden
}

body {
  margin: 0;
  padding: 0
}

@media (max-width:768px) {
  .topbar {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: max(18px, env(safe-area-inset-top)) 22px 20px
  }

  .topbar-inner,
  .topbar-left {
    width: 100%;
    max-width: 100%
  }
}

.refresh-btn {
  background: linear-gradient(135deg, rgba(40, 120, 255, .22), rgba(0, 220, 255, .18));
  border: 1px solid rgba(120, 200, 255, .22);
  font-size: 35px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 180, 255, .18);
  transition: transform .18s ease, box-shadow .18s ease
}

.refresh-btn:hover {
  transform: rotate(90deg);
  box-shadow: 0 0 26px rgba(0, 200, 255, .28)
}

@media (max-width:768px) {

  .best-bets-grid,
  .bets-grid,
  .hero-bets-grid,
  .top-signals-grid {
    display: flex !important;
    flex-direction: column !important
  }

  .bet-card,
  .signal-card,
  .top-bet-card {
    flex: none !important
  }

  .best-bets-grid,
  .bets-grid,
  .cards-grid,
  .hero-bets-grid,
  .official-bets-grid,
  .signal-grid,
  .top-signals-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 22px !important
  }

  .best-bets-grid>*,
  .bets-grid>*,
  .cards-grid>*,
  .hero-bets-grid>*,
  .official-bets-grid>*,
  .signal-grid>*,
  .top-signals-grid>* {
    grid-column: 1/-1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important
  }

  .bet-card,
  .game-card,
  .official-bet-card,
  .signal-card,
  .terminal-card,
  .top-bet-card,
  .top-signal-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important
  }
}

.matchup-split {
  min-width: 260px;
  line-height: 1.15
}

.matchup-split .team-line {
  display: block;
  font-weight: 700;
  white-space: normal
}

.matchup-split .vs-line {
  display: block;
  font-size: 11px;
  opacity: .65;
  letter-spacing: 1px;
  margin: 2px 0
}

.score-live-link {
  transition: all .18s ease;
  color: #67d9ff;
  white-space: normal;
  line-height: 1.15;
  display: inline-block
}

.score-live-link:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(103, 217, 255, .9)
}

.score-live-link:visited {
  color: #67d9ff
}

.status-best {
  border: 1px solid rgba(0, 255, 140, .45);
  color: #7dffb2
}

.status-best,
.status-best-bet {
  background: linear-gradient(135deg, rgba(0, 255, 140, .22), rgba(0, 190, 110, .18));
  box-shadow: 0 0 18px rgba(0, 255, 140, .2), inset 0 0 12px rgba(0, 255, 140, .06);
  text-shadow: 0 0 8px rgba(125, 255, 178, .45)
}

.metric-tip::after {
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  background: rgba(2, 8, 25, .97)
}

.metric-tip::before {
  bottom: calc(100% + 4px);
  transition: opacity .18s ease
}

.metric-tip:hover::after,
.metric-tip:hover::before {
  opacity: 1;
  visibility: visible
}

.table-wrap {
  overflow: visible !important
}

.metric-tip {
  position: relative;
  cursor: help;
  z-index: 50
}

.metric-tip::after,
.metric-tip::before {
  position: absolute;
  left: 50%;
  opacity: 0;
  visibility: hidden
}

.metric-tip::after {
  content: attr(data-tip);
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(4px);
  width: 360px;
  max-width: 80vw;
  background: rgba(2, 8, 25, .98);
  color: #dff8ff;
  border: 1px solid rgba(103, 217, 255, .55);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  text-align: left;
  white-space: normal;
  box-shadow: 0 0 28px rgba(103, 217, 255, .25);
  pointer-events: none;
  z-index: 999999;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease
}

.metric-tip::before {
  content: "";
  top: calc(100% + 4px);
  transform: translateX(-50%);
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent rgba(103, 217, 255, .55);
  z-index: 1000000
}

.table-wrap {
  overflow-x: auto !important;
  overflow-y: visible !important
}

.terminal-table,
.terminal-table th,
.terminal-table thead {
  overflow: visible !important
}

.nav-refresh,
.refresh-btn,
.refresh-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40%;
  margin-top: 2px;
  transform: translateY(1px);
  background: #0b3765;
  color: #d7e8ff;
  text-decoration: none
}

.nav-refresh i,
.nav-refresh svg,
.refresh-btn i,
.refresh-btn svg,
.refresh-link i,
.refresh-link svg {
  width: 38px;
  height: 38px;
  font-size: 48px;
  line-height: 10
}

.premium-terminal-cta,
.premium-terminal-section,
.premium-terminal-wrap {
  text-align: center
}

.premium-description,
.premium-terminal-text {
  margin: 0 auto;
  max-width: 1100px
}

.premium-terminal-copy {
  padding-top: 6px
}

.premium-terminal-cta,
.premium-terminal-section,
.premium-terminal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.premium-description,
.premium-terminal-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.premium-terminal-copy {
  text-align: center;
  margin: 0 auto;
  max-width: 1200px
}

.premium-terminal-copy h2,
.premium-terminal-copy p {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.premium-cta,
.unlock-premium-btn {
  margin: 0 auto 4px;
  display: flex
}

.premium-cta {
  align-items: center;
  justify-content: center
}

.premium-inline-text {
  padding-top: 0
}

.premium-cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  text-align: center;
  width: 100%
}

.premium-cta-inner,
.premium-cta-row,
.unlock-premium-btn {
  align-items: center;
  justify-content: center
}

.unlock-premium-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: min(380px, 88vw);
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7b3cff, #2f8cff);
  font-weight: 900
}

.premium-cta-inner {
  display: flex;
  gap: 14px;
  white-space: nowrap
}

.premium-inline-text {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  color: rgba(235, 241, 255, .92);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center
}

@media (max-width:700px) {
  .premium-cta-row {
    margin-top: 28px;
    gap: 14px;
    padding: 0 18px
  }

  .unlock-premium-btn {
    width: 100%;
    max-width: 340px;
    height: 62px
  }

  .premium-inline-text {
    font-size: 1.05rem
  }
}

.ou-page,
.terminal-page,
body {
  overflow-x: hidden
}

.terminal-table td,
.terminal-table th {
  line-height: 1.25
}

.terminal-table td {
  font-size: .82rem
}

.historical-title,
.terminal-title,
.terminal-title-main {
  text-align: center;
  line-height: 1.15
}

.metric-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px
}

.ai-label,
.official-badge,
.result-pill,
.tier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1
}

.score-cell {
  line-height: 1.2
}

.score-link,
.score-text {
  white-space: normal;
  line-height: 1.2
}

@media (max-width:768px) {
  .table-wrap {
    overflow-x: auto
  }

  .terminal-table {
    min-width: 860px
  }

  .terminal-table th {
    padding: 8px 6px;
    font-size: .64rem
  }

  .terminal-table td {
    padding: 8px 6px;
    font-size: .74rem
  }

  .terminal-title {
    font-size: 1.15rem
  }

  .historical-title,
  .terminal-title-main {
    font-size: 1.25rem
  }

  .premium-cta-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px
  }

  .premium-inline-text {
    max-width: 92%;
    margin: 0 auto;
    line-height: 1.35
  }
}

@media (max-width:480px) {
  .terminal-table {
    min-width: 920px
  }

  .terminal-table td,
  .terminal-table th {
    padding: 7px 5px
  }

  .table-panel {
    padding-left: 6px;
    padding-right: 6px
  }
}

.text-nowrap {
  white-space: nowrap
}

.ai-detail-box {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(77, 184, 255, .18);
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(35, 177, 255, .09), transparent 35%), linear-gradient(180deg, #061426 0, #030b1a 100%);
  box-shadow: 0 0 28px rgba(0, 0, 0, .45)
}

.ai-breakdown-top {
  padding: 18px 22px 22px;
  border: 1px solid rgba(77, 184, 255, .15);
  border-radius: 24px;
  background: rgba(2, 11, 26, .72)
}

.ai-breakdown-label {
  margin-bottom: 22px;
  color: #4bb7ff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em
}

.ai-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px
}

.ai-metric-name {
  color: #9da9bc;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em
}

.ai-metric-value {
  margin-top: 10px;
  color: #edf4ff;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1
}

.risk-value {
  color: #79f28b
}

.ai-bar {
  margin-top: 14px;
  height: 9px;
  border-radius: 999px;
  background: rgba(145, 160, 185, .23);
  overflow: hidden
}

.ai-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #35d7ff, #67e8ff)
}

.ai-bar-green span {
  background: linear-gradient(90deg, #6dff86, #37d66d)
}

.ai-detail-grid {
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, .95fr);
  margin-top: 24px
}

.ai-math-panel,
.why-panel {
  border: 1px solid rgba(77, 184, 255, .17);
  border-radius: 24px;
  background: rgba(3, 12, 28, .86);
  padding: 26px
}

.ai-math-panel h3,
.edge-copy h4,
.why-panel h3 {
  margin: 0 0 20px;
  color: #f2f7ff;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: .04em
}

.edge-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  margin-bottom: 10px;
  border: 1px solid rgba(77, 184, 255, .16);
  border-radius: 18px;
  background: rgba(4, 18, 38, .75)
}

.edge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(58, 179, 255, .65);
  color: #3db9ff;
  font-size: 1.25rem;
  background: rgba(26, 161, 255, .1)
}

.edge-copy h4 {
  margin: 0 0 7px;
  color: #35b8ff;
  font-size: 1rem
}

.edge-copy h4 span {
  color: #72ff89
}

.edge-copy p {
  margin: 0;
  color: #d7deec;
  font-size: .92rem;
  line-height: 1.45
}

.risk-row .edge-copy h4 {
  color: #62ee7b
}

.overall-conclusion {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(111, 255, 136, .22);
  border-radius: 18px;
  background: rgba(8, 27, 34, .58)
}

.overall-conclusion h4 {
  margin: 0 0 8px;
  color: #72ff89;
  font-size: 1rem;
  font-weight: 950
}

.overall-conclusion p {
  margin: 0;
  color: #dde5f4;
  line-height: 1.5
}

.ai-recommendation {
  margin-top: 18px;
  text-align: center;
  color: #6fff88;
  font-weight: 950;
  letter-spacing: .08em
}

.ai-math-panel {
  align-self: stretch
}

.math-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(160, 180, 210, .11);
  color: #cfd7e6;
  font-size: 1rem
}

.math-line strong {
  color: #74ff89;
  font-weight: 950
}

.total-ai-edge {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 2px solid rgba(220, 230, 245, .35);
  text-align: center
}

.total-ai-edge span,
.total-ai-edge strong {
  display: block;
  color: #f4f7ff;
  font-size: 1.35rem;
  font-weight: 950
}

.total-ai-edge strong {
  margin-top: 6px;
  color: #74ff89;
  font-size: 3rem;
  line-height: 1
}

@media (max-width:900px) {
  .ai-metric-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ai-detail-grid {
    grid-template-columns: 1fr
  }

  .ai-metric-value {
    font-size: 2.35rem
  }
}

@media (max-width:520px) {
  .ai-detail-box {
    padding: 16px;
    border-radius: 22px
  }

  .ai-breakdown-top,
  .ai-math-panel,
  .why-panel {
    padding: 18px
  }

  .ai-metric-grid {
    gap: 18px
  }

  .edge-row {
    grid-template-columns: 1fr
  }
}

.million-longshot-panel {
  margin-top: 34px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(77, 184, 255, .18);
  background: radial-gradient(circle at top left, rgba(77, 184, 255, .09), transparent 34%), linear-gradient(180deg, #061426 0, #030a18 100%);
  box-shadow: 0 0 30px rgba(0, 0, 0, .42)
}

.million-longshot-header {
  margin-bottom: 24px
}

.million-longshot-header h2 {
  margin: 6px 0 8px;
  color: #f5f8ff;
  font-size: 1.8rem;
  font-weight: 950
}

.million-longshot-header p {
  max-width: 720px;
  margin: 0;
  color: #cbd6e8;
  line-height: 1.5
}

.million-longshot-card {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, .85fr);
  gap: 24px
}

.million-longshot-main,
.million-longshot-math {
  border: 1px solid rgba(77, 184, 255, .17);
  border-radius: 24px;
  background: rgba(3, 12, 28, .88);
  padding: 26px
}

.million-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px
}

.million-result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  background: rgba(130, 170, 210, .12);
  color: #dbe7ff
}

.million-result-pill.status-win {
  background: rgba(80, 255, 130, .16);
  color: #6fff88
}

.million-result-pill.status-loss {
  background: rgba(255, 80, 80, .16);
  color: #ff7474
}

.million-result-pill.status-push,
.million-result-pill.status-void {
  background: rgba(255, 215, 90, .16);
  color: #ffd766
}

.million-longshot-main h3 {
  margin: 0 0 10px;
  color: #f3f7ff;
  font-size: 1.45rem;
  font-weight: 950
}

.million-pick {
  color: #74ff89;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.1
}

.million-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0
}

.million-meta-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(77, 184, 255, .08);
  border: 1px solid rgba(77, 184, 255, .13);
  color: #cbd8ec;
  font-size: .85rem;
  font-weight: 800
}

.million-longshot-analysis {
  margin-top: 20px
}

.million-analysis-block {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(77, 184, 255, .15);
  background: rgba(5, 18, 36, .82)
}

.million-analysis-title {
  margin-bottom: 8px;
  color: #41bdff;
  font-weight: 950;
  letter-spacing: .07em
}

.million-analysis-block p {
  margin: 0;
  color: #d9e2f1;
  line-height: 1.55
}

.million-analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px
}

.million-analysis-mini {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(77, 184, 255, .13);
  background: rgba(6, 20, 40, .72)
}

.million-analysis-mini strong {
  display: block;
  margin-bottom: 7px;
  color: #f4f7ff;
  font-size: .92rem
}

.million-analysis-mini span {
  color: #74ff89;
  font-weight: 900
}

.million-box-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px
}

.million-score {
  color: #d9e5f6;
  font-weight: 900
}

.million-box-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(77, 184, 255, .35);
  color: #4fc3ff;
  font-size: .75rem;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: .08em
}

.million-box-link.disabled {
  opacity: .45
}

.million-longshot-math h3 {
  margin: 0 0 20px;
  color: #f4f7ff;
  font-size: 1.15rem;
  font-weight: 950
}

.million-math-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(160, 180, 210, .11);
  color: #cfd7e6;
  font-size: 1rem
}

.million-math-line strong {
  color: #74ff89;
  font-weight: 950
}

.million-total-score {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 2px solid rgba(220, 230, 245, .35);
  text-align: center
}

.million-total-score span,
.million-total-score strong {
  display: block;
  color: #f4f7ff;
  font-size: 1.25rem;
  font-weight: 950
}

.million-total-score strong {
  margin-top: 8px;
  color: #74ff89;
  font-size: 3.3rem;
  line-height: 1
}

.million-longshot-empty {
  padding: 24px;
  border-radius: 20px;
  background: rgba(5, 18, 36, .82);
  color: #d9e2f1;
  text-align: center
}

@media (max-width:900px) {

  .million-analysis-grid,
  .million-longshot-card {
    grid-template-columns: 1fr
  }
}

@media (max-width:520px) {
  .million-longshot-panel {
    padding: 18px;
    border-radius: 24px
  }

  .million-longshot-main,
  .million-longshot-math {
    padding: 18px
  }

  .million-pick {
    font-size: 1.55rem
  }

  .million-box-row,
  .million-status-row {
    flex-direction: column;
    align-items: flex-start
  }
}

.top-bet-score-row {
  margin-top: 16px
}

.top-bet-score-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(77, 184, 255, .35);
  background: rgba(77, 184, 255, .08);
  color: #55d9ff;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase
}

.top-bet-score-link:hover {
  background: rgba(77, 184, 255, .16);
  color: #fff
}

.top-bet-score-link.disabled {
  opacity: .55;
  pointer-events: none
}

.best-bet-boxscore-panel {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(77, 184, 255, .16);
  background: rgba(5, 18, 36, .72)
}

.best-bet-result {
  margin-bottom: 6px;
  color: #e8f1ff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em
}

.best-bet-result.status-win {
  color: #6fff88
}

.best-bet-result.status-loss {
  color: #ff7474
}

.best-bet-result.status-push,
.best-bet-result.status-void {
  color: #ffd766
}

.best-bet-box-link,
.best-bet-score-link {
  display: block;
  width: fit-content;
  color: #55d9ff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  line-height: 1.35
}

.best-bet-box-link:hover,
.best-bet-score-link:hover {
  color: #fff
}

.best-bet-box-link.disabled,
.best-bet-score-link.disabled {
  opacity: .55;
  pointer-events: none
}

.mlb-table-scroll,
.premium-table-scroll,
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px
}

.mlb-board-table,
.mlb-results-table,
.mlb-table-scroll table,
.premium-table-scroll table,
.table-scroll table {
  width: max-content;
  min-width: 1650px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0
}

.mlb-board-table td,
.mlb-board-table th,
.mlb-results-table td,
.mlb-results-table th {
  overflow-wrap: normal;
  word-break: normal;
  text-align: center;
  vertical-align: top;
  padding: 18px
}

.mlb-board-table th,
.mlb-results-table th {
  white-space: nowrap;
  font-size: .78rem;
  letter-spacing: .12em
}

.mlb-board-table td,
.mlb-results-table td {
  white-space: normal
}

.mlb-board-table td:nth-child(1),
.mlb-board-table th:nth-child(1),
.mlb-results-table td:nth-child(1),
.mlb-results-table th:nth-child(1) {
  min-width: 120px
}

.mlb-board-table td:nth-child(2),
.mlb-board-table th:nth-child(2),
.mlb-results-table td:nth-child(2),
.mlb-results-table th:nth-child(2) {
  min-width: 190px
}

.mlb-board-table td:nth-child(3),
.mlb-board-table th:nth-child(3),
.mlb-results-table td:nth-child(3),
.mlb-results-table th:nth-child(3) {
  min-width: 170px
}

.mlb-board-table td:nth-child(4),
.mlb-board-table th:nth-child(4),
.mlb-results-table td:nth-child(4),
.mlb-results-table th:nth-child(4) {
  min-width: 180px
}

.mlb-board-table td:nth-child(n+5),
.mlb-board-table th:nth-child(n+5),
.mlb-results-table td:nth-child(n+5),
.mlb-results-table th:nth-child(n+5) {
  min-width: 115px
}

.mlb-board-table td:nth-last-child(3),
.mlb-board-table th:nth-last-child(3),
.mlb-results-table td:nth-last-child(3),
.mlb-results-table th:nth-last-child(3) {
  min-width: 150px
}

.mlb-board-table td:nth-last-child(1),
.mlb-board-table td:nth-last-child(2),
.mlb-board-table th:nth-last-child(1),
.mlb-board-table th:nth-last-child(2),
.mlb-results-table td:nth-last-child(1),
.mlb-results-table td:nth-last-child(2),
.mlb-results-table th:nth-last-child(1),
.mlb-results-table th:nth-last-child(2) {
  min-width: 130px
}

.team-wrap {
  font-weight: 800
}

.home-cell,
.matchup-cell,
.pick-cell,
.team-wrap {
  line-height: 1.25
}

.home-cell {
  font-weight: 800
}

@media (max-width:900px) {

  .mlb-board-table,
  .mlb-results-table,
  .mlb-table-scroll table,
  .premium-table-scroll table,
  .table-scroll table {
    min-width: 1550px
  }

  .mlb-board-table td,
  .mlb-board-table th,
  .mlb-results-table td,
  .mlb-results-table th {
    padding: 16px 14px;
    font-size: .95rem
  }
}

.terminal-table {
  width: 1900px !important;
  min-width: 1900px !important;
  table-layout: fixed !important;
  border-spacing: 0
}

.terminal-table td,
.terminal-table th {
  word-break: normal !important;
  overflow-wrap: normal !important
}

.terminal-table th {
  vertical-align: top;
  white-space: nowrap !important;
  color: var(--hb-cyan);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(64, 224, 208, .26);
  background: rgba(64, 224, 208, .06);
  position: sticky;
  top: 0;
  z-index: 1
}

.terminal-table td {
  white-space: normal !important
}

.terminal-table td:nth-child(1),
.terminal-table th:nth-child(1) {
  width: 140px
}

.terminal-table td:nth-child(2),
.terminal-table th:nth-child(2) {
  width: 240px
}

.terminal-table td:nth-child(3),
.terminal-table th:nth-child(3) {
  width: 210px
}

.terminal-table td:nth-child(4),
.terminal-table th:nth-child(4) {
  width: 220px
}

.terminal-table td:nth-child(n+5),
.terminal-table th:nth-child(n+5) {
  width: 120px
}

.terminal-table td:nth-child(13),
.terminal-table th:nth-child(13) {
  width: 180px
}

.terminal-table td:nth-child(14),
.terminal-table th:nth-child(14) {
  width: 150px
}

.terminal-table td:nth-child(15),
.terminal-table th:nth-child(15) {
  width: 180px
}

.status-pass,
.status-pill.status-pass {
  background: rgba(148, 163, 184, .13) !important;
  color: #aebbd0 !important;
  border: 1px solid rgba(148, 163, 184, .24) !important
}

.status-lean,
.status-pill.status-lean {
  background: rgba(255, 209, 102, .15) !important;
  color: #ffd166 !important;
  border: 1px solid rgba(255, 209, 102, .3) !important
}

.status-best-bet,
.status-pill.status-best-bet {
  background: rgba(0, 255, 170, .15) !important;
  color: #0fa !important;
  border: 1px solid rgba(0, 255, 170, .34) !important
}

.table-wrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 0 12px
}

.table-wrap::-webkit-scrollbar {
  height: 10px
}

.table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 999px
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(120, 190, 255, .35);
  border-radius: 999px
}

.terminal-table.ou-board-table,
.terminal-table.ou-results-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: fixed !important
}

.terminal-table.ou-board-table {
  width: 1680px !important;
  min-width: 1680px !important
}

.terminal-table.ou-results-table {
  width: 1080px !important;
  min-width: 1080px !important
}

.terminal-table.ou-board-table td,
.terminal-table.ou-board-table th,
.terminal-table.ou-results-table td,
.terminal-table.ou-results-table th {
  padding: 15px 14px !important;
  line-height: 1.25 !important;
  vertical-align: middle !important;
  text-align: center !important;
  overflow-wrap: normal !important;
  word-break: normal !important
}

.terminal-table.ou-board-table th,
.terminal-table.ou-results-table th {
  white-space: nowrap !important;
  font-size: .74rem !important;
  letter-spacing: .1em !important
}

.terminal-table.ou-board-table td,
.terminal-table.ou-results-table td {
  white-space: normal !important
}

.terminal-table.ou-board-table .matchup-cell,
.terminal-table.ou-results-table .matchup-cell {
  text-align: left !important;
  font-weight: 850
}

.terminal-table.ou-board-table .team-line,
.terminal-table.ou-results-table .team-line {
  white-space: normal
}

.terminal-table.ou-board-table .vs-line,
.terminal-table.ou-results-table .vs-line {
  opacity: .55;
  font-size: .76rem;
  line-height: 1.1
}

.terminal-table.ou-board-table td:nth-child(1),
.terminal-table.ou-board-table th:nth-child(1) {
  width: 110px !important
}

.terminal-table.ou-board-table td:nth-child(2),
.terminal-table.ou-board-table th:nth-child(2) {
  width: 235px !important
}

.terminal-table.ou-board-table td:nth-child(10),
.terminal-table.ou-board-table td:nth-child(3),
.terminal-table.ou-board-table td:nth-child(4),
.terminal-table.ou-board-table td:nth-child(5),
.terminal-table.ou-board-table td:nth-child(6),
.terminal-table.ou-board-table td:nth-child(7),
.terminal-table.ou-board-table td:nth-child(8),
.terminal-table.ou-board-table td:nth-child(9),
.terminal-table.ou-board-table th:nth-child(10),
.terminal-table.ou-board-table th:nth-child(3),
.terminal-table.ou-board-table th:nth-child(4),
.terminal-table.ou-board-table th:nth-child(5),
.terminal-table.ou-board-table th:nth-child(6),
.terminal-table.ou-board-table th:nth-child(7),
.terminal-table.ou-board-table th:nth-child(8),
.terminal-table.ou-board-table th:nth-child(9) {
  width: 95px !important
}

.terminal-table.ou-board-table td:nth-child(11),
.terminal-table.ou-board-table th:nth-child(11) {
  width: 210px !important
}

.terminal-table.ou-board-table td:nth-child(12),
.terminal-table.ou-board-table th:nth-child(12) {
  width: 110px !important
}

.terminal-table.ou-board-table td:nth-child(13),
.terminal-table.ou-board-table th:nth-child(13) {
  width: 145px !important
}

.terminal-table.ou-results-table td:nth-child(1),
.terminal-table.ou-results-table th:nth-child(1) {
  width: 105px !important
}

.terminal-table.ou-results-table td:nth-child(2),
.terminal-table.ou-results-table th:nth-child(2) {
  width: 260px !important
}

.terminal-table.ou-results-table td:nth-child(3),
.terminal-table.ou-results-table th:nth-child(3) {
  width: 140px !important
}

.terminal-table.ou-results-table td:nth-child(4),
.terminal-table.ou-results-table td:nth-child(5),
.terminal-table.ou-results-table td:nth-child(6),
.terminal-table.ou-results-table th:nth-child(4),
.terminal-table.ou-results-table th:nth-child(5),
.terminal-table.ou-results-table th:nth-child(6) {
  width: 95px !important
}

.terminal-table.ou-results-table td:nth-child(7),
.terminal-table.ou-results-table th:nth-child(7) {
  width: 130px !important
}

.terminal-table.ou-results-table td:nth-child(8),
.terminal-table.ou-results-table th:nth-child(8) {
  width: 160px !important
}

@media (max-width:760px) {
  .table-panel {
    padding-left: 10px;
    padding-right: 10px
  }

  .terminal-table.ou-board-table {
    width: 1580px !important;
    min-width: 1580px !important
  }

  .terminal-table.ou-results-table {
    width: 1010px !important;
    min-width: 1010px !important
  }

  .terminal-table.ou-board-table td,
  .terminal-table.ou-board-table th,
  .terminal-table.ou-results-table td,
  .terminal-table.ou-results-table th {
    padding: 13px 12px !important;
    font-size: .88rem !important
  }
}

.ou-game-time {
  margin-top: 22px;
  margin-bottom: 28px
}

.ou-game-time-label {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(220, 230, 255, .65)
}

.ou-game-time-value {
  margin-top: 6px;
  font-size: 1.65rem;
  font-weight: 900;
  color: #55e6ff;
  text-shadow: 0 0 18px rgba(85, 230, 255, .35)
}

.home-field-display {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px
}

.ou-final-strip {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(96, 220, 255, .22);
  border-radius: 18px;
  background: rgba(4, 13, 30, .72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.ou-final-score,
.ou-final-winner {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ou-final-label {
  font-size: .72rem;
  color: rgba(220, 230, 255, .58)
}

.ou-final-score strong,
.ou-final-winner strong {
  color: #fff;
  font-size: 1.05rem
}

.ou-boxscore-link {
  color: #5ee7ff;
  border: 1px solid rgba(94, 231, 255, .32);
  border-radius: 999px;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap
}

.ou-boxscore-link:hover {
  background: rgba(94, 231, 255, .12)
}

.premium-cta:hover,
.terminal-btn:hover,
.unlock-premium-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(242, 210, 122, .34), inset 0 1px 0 rgba(255, 245, 190, .6);
  filter: saturate(1.08)
}

.premium-cta *,
.terminal-btn *,
.unlock-premium-btn * {
  color: #101014
}

.premium-cta,
.terminal-btn,
.unlock-premium-btn {
  background: linear-gradient(120deg, #6e4f17 0, #c89b3c 28%, #f2d27a 48%, #a87524 68%, #4e3510 100%);
  background-size: 220% 220%;
  color: #101014;
  border: 1px solid rgba(255, 218, 125, .55);
  box-shadow: 0 0 18px rgba(218, 166, 55, .22), inset 0 1px 0 rgba(255, 245, 190, .45);
  animation: burnishedGoldMove 16s ease-in-out infinite
}

@media (max-width:1200px) {
  .stats-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (max-width:700px) {
  .stats-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.longshot-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0
}

.longshot-meta-pills span {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 999px;
  color: #9eeaff;
  background: rgba(75, 210, 255, .14);
  border: 1px solid rgba(75, 210, 255, .35);
  box-shadow: inset 0 0 18px rgba(75, 210, 255, .08)
}

.longshot-card .status-pill {
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 999px
}

.ai-system-notice {
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(9, 22, 44, .92), rgba(14, 18, 32, .96));
  border: 1px solid rgba(92, 210, 255, .22);
  color: #b9c7dc;
  font-size: .92rem;
  line-height: 1.65;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28)
}

.ai-system-notice .notice-kicker {
  color: #65d8ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.ai-system-notice p {
  margin: 0 0 10px
}

.footer-disclaimer {
  padding: 24px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(9, 22, 44, .92), rgba(6, 14, 32, .96));
  border: 1px solid rgba(93, 210, 255, .2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28)
}

.footer-disclaimer-title {
  color: #63d7ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.footer-disclaimer-text {
  color: #b8c8dc;
  font-size: .92rem;
  line-height: 1.75
}

.longshot-time {
  background: rgba(255, 190, 60, .12);
  background: rgba(0, 255, 170, .1);
  border: 1px solid rgba(0, 255, 170, .35);
  color: #72ffbf;
  box-shadow: 0 0 14px rgba(0, 255, 170, .2)
}

.live-board-section {
  width: 100%
}

.live-board-feature-section {
  margin-top: 1.25rem
}

.live-board-grid {
  align-items: stretch
}

.live-trade-card {
  border-width: 2px !important;
  border-style: solid !important;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease
}

.live-trade-card:hover {
  transform: translateY(-2px)
}

.card-watch {
  border-color: #6b7280 !important
}

.card-ready {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 22px rgba(56, 189, 248, .28) !important
}

.card-locked {
  border-color: #22c55e !important;
  box-shadow: 0 0 22px rgba(34, 197, 94, .28) !important
}

.card-traded {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 22px rgba(139, 92, 246, .28) !important
}

.card-rejected {
  border-color: #ef4444 !important;
  opacity: .72
}

.result-win {
  border-color: #facc15 !important;
  box-shadow: 0 0 24px rgba(250, 204, 21, .3) !important
}

.result-loss {
  border-color: #7f1d1d !important;
  opacity: .68
}

.live-board-detail-grid,
.live-board-metrics,
.live-card-header,
.live-countdown-row {
  gap: .75rem
}

.live-countdown-row {
  align-items: center;
  margin: .85rem 0;
  padding: .75rem .85rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08)
}

.live-countdown-row span {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .72
}

.detail-label {
  opacity: .72
}

.live-countdown-row strong {
  font-size: 1.15rem
}

.live-board-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: .85rem 0
}

.live-board-detail-grid>div {
  padding: .65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .07)
}

.live-board-detail-grid strong {
  display: block;
  margin-top: .25rem
}

.live-lock-rule {
  margin-top: .85rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  opacity: .82
}

.countdown-pill {
  background: rgba(255, 255, 255, .08) !important;
  color: #e5e7eb !important
}

.status-watch {
  background: rgba(107, 114, 128, .18) !important;
  color: #d1d5db !important
}

.status-locked {
  background: rgba(34, 197, 94, .18) !important;
  color: #86efac !important
}

.status-traded {
  background: rgba(139, 92, 246, .18) !important;
  color: #c4b5fd !important
}

.status-rejected {
  background: rgba(239, 68, 68, .18) !important;
  color: #fca5a5 !important
}

.status-countdown-inside-lock-window {
  background: rgba(56, 189, 248, .18) !important;
  color: #7dd3fc !important
}

.status-countdown-watching {
  background: rgba(107, 114, 128, .16) !important;
  color: #d1d5db !important
}

.status-win {
  background: rgba(250, 204, 21, .18) !important
}

.status-loss {
  background: rgba(127, 29, 29, .28) !important
}

@media (max-width:760px) {
  .live-board-detail-grid {
    grid-template-columns: 1fr
  }
}

.live-trade-card {
  border: 1px solid rgba(148, 163, 184, .28);
  background: rgba(5, 12, 28, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28)
}

.card-rejected,
.result-loss {
  box-shadow: 0 0 28px rgba(239, 68, 68, .2)
}

.result-win {}

.live-board-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
  font-size: .82rem;
  color: #cbd5e1
}

.live-board-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 999px;
  background: rgba(15, 23, 42, .8)
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block
}

.legend-watch {
  background: #94a3b8
}

.legend-ready {
  background: #38bdf8
}

.legend-locked {
  background: #22c55e
}

.legend-traded {
  background: #a855f7
}

.legend-rejected {
  background: #ef4444
}

.legend-win {
  background: #facc15
}

.legend-loss {
  background: #991b1b
}

.live-card-header {
  display: flex;
  flex-wrap: wrap
}

.live-board-detail-grid div,
.live-board-signal-grid div,
.metric-block {
  background: rgba(15, 23, 42, .72)
}

.metric-value {
  color: #f8fafc
}

.live-board-detail-grid strong,
.live-board-signal-grid strong {
  font-size: 1.05rem;
  color: #f8fafc
}

.live-countdown-row {
  background: rgba(30, 41, 59, .75)
}

.live-lock-rule {
  font-size: .9rem
}

.live-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  padding: 16px 0 32px
}

.live-trade-card {
  padding: 30px;
  min-height: 0;
  border-radius: 24px
}

.live-card-header {
  gap: 10px;
  margin-bottom: 22px
}

.live-board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0
}

.live-board-detail-grid,
.live-board-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px
}

.live-board-signal-grid {
  grid-template-columns: repeat(5, 1fr)
}

.live-board-detail-grid div,
.live-board-signal-grid div,
.metric-block {
  padding: 13px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .78);
  border: 1px solid rgba(148, 163, 184, .16)
}

.detail-label,
.metric-label {
  display: block;
  color: #94a3b8;
  margin-bottom: 5px
}

.detail-label {
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase
}

.live-countdown-row {
  margin: 18px 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(30, 41, 59, .78);
  display: flex;
  justify-content: space-between
}

.card-watch {
  border-color: rgba(148, 163, 184, .45)
}

.card-locked,
.card-ready,
.card-rejected,
.card-traded,
.result-loss,
.result-win {}

.ai-note {
  margin-top: 22px;
  color: #bfdbfe;
  line-height: 1.45
}

.live-lock-rule {
  margin-top: 18px;
  color: #e2e8f0
}

.trade-lifecycle-legend {
  background: rgba(10, 18, 32, .72)
}

.legend-title {
  color: #9fb3d9
}

.trade-state-pill {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.state-watchlist {
  background: rgba(65, 145, 255, .18);
  color: #8fc4ff;
  border: 1px solid rgba(65, 145, 255, .45)
}

.state-monitoring {
  background: rgba(255, 216, 77, .18);
  border: 1px solid rgba(255, 216, 77, .45)
}

.state-locking-soon {
  background: rgba(255, 145, 55, .2);
  border: 1px solid rgba(255, 145, 55, .5)
}

.state-locked-ready {
  background: rgba(255, 75, 75, .2);
  border: 1px solid rgba(255, 75, 75, .55)
}

.state-locked {
  background: rgba(181, 97, 255, .22);
  border: 1px solid rgba(181, 97, 255, .55)
}

.state-rejected {
  background: rgba(120, 130, 145, .22);
  border: 1px solid rgba(120, 130, 145, .45)
}

.pick-lock-clock strong {
  color: #67e8f9 !important;
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(103, 232, 249, .35)
}

.status-pill.status-win,
.status-win {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border: 1px solid rgba(74, 222, 128, .75)
}

.longshot-result-pill.status-win {
  color: #ecfdf5;
  box-shadow: 0 0 18px rgba(34, 197, 94, .35)
}

.longshot-result-pill.status-win,
.mini-pill.status-win {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border: 1px solid rgba(74, 222, 128, .75)
}

.mini-pill.status-win,
.result-pill.status-win,
.status-pill.status-win,
.status-win {
  background: #16a34a !important;
  border: 1px solid #22c55e !important;
  background-image: none !important;
  font-weight: 700
}

.mini-pill.status-win,
.result-pill.status-win,
.status-pill.status-win {
  color: #fff !important;
  box-shadow: 0 0 12px rgba(34, 197, 94, .35), inset 0 1px 0 rgba(255, 255, 255, .15)
}

.pick-lock-clock {
  margin: 22px 0 28px;
  color: #9fb4d6
}

.pick-lock-clock>div {
  background: rgba(8, 18, 38, .78);
  text-align: center
}

@media (max-width:700px) {
  .pick-lock-clock {
    grid-template-columns: 1fr
  }

  .pick-lock-clock strong {
    font-size: 1.25rem
  }
}

.metric-block span,
.metric-block strong {
  display: block;
  text-align: left
}

.metric-block strong {
  width: 100%;
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 8px
}

.status-win {
  background: #16c85f
}

.status-loss {
  background: #ff5570
}

.status-push {
  background: #f0c14b
}

.status-longshot {
  background: rgba(255, 180, 0, .15);
  border: 1px solid rgba(255, 180, 0, .45);
  color: #ffd36b
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%
}

.footer-col-left {
  text-align: left
}

.footer-col-center {
  text-align: center
}

.footer-col-right {
  text-align: right
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px
}

.footer-col {
  flex: 1
}

.footer-col:nth-child(1) {
  text-align: left
}

.footer-col:nth-child(2) {
  text-align: center
}

.footer-col:nth-child(3) {
  text-align: right
}

.ai-system-notice {
  margin: 40px auto 0
}

.top-picks-grid>.pick-feature-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important
}

.top-bet-box-score-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid #55f7ff;
  border-radius: 999px;
  box-sizing: border-box;
  color: #55f7ff;
  font-size: .6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-bet-box-score-link:hover,
.top-bet-box-score-link:focus-visible {
  color: #fff;
  background: rgba(85, 247, 255, .12);
  text-decoration: none;
}

.release-audit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 10px 0;
  color: #b8c9d9;
  font-size: .68rem;
  letter-spacing: .04em;
}

.release-audit-strip b { color: #55f7ff; }

.release-reason {
  padding: 8px 10px;
  border: 1px solid rgba(255, 184, 77, .5);
  border-radius: 6px;
  color: #ffd28a;
  font-size: .72rem;
}

.release-row-meta,
.release-row-missing {
  display: block;
  margin-top: 3px;
  color: #91a8bb;
  font-size: .62rem;
}

.release-row-missing { color: #ffbd67; }

@media (max-width:1100px) {
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media (max-width:760px) {
  .top-picks-grid {
    grid-template-columns: 1fr !important
  }
}

.metric-tile:nth-child(1) .metric-label {
  color: #55f7ff !important;
  text-shadow: 0 0 14px rgba(85, 247, 255, .45)
}

.metric-tile:nth-child(2) .metric-label {
  color: #86ff9b !important;
  text-shadow: 0 0 14px rgba(134, 255, 155, .45)
}

.metric-tile:nth-child(3) .metric-label {
  color: #ffd166 !important;
  text-shadow: 0 0 14px rgba(255, 209, 102, .45)
}

.metric-tile:nth-child(4) .metric-label {
  color: #ff8bd1 !important;
  text-shadow: 0 0 14px rgba(255, 139, 209, .45)
}

.metric-tile:nth-child(5) .metric-label {
  color: #a78bfa !important;
  text-shadow: 0 0 14px rgba(167, 139, 250, .45)
}

.metric-tile:nth-child(6) .metric-label {
  color: #7dd3fc !important;
  text-shadow: 0 0 14px rgba(125, 211, 252, .45)
}

.longshot-time-bar {
  display: flex;
  margin: 18px 0;
  flex-wrap: wrap
}

.time-tile {
  border-radius: 12px;
  background: rgba(0, 180, 255, .08);
  border: 1px solid rgba(0, 180, 255, .25)
}

.time-label {
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #7dcfff;
  margin-bottom: 4px
}

.time-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff
}

.pick-feature-card * {
  box-sizing: border-box !important
}

.pick-feature-card .matchup-title,
.pick-feature-card .pick-title,
.pick-feature-card h2,
.pick-feature-card h3 {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important
}

.metric-row,
.ou-metrics-row,
.pick-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.metric-tile {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.metric-label,
.metric-value {
  white-space: nowrap !important
}

.longshot-time-bar,
.ou-time-bar,
.time-bar {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.time-tile {
  min-width: 0 !important;
  width: 100% !important;
  padding: 12px 10px !important;
  overflow: hidden !important
}

.time-label,
.time-value {
  white-space: nowrap !important
}

.time-label {
  font-size: 10px !important;
  line-height: 1.1 !important
}

.time-value {
  font-size: clamp(16px, 1.5vw, 22px) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.ai-breakdown-grid,
.ou-ai-breakdown,
.ou-ai-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.ai-breakdown-card,
.ou-ai-card {
  min-width: 0 !important;
  width: 100% !important
}

.metric-tile .metric-label,
.ou-ai-card-label,
.ou-final-label {
  letter-spacing: .12em !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important
}

@media (max-width:1250px) {
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media (max-width:820px) {
  .top-picks-grid {
    grid-template-columns: 1fr !important
  }

  .metric-row,
  .ou-metrics-row,
  .pick-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .longshot-time-bar,
  .ou-time-bar,
  .time-bar {
    grid-template-columns: 1fr !important
  }

  .ai-breakdown-grid,
  .ou-ai-breakdown,
  .ou-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

.top-picks-grid>.pick-feature-card {
  position: relative !important
}

.pick-feature-card>* {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important
}

.pick-feature-card .metric-row,
.pick-feature-card .ou-metrics-row,
.pick-feature-card .pick-metrics {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important
}

.pick-feature-card .metric-tile {
  min-width: 0 !important;
  overflow: hidden !important
}

.pick-feature-card .metric-label,
.pick-feature-card .metric-value {
  white-space: normal !important;
  overflow-wrap: anywhere !important
}

.pick-feature-card .longshot-time-bar,
.pick-feature-card .ou-time-bar,
.pick-feature-card .time-bar {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important
}

.pick-feature-card .time-tile {
  width: 100% !important;
  min-width: 0 !important
}

.pick-feature-card .time-label,
.pick-feature-card .time-value {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-align: left !important
}

.pick-feature-card .ai-breakdown-grid,
.pick-feature-card .ou-ai-breakdown,
.pick-feature-card .ou-ai-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  overflow: hidden !important
}

.pick-feature-card .ai-breakdown-card,
.pick-feature-card .ou-ai-card {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.pick-feature-card .ou-math,
.pick-feature-card .ou-math-card,
.pick-feature-card .why-math-card,
.pick-feature-card .why-ou-math {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.pick-feature-card .ou-math *,
.pick-feature-card .ou-math-card *,
.pick-feature-card .why-math-card *,
.pick-feature-card .why-ou-math * {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important
}

.pick-feature-card {
  padding: 28px !important
}

@media (max-width:1250px) {
  .top-picks-grid {
    grid-template-columns: 1fr !important
  }
}

.top-picks-grid {
  align-items: stretch !important
}

.top-picks-grid>.pick-feature-card {
  overflow: hidden !important;
  box-sizing: border-box !important
}

.top-picks-grid>.pick-feature-card * {
  box-sizing: border-box !important
}

.top-picks-grid>.pick-feature-card .matchup-title,
.top-picks-grid>.pick-feature-card .pick-title,
.top-picks-grid>.pick-feature-card h2,
.top-picks-grid>.pick-feature-card h3 {
  max-width: 100% !important;
  overflow-wrap: anywhere !important
}

.top-picks-grid>.pick-feature-card .metric-row,
.top-picks-grid>.pick-feature-card .ou-metrics-row,
.top-picks-grid>.pick-feature-card .pick-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .metric-tile,
.top-picks-grid>.pick-feature-card .ou-metric {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .metric-label,
.top-picks-grid>.pick-feature-card .ou-metric-label {
  display: block !important;
  font-size: 10px !important;
  letter-spacing: .1em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.top-picks-grid>.pick-feature-card .metric-value,
.top-picks-grid>.pick-feature-card .ou-metric-value {
  display: block !important;
  font-size: clamp(18px, 1.7vw, 28px) !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.top-picks-grid>.pick-feature-card .longshot-time-bar,
.top-picks-grid>.pick-feature-card .ou-time-bar,
.top-picks-grid>.pick-feature-card .ou-time-grid,
.top-picks-grid>.pick-feature-card .time-bar {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .ou-time-tile,
.top-picks-grid>.pick-feature-card .time-tile {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 12px 8px !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .ou-time-label,
.top-picks-grid>.pick-feature-card .time-label {
  display: block !important;
  font-size: 9px !important;
  line-height: 1.1 !important;
  letter-spacing: .08em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.top-picks-grid>.pick-feature-card .ou-time-value,
.top-picks-grid>.pick-feature-card .time-value {
  display: block !important;
  margin-top: 5px !important;
  font-size: clamp(14px, 1.25vw, 20px) !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.top-picks-grid>.pick-feature-card .ai-breakdown-grid,
.top-picks-grid>.pick-feature-card .ou-ai-breakdown,
.top-picks-grid>.pick-feature-card .ou-ai-grid,
.top-picks-grid>.pick-feature-card .ou-breakdown-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .ai-breakdown-card,
.top-picks-grid>.pick-feature-card .ou-ai-card,
.top-picks-grid>.pick-feature-card .ou-breakdown-tile {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .ou-ai-card-label,
.top-picks-grid>.pick-feature-card .ou-breakdown-label {
  font-size: 10px !important;
  letter-spacing: .08em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important
}

.top-picks-grid>.pick-feature-card .ou-math,
.top-picks-grid>.pick-feature-card .ou-math-box,
.top-picks-grid>.pick-feature-card .ou-math-card,
.top-picks-grid>.pick-feature-card .why-math-card,
.top-picks-grid>.pick-feature-card .why-ou-math {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important
}

.top-picks-grid>.pick-feature-card .ou-math *,
.top-picks-grid>.pick-feature-card .ou-math-box *,
.top-picks-grid>.pick-feature-card .ou-math-card *,
.top-picks-grid>.pick-feature-card .why-math-card *,
.top-picks-grid>.pick-feature-card .why-ou-math * {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-wrap: anywhere !important
}

@media (max-width:1250px) {
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media (max-width:820px) {

  .top-picks-grid,
  .top-picks-grid>.pick-feature-card .ai-breakdown-grid,
  .top-picks-grid>.pick-feature-card .longshot-time-bar,
  .top-picks-grid>.pick-feature-card .metric-row,
  .top-picks-grid>.pick-feature-card .ou-ai-breakdown,
  .top-picks-grid>.pick-feature-card .ou-ai-grid,
  .top-picks-grid>.pick-feature-card .ou-breakdown-grid,
  .top-picks-grid>.pick-feature-card .ou-metrics-row,
  .top-picks-grid>.pick-feature-card .ou-time-bar,
  .top-picks-grid>.pick-feature-card .ou-time-grid,
  .top-picks-grid>.pick-feature-card .pick-metrics,
  .top-picks-grid>.pick-feature-card .time-bar {
    grid-template-columns: 1fr !important
  }
}

.ou-page * {
  box-sizing: border-box
}

.ou-official-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 100%;
  align-items: stretch
}

.ou-feature-card {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(69, 210, 255, .1), transparent 35%), linear-gradient(145deg, rgba(8, 18, 42, .98), rgba(4, 10, 25, .98));
  border: 1px solid rgba(75, 160, 255, .22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35)
}

.ou-feature-card,
.ou-feature-card>* {
  min-width: 0;
  max-width: 100%
}

.ou-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.ou-rank-pill {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(24, 96, 180, .4);
  border: 1px solid rgba(80, 180, 255, .35);
  color: #5fe7ff;
  white-space: nowrap
}

.ou-result-box {
  border-radius: 18px;
  border: 1px solid rgba(95, 231, 255, .18);
  background: rgba(0, 8, 25, .44);
  padding: 18px;
  margin-bottom: 18px;
  overflow: hidden
}

.ou-result-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px
}

.ou-result-label {
  display: inline-block;
  margin-right: 5px;
  color: rgba(225, 232, 255, .62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase
}

.ou-result-value {
  color: #f8fbff;
  font-size: 18px;
  font-weight: 900
}

.ou-box-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #70eaff;
  border: 1px solid rgba(112, 234, 255, .35);
  text-decoration: none;
  font-weight: 900
}

.ou-matchup,
.ou-pick {
  margin: 0 0 6px;
  color: #f5f7ff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 950;
  overflow-wrap: anywhere
}

.ou-pick {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1
}

.ou-metrics-row {
  margin-bottom: 20px
}

.ou-metric {
  min-width: 0;
  overflow: hidden
}

.ou-metric-label {
  display: block;
  color: rgba(225, 232, 255, .58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap
}

.ou-metric-value {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap
}

.ou-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px
}

.ou-time-tile {
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  padding: 12px 10px;
  background: rgba(0, 180, 255, .07);
  border: 1px solid rgba(0, 180, 255, .22)
}

.ou-time-label,
.ou-time-value {
  display: block;
  line-height: 1.1;
  white-space: nowrap
}

.ou-time-label {
  color: rgba(225, 232, 255, .7);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase
}

.ou-time-value {
  margin-top: 5px;
  color: #64eaff;
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis
}

.ou-breakdown-box,
.ou-math-box {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(95, 231, 255, .12);
  background: rgba(0, 8, 25, .34);
  padding: 18px;
  margin-bottom: 18px
}

.ou-section-mini-title {
  color: rgba(225, 232, 255, .62);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.ou-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px
}

.ou-breakdown-tile {
  min-width: 0;
  overflow: hidden;
  border-radius: 15px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08)
}

.ou-breakdown-label {
  color: rgba(225, 232, 255, .62);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ou-breakdown-value {
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  margin: 8px 0
}

.ou-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(130, 160, 210, .22);
  overflow: hidden
}

.ou-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: #6eeaff
}

.ou-math-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.ou-math-label {
  min-width: 0;
  color: rgba(238, 244, 255, .82);
  overflow-wrap: anywhere
}

.ou-math-value {
  color: #7cff9a;
  font-weight: 950;
  white-space: nowrap
}

.ou-note {
  color: rgba(236, 242, 255, .76);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere
}

@media (max-width:1250px) {
  .ou-official-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:820px) {

  .ou-breakdown-grid,
  .ou-metrics-row,
  .ou-official-grid,
  .ou-time-grid {
    grid-template-columns: 1fr
  }
}

.official-ou-times-single {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  margin: 18px 0 24px !important
}

.official-ou-times-single .official-ou-time {
  width: 100% !important;
  max-width: 220px !important
}

.ai-system-notice,
.footer-grid,
.footer-panel,
.performance-caption,
.performance-header,
.site-notice,
.stats-grid-6 {
  width: min(100%, 1480px) !important
}

.stats-grid-6 {
  align-items: stretch !important
}

.footer-grid,
.footer-panel {
  margin-top: 34px !important
}

.footer-grid>*,
.footer-panel>* {
  min-width: 0 !important
}

.site-notice>* {
  max-width: 100% !important
}

.ai-system-notice>*,
.site-notice>* {
  min-width: 0 !important
}

@media (max-width:1100px) {
  .stats-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
  }
}

@media (max-width:700px) {
  .stats-grid-6 {
    grid-template-columns: 1fr !important
  }
}

.ai-system-notice,
.site-notice {
  width: 100% !important;
  max-width: none !important;
  margin-left: 48px !important;
  margin-right: 48px !important;
  display: block !important;
  margin-top: 32px !important
}

.footer,
.footer-grid,
.footer-panel,
.site-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 48px !important;
  margin-right: 48px !important
}

.site-notice>* {
  margin-left: 0 !important;
  margin-right: 0 !important
}

.ai-system-notice,
.footer-grid,
.footer-panel,
.site-footer,
.stats-grid-6 {
  width: 94vw !important;
  max-width: 94vw !important;
  margin-left: 3vw !important;
  margin-right: 3vw !important
}

.ai-system-notice,
.footer-grid,
.footer-panel,
.site-footer {
  transform: none !important;
  left: auto !important;
  right: auto !important
}

.ai-system-notice>*,
.footer-grid>*,
.footer-panel>*,
.site-footer>* {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important
}

.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important
}

body .footer,
body .performance-caption,
body .performance-header,
body .stats-grid-6,
body [class*=footer],
body [class*=notice],
body [class*=system],
body footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 32px !important;
  margin-right: 32px !important
}

body .footer,
body [class*=footer],
body [class*=notice],
body [class*=system],
body footer {
  left: auto !important;
  right: auto !important;
  transform: none !important
}

.footer-disclaimer,
.footer-shell,
.performance-caption,
.performance-header,
.site-footer-premium,
.stats-grid-6 {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 32px !important;
  margin-right: 32px !important;
  box-sizing: border-box !important
}

.stats-grid-6 {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important
}

.site-footer-premium {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.site-footer-premium .footer-shell {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: start !important
}

.footer-disclaimer {
  margin-top: 34px !important
}

.footer-disclaimer-text {
  max-width: none !important
}

.footer-shell .footer-shell,
.site-footer-premium .footer-shell .footer-shell {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important
}

:root {
  --hb-bg: #061018;
  --hb-panel: rgba(9, 22, 32, 0.92);
  --hb-panel-2: rgba(12, 30, 43, 0.96);
  --hb-line: rgba(64, 224, 208, 0.28);
  --hb-cyan: #40e0d0;
  --hb-cyan-soft: rgba(64, 224, 208, 0.14);
  --hb-green: #00d084;
  --hb-red: #ff4d6d;
  --hb-gold: #ffd166;
  --hb-orange: #ff9f1c;
  --hb-purple: #b388ff;
  --hb-blue: #4dabf7;
  --hb-text: #effcff;
  --hb-muted: #94aeb8
}

.daily-notes-panel,
.full-width-section,
.hero,
.longshot-premium-panel,
.stats-grid,
.table-panel,
.terminal-layout {
  width: min(1480px, calc(100% - 32px))
}

.full-width-section {
  margin-left: auto;
  margin-right: auto
}

.hero {
  padding: 34px 0 18px
}

.eyebrow,
.longshot-kicker,
.premium-kicker,
.stat-card .label {
  color: var(--hb-cyan);
  font-size: .78rem;
  text-transform: uppercase
}

.longshot-kicker,
.premium-kicker,
.stat-card .label {
  letter-spacing: .18em;
  font-weight: 800
}

.display-4 {
  color: var(--hb-text);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .95;
  margin: 10px 0 14px;
  letter-spacing: -.06em
}

.hero-text {
  color: var(--hb-muted);
  font-size: 1.08rem;
  line-height: 1.7
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 26px
}

.stat-card {
  border: 1px solid var(--hb-line);
  background: linear-gradient(180deg, rgba(64, 224, 208, .12), rgba(7, 18, 28, .92));
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28)
}

.stat-card .label {
  color: var(--hb-muted);
  font-size: .72rem;
  letter-spacing: .14em
}

.stat-card .value {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 900;
  margin-top: 6px
}

.value-small {
  font-size: clamp(1.05rem, 2vw, 1.45rem) !important
}

.terminal-layout-single {
  padding: 22px
}

.daily-note-card,
.longshot-premium-panel,
.table-panel,
.terminal-layout-single {
  border: 1px solid var(--hb-line);
  background: var(--hb-panel);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35)
}

.longshot-premium-panel,
.table-panel {
  padding: 22px
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px
}

.section-title-row h2 {
  color: var(--hb-text);
  line-height: 1.5;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0
}

.brand-accent {
  color: var(--hb-cyan)
}

.official-title-row h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  margin-bottom: 4px
}

.section-caption {
  color: var(--hb-muted);
  margin: 0;
  line-height: 1.6
}

.trade-lifecycle-legend {
  border: 1px solid rgba(64, 224, 208, .2);
  background: rgba(64, 224, 208, .07);
  border-radius: 20px;
  padding: 14px;
  margin: 18px 0 22px
}

.legend-title {
  color: var(--hb-cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  margin-bottom: 10px
}

.legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.legend-pill,
.mini-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .68rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--hb-text);
  background: rgba(255, 255, 255, .07);
  white-space: nowrap
}

.status-win,
.status-won {
  background: var(--hb-green) !important;
  border-color: var(--hb-green) !important;
  color: #03140d !important;
  box-shadow: 0 0 24px rgba(0, 208, 132, .38)
}

.status-loss,
.status-lost {
  background: var(--hb-red) !important;
  border-color: var(--hb-red) !important;
  color: #fff !important
}

.status-push {
  background: var(--hb-gold) !important;
  border-color: var(--hb-gold) !important;
  color: #181000 !important
}

.status-best-bet {
  background: rgba(0, 208, 132, .16);
  border-color: rgba(0, 208, 132, .55)
}

.status-lean {
  background: rgba(255, 209, 102, .16);
  border-color: rgba(255, 209, 102, .55)
}

.status-pass {
  background: rgba(148, 174, 184, .12);
  border-color: rgba(148, 174, 184, .34)
}

.status-watch,
.status-watchlist {
  background: rgba(64, 224, 208, .14);
  border-color: rgba(64, 224, 208, .48);
  color: var(--hb-cyan)
}

.status-open,
.status-pending,
.status-prelock {
  background: rgba(77, 171, 247, .14);
  border-color: rgba(77, 171, 247, .45);
  color: #a8d8ff
}

.status-pill.status-not-complete {
  background: rgba(255, 159, 28, .2) !important;
  border-color: rgba(255, 159, 28, .8) !important;
  color: #ffbd66 !important;
  box-shadow: 0 0 18px rgba(255, 159, 28, .22)
}

.status-pill.status-link {
  text-decoration: none;
  cursor: pointer
}

.status-pill.status-not-complete.status-link:hover,
.status-pill.status-not-complete.status-link:focus-visible {
  background: rgba(255, 159, 28, .32) !important;
  border-color: #ff9f1c !important;
  color: #ffe0b3 !important
}

.status-pill.status-link:hover,
.status-pill.status-link:focus-visible {
  filter: brightness(1.16);
  transform: translateY(-1px)
}

.state-watchlist {
  background: rgba(64, 224, 208, .13);
  border-color: rgba(64, 224, 208, .46);
  color: var(--hb-cyan)
}

.state-monitoring {
  background: rgba(77, 171, 247, .16);
  border-color: rgba(77, 171, 247, .48);
  color: #9dd3ff
}

.state-locking-soon {
  background: rgba(255, 159, 28, .18);
  border-color: rgba(255, 159, 28, .56);
  color: #ffc46e
}

.state-locked-ready {
  background: rgba(179, 136, 255, .18);
  border-color: rgba(179, 136, 255, .56);
  color: #d9c2ff
}

.state-locked {
  background: rgba(0, 208, 132, .18);
  border-color: rgba(0, 208, 132, .6);
  color: #74ffc5
}

/* Bet lifecycle must read instantly: red means provisional, green means the
   immutable line and odds have been locked. Keep these more specific than
   the generic monitoring/locked states used elsewhere on the terminal. */
.trade-state-pill.state-monitoring {
  background: rgba(255, 69, 92, .17);
  border-color: rgba(255, 69, 92, .68);
  color: #ff9dac;
  box-shadow: 0 0 16px rgba(255, 69, 92, .12)
}

.trade-state-pill.state-locked {
  background: rgba(30, 215, 96, .18);
  border-color: rgba(30, 215, 96, .7);
  color: #7dffa9;
  box-shadow: 0 0 18px rgba(30, 215, 96, .16)
}

/* Board tables use a clean, centered grid. Lock state retains its semantic
   red/green color without giving the entire column a highlighted treatment. */
.terminal-table th,
.terminal-table td {
  text-align: center !important
}

.terminal-table .trade-state-pill.state-monitoring,
.terminal-table .trade-state-pill.state-locked {
  box-shadow: none
}

.state-rejected {
  background: rgba(255, 77, 109, .16);
  border-color: rgba(255, 77, 109, .56);
  color: #ff9aaa
}

.longshot-card,
.pick-feature-card,
.pick-image-card {
  border: 1px solid rgba(64, 224, 208, .26);
  background: radial-gradient(circle at top left, rgba(64, 224, 208, .16), transparent 34%), linear-gradient(180deg, rgba(13, 34, 48, .98), rgba(5, 14, 22, .98));
  border-radius: 26px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34)
}

.longshot-card,
.pick-image-card {
  padding: 18px
}

.pick-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px
}

.pick-chip-line {
  display: contents
}

.pick-chip-line .mini-pill {
  min-height: 32px;
  padding: 8px 14px
}

.pick-chip-primary .mini-pill {
  flex: 0 0 auto
}

.pick-chip-secondary .mini-pill:first-child {
  flex: 0 0 auto
}

.pick-chip-secondary .result-pill {
  flex: 0 0 auto
}

.pick-matchup {
  color: var(--hb-muted);
  font-size: .92rem;
  line-height: 1.35;
  margin: 0 0 6px
}

.longshot-premium-header h2,
.pick-title {
  color: var(--hb-text);
  letter-spacing: -.04em
}

.pick-title {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.02;
  margin: 0 0 16px
}

.metric-tile,
.pick-game-time,
.pick-lock-clock>div,
.pick-main-metrics>div {
  border: 1px solid rgba(64, 224, 208, .18);
  background: rgba(3, 12, 20, .54);
  border-radius: 18px;
  padding: 12px
}

.metric-label,
.pick-game-time,
.pick-lock-clock,
.pick-main-metrics span {
  color: var(--hb-muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900
}

.pick-main-metrics strong,
.stat-card .value {
  color: var(--hb-text)
}

.metric-value,
.pick-game-time strong,
.pick-lock-clock strong,
.pick-main-metrics strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
  letter-spacing: -.02em
}

.metric-value,
.pick-lock-clock strong {
  color: var(--hb-text)
}

.pick-game-time {
  margin-top: 12px;
  border-color: rgba(64, 224, 208, .4)
}

.pick-game-time strong {
  color: var(--hb-cyan);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(64, 224, 208, .35)
}

.pick-lock-clock {
  margin-top: 10px
}

.ai-breakdown-box,
.ai-math-card,
.ai-reasoning-card {
  margin-top: 14px;
  border: 1px solid rgba(64, 224, 208, .18);
  background: rgba(3, 12, 20, .46);
  border-radius: 20px;
  padding: 14px
}

.ai-math-card h4,
.ai-reasoning-card h4,
.box-title {
  color: var(--hb-cyan);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  margin: 0 0 10px
}

.ai-breakdown-grid {}

.metric-block span {
  color: var(--hb-muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase
}

.metric-block strong {
  float: right;
  color: var(--hb-text)
}

.metric-bar {
  clear: both;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  margin-top: 7px
}

.metric-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hb-cyan), var(--hb-green));
  max-width: 100%
}

.signed-run-metric strong {
  align-items: baseline;
  display: flex;
  float: none;
  font-variant-numeric: tabular-nums;
  gap: 5px;
  font-size: clamp(1rem, 1.25vw, 1.35rem) !important;
  line-height: 1.1;
  margin-top: 8px
}

.signed-run-metric strong small {
  color: var(--hb-muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase
}

.signed-run-metric strong.positive {
  color: var(--hb-green)
}

.signed-run-metric strong.negative {
  color: var(--hb-red)
}

.signed-run-metric strong.neutral {
  color: var(--hb-text)
}

.metric-bar.signed-bar {
  overflow: hidden;
  position: relative
}

.metric-bar.signed-bar::after {
  background: rgba(255, 255, 255, .32);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px
}

.metric-bar.signed-bar i {
  position: absolute;
  top: 0
}

.metric-bar.signed-bar i.negative {
  background: linear-gradient(90deg, #ff9a6c, var(--hb-red))
}

.signal-availability {
  align-items: center;
  border: 1px dashed rgba(148, 174, 184, .26);
  border-radius: 14px;
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 9px 11px
}

.signal-availability>span {
  color: var(--hb-muted);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .11em;
  white-space: nowrap
}

.signal-availability div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end
}

.signal-availability em {
  background: rgba(148, 174, 184, .1);
  border-radius: 999px;
  color: #b7c8ce;
  font-size: .6rem;
  font-style: normal;
  font-weight: 800;
  padding: 4px 7px
}

.ou-data-snapshot {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0
}

.data-source-badge,
.data-snapshot-item {
  background: linear-gradient(135deg, rgba(64, 224, 208, .09), rgba(3, 12, 20, .42));
  border: 1px solid rgba(64, 224, 208, .18);
  border-radius: 14px;
  min-width: 0;
  padding: 9px 11px
}

.data-source-badge span,
.data-snapshot-item span {
  color: var(--hb-muted);
  display: block;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 4px
}

.data-source-badge strong,
.data-snapshot-item strong {
  color: var(--hb-text);
  display: block;
  font-size: .78rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.2
}

.ai-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px
}

.ai-reasoning-card p {
  color: #c8dce2;
  line-height: 1.58;
  margin: 0 0 12px;
  font-size: .92rem
}

.ai-math-card li,
.ai-total-edge {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--hb-muted);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 7px
}

.ai-math-card strong,
.ai-total-edge strong,
.positive {
  color: var(--hb-green)
}

.hero-final-card {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden
}

.hero-final-card img,
.no-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: radial-gradient(circle at 35% 20%, rgba(64, 224, 208, .34), transparent 28%), radial-gradient(circle at 70% 60%, rgba(179, 136, 255, .24), transparent 30%), linear-gradient(145deg, #0a1b28, #030a12)
}

.million-notes-panel {
  margin-top: 22px
}

.million-note-title {
  color: var(--hb-cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: 12px
}

.notes-list {
  color: #c8dce2;
  line-height: 1.7
}

.learning-copy,
.learning-empty,
.learning-layer-copy,
.learning-meta,
.learning-summary {
  color: #c8dce2;
  line-height: 1.6
}

.learning-layer-small,
.longshot-card h3 {
  color: var(--hb-muted)
}

.learning-change-card {
  border: 1px solid rgba(64, 224, 208, .18);
  background: rgba(3, 12, 20, .48);
  border-radius: 16px;
  padding: 12px;
  margin-top: 10px
}

.learning-param {
  color: var(--hb-text);
  font-weight: 900
}

.learning-values {
  color: var(--hb-cyan);
  font-weight: 900
}

.longshot-premium-panel {
  margin-top: 22px
}

.longshot-premium-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px
}

.longshot-premium-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 6px 0
}

.longshot-premium-header p {
  color: var(--hb-muted);
  margin: 0;
  line-height: 1.6
}

.longshot-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px
}

.longshot-card h3 {
  margin: 12px 0 6px
}

.longshot-pick-main {
  color: var(--hb-text);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -.06em
}

.longshot-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0
}

.longshot-meta-row span {
  border: 1px solid rgba(64, 224, 208, .18);
  border-radius: 999px;
  padding: 7px 10px;
  color: #c8dce2;
  font-size: .78rem
}

.hb-modal p,
.longshot-reason {
  color: #c8dce2;
  line-height: 1.6
}

.longshot-result-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px
}

.longshot-score-text {
  color: var(--hb-text);
  font-weight: 900
}

.longshot-box-link,
.score-link,
.score-live-link {
  color: var(--hb-cyan);
  font-weight: 900;
  text-decoration: none
}

.longshot-box-link.disabled {
  opacity: .45
}

.longshot-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px
}

.featured-metric {
  border-color: rgba(255, 209, 102, .45)
}

.ai-value,
.edge-value,
.ev-value,
.score-value,
.win-value {
  color: var(--hb-cyan);
  font-weight: 950
}

.longshot-empty {
  color: var(--hb-muted);
  padding: 18px;
  border: 1px dashed rgba(64, 224, 208, .28);
  border-radius: 18px
}

.terminal-title {
  color: var(--hb-text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  margin: 0 0 16px
}

.pick-card .pick,
.terminal-title-date {
  color: var(--hb-cyan)
}

.table-panel {
  margin-top: 22px;
  overflow: hidden
}

.table-wrap {}

.terminal-table {
  border-collapse: collapse
}

.terminal-table td {
  color: #d9edf2;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  vertical-align: middle
}

.terminal-table tr:hover td {
  background: rgba(64, 224, 208, .05)
}

.text-center {
  text-align: center
}

.nowrap {
  white-space: nowrap
}

.time-cell {
  color: var(--hb-cyan) !important;
  font-size: 1rem;
  font-weight: 950
}

.matchup-cell {
  font-weight: 850;
  color: var(--hb-text) !important
}

.vs-line {
  color: var(--hb-muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em
}

.pick-cell {
  color: var(--hb-cyan) !important;
  font-weight: 950
}

.home-col {
  color: #c8dce2 !important;
  font-weight: 800
}

.ai-pick-col {
  font-size: 1.2rem;
  font-weight: 950
}

.ai-score-best {
  color: var(--hb-green) !important
}

.ai-score-lean {
  color: var(--hb-gold) !important
}

.ai-score-pass {
  color: var(--hb-muted) !important
}

.edge-col {
  color: var(--hb-green) !important;
  font-weight: 900
}

.confidence-col {
  color: #d9edf2 !important;
  font-weight: 900
}

.sorted-header {
  box-shadow: inset 0-3px 0 var(--hb-cyan)
}

.score-text {
  color: var(--hb-muted)
}

.score-cell-inner {
  min-width: 110px
}

.card-note {
  color: var(--hb-muted)
}

.pick-card {
  border: 1px solid var(--hb-line);
  background: var(--hb-panel)
}

.pick-card h3 {
  color: var(--hb-text)
}

.pick-card .pick {
  font-weight: 900
}

@media (max-width:1180px) {

  .stats-grid,
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .ai-detail-grid,
  .daily-notes-grid,
  .longshot-card {
    grid-template-columns: 1fr
  }
}

@media (max-width:720px) {

  .daily-notes-panel,
  .full-width-section,
  .hero,
  .longshot-premium-panel,
  .stats-grid,
  .table-panel,
  .terminal-layout {
    width: min(100% - 18px, 1480px)
  }

  .ai-breakdown-grid,
  .longshot-metrics,
  .pick-lock-clock,
  .pick-main-metrics,
  .stats-grid,
  .top-picks-grid {
    grid-template-columns: 1fr
  }

  .daily-note-card,
  .longshot-premium-panel,
  .table-panel,
  .terminal-layout-single {
    padding: 14px;
    border-radius: 20px
  }
}

.daily-notes-panel,
.hero,
.stats-grid,
.trade-lifecycle-legend {
  width: 100%;
  max-width: none;
  margin-left: 28px;
  margin-right: 28px
}

.longshot-premium-panel,
.table-panel {
  width: 100%
}

.performance-caption,
.performance-header {}

.hero {
  text-align: left;
  padding-left: 0;
  padding-right: 0
}

.hero .eyebrow,
.hero h1,
.hero-text {
  text-align: left;
  margin-left: 0
}

.hero-text {
  max-width: 760px
}

.stats-grid {
  justify-content: flex-start
}

.daily-notes-grid {
  margin-left: 0;
  margin-right: 0
}

@media (max-width:768px) {

  .daily-notes-panel,
  .hero,
  .longshot-premium-panel,
  .performance-caption,
  .performance-header,
  .stats-grid,
  .table-panel,
  .terminal-layout,
  .trade-lifecycle-legend {
    width: 100%;
    margin-left: 14px;
    margin-right: 14px
  }
}

.learning-layer-title,
.side-label {
  padding: 0
}

.learning-layer-box .notes-list {
  margin-top: 0;
  padding-top: 0
}

.learning-layer-box ul,
.learning-layer-copy {
  margin-top: 0
}

.daily-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.daily-note-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  padding: 34px 36px
}

.learning-layer-title,
.side-label {
  margin: 0 0 22px;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #59dfff;
  line-height: 1
}

.notes-list,
.notes-list-horizontal {
  margin: 0;
  padding-left: 24px
}

.notes-list li,
.notes-list-horizontal li {
  margin: 0;
  padding: 0;
  line-height: 1.45
}

.notes-list li+li,
.notes-list-horizontal li+li {
  margin-top: 6px
}

.learning-layer-box {
  margin-top: 2px
}

.pick-lock-clock,
.pick-main-metrics {
  grid-template-columns: 1fr 1fr
}

.pick-lock-clock .metric-tip,
.pick-main-metrics .metric-tip {
  overflow: hidden;
  white-space: nowrap
}

.pick-lock-clock .metric-tip strong,
.pick-main-metrics .metric-tip strong {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(1.05rem, 1.4vw, 1.55rem)
}

.pick-lock-clock .live-countdown {
  font-size: clamp(1rem, 1.2vw, 1.35rem)
}

.ou-final-strip {
  overflow: hidden
}

.ai-breakdown-box,
.ai-detail-grid,
.pick-lock-clock,
.pick-main-metrics {
  max-width: 100%;
  min-width: 0;
  overflow: hidden
}

.pick-lock-clock {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr)
}

.metric-tip {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap
}

.metric-tip,
.top-five-feature-section {
  overflow: hidden
}

.pick-feature-card {}

.pick-lock-clock,
.pick-main-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px
}

.ou-final-strip,
.pick-lock-clock .metric-tip,
.pick-main-metrics .metric-tip {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%
}

.live-countdown,
.metric-tip strong {
  font-size: clamp(.95rem, 1vw, 1.25rem)
}

@media (max-width:1600px) {
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

.result-score-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #f4fbff;
  font-weight: 900
}

.result-score-link.result-win {
  background: linear-gradient(90deg, rgba(0, 210, 140, .95), rgba(0, 210, 140, .12))
}

.result-score-link.result-loss {
  background: linear-gradient(90deg, rgba(255, 47, 83, .95), rgba(255, 47, 83, .12))
}

.result-badge {
  color: #fff;
  font-weight: 950
}

.box-score-link {
  color: #35f0df;
  font-weight: 950;
  text-decoration: none;
  margin-left: 16px
}

.hb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, .58);
  backdrop-filter: blur(22px) saturate(135%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s ease
}

.openai-credit-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 22px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 159, 10, .5);
  border-radius: 16px;
  background: rgba(255, 159, 10, .12);
  color: #ffd18a;
  text-align: left;
}

.openai-credit-alert.critical {
  border-color: rgba(255, 69, 92, .6);
  background: rgba(255, 69, 92, .14);
  color: #ff9baa;
}

.openai-credit-alert-icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #ff9f0a;
  color: #131820;
  font-weight: 900;
}

.openai-credit-alert.critical .openai-credit-alert-icon { background: #ff455c; }

.openai-credit-alert strong,
.openai-credit-alert span { display: block; }
.openai-credit-alert span { margin-top: 2px; color: inherit; opacity: .9; }

.hb-modal {
  position: relative;
  width: min(590px, 93vw);
  background: rgba(248, 250, 252, .96);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  padding: 40px 42px 34px;
  text-align: center;
  color: #111827;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .38), inset 0 1px 0 #fff
}

.hb-modal-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 19px;
  color: white;
  font-size: 16px;
  letter-spacing: -.04em;
  font-weight: 800;
  background: linear-gradient(145deg, #20c997, #0a84ff);
  box-shadow: 0 12px 28px rgba(10, 132, 255, .25)
}

.hb-modal h2 {
  margin: 6px 0 14px;
  color: #111827;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em
}

.hb-modal p {
  color: #536174;
  margin: 10px 0
}

.hb-modal-btn {
  min-width: 150px;
  margin-top: 20px;
  background: #0a84ff;
  color: #fff;
  font-weight: 800;
  border: 0;
  border-radius: 980px;
  padding: 13px 30px;
  font-size: 17px;
  cursor: pointer
}

.hb-modal-btn:hover { background: #0077ed }
.hb-modal-close { position:absolute; top:16px; right:16px; width:34px; height:34px; border:0; border-radius:50%; background:#e9edf2; color:#617083; font-size:25px; line-height:30px; cursor:pointer }
.hb-modal-kicker { color:#0a84ff; font-size:12px; font-weight:850; letter-spacing:.14em }
.hb-modal-lead { font-size:18px; line-height:1.55 }
.hb-modal-state-list { display:grid; gap:10px; margin:22px 0 14px; text-align:left }
.hb-modal-state-row { display:flex; align-items:flex-start; gap:13px; padding:14px 15px; border:1px solid #e2e7ed; border-radius:17px; background:rgba(255,255,255,.72) }
.hb-modal-state-row strong { display:block; color:#172033; font-size:15px; letter-spacing:.025em }
.hb-modal-state-row small { display:block; margin-top:4px; color:#68768a; font-size:15px; line-height:1.42 }
.hb-modal-state-dot { flex:0 0 auto; width:11px; height:11px; margin-top:4px; border-radius:50% }
.hb-modal-state-dot.candidate { background:#ff455c; box-shadow:0 0 0 4px rgba(255,69,92,.14) }
.hb-modal-state-dot.locked { background:#30d158; box-shadow:0 0 0 4px rgba(48,209,88,.13) }
.hb-modal-steps { display:grid; gap:9px; margin:18px 0; text-align:left }
.hb-modal-steps > div { display:grid; grid-template-columns:28px 1fr; gap:10px; align-items:start; color:#4e5d70; font-size:15px; line-height:1.45 }
.hb-modal-steps b { display:grid; place-items:center; width:24px; height:24px; border-radius:50%; background:#e8f2ff; color:#0a84ff; font-size:12px }
.hb-modal-steps strong { color:#172033 }
.hb-modal-footnote { font-size:14px; line-height:1.5 }
.hb-modal-footnote strong { color:#111827 }

@media (max-width: 560px) {
  .hb-modal { padding: 32px 22px 24px; border-radius: 25px }
}

.dk-parlay-panel {
  margin: 50px 0;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(0, 229, 255, .45);
  background: radial-gradient(circle at top left, rgba(0, 229, 255, .13), transparent 35%), radial-gradient(circle at bottom right, rgba(255, 42, 109, .16), transparent 38%), linear-gradient(180deg, rgba(4, 10, 22, .98), rgba(1, 5, 13, .98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .65)
}

.dk-parlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px
}

.dk-select-label,
.dk-slip-kicker {
  color: #20e7ff;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 13px
}

.dk-parlay-top h2 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  color: #f6fbff
}

.dk-parlay-top p {
  margin: 0;
  color: rgba(235, 245, 255, .72);
  font-size: 18px
}

.dk-copy-main {
  border: 1px solid rgba(156, 190, 207, .3);
  border-radius: 18px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #31566a, #435067);
  color: rgba(245, 250, 255, .92);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18)
}

.dk-select-label {
  margin-top: 34px;
  margin-bottom: 14px
}

.dk-leg-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.dk-leg-btn {
  min-width: 90px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .28);
  color: #f4fbff;
  padding: 12px 26px;
  font-weight: 1000;
  font-size: 18px;
  cursor: pointer
}

.dk-leg-btn.active {
  color: #20e7ff;
  border-color: #20e7ff;
  box-shadow: 0 0 24px rgba(32, 231, 255, .48)
}

.dk-ticket-card {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(94, 231, 255, .26);
  background: rgba(7, 18, 32, .78)
}

.dk-ticket-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.dk-ticket-title {
  color: #20e7ff;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: .12em
}

.dk-leg-count {
  border: 1px solid rgba(94, 231, 255, .26);
  border-radius: 12px;
  padding: 8px 16px;
  color: #20e7ff;
  font-weight: 1000;
  letter-spacing: .1em
}

.dk-ticket-grid {
  grid-template-columns: 90px minmax(0, 1fr) 150px 100px
}

.dk-ticket-grid-head {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: rgba(235, 245, 255, .58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em
}

.dk-leg {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.dk-leg:last-child {
  border-bottom: 0
}

.dk-check-wrap input {
  display: none
}

.dk-check-wrap span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(32, 231, 255, .45);
  background: rgba(0, 0, 0, .28);
  cursor: pointer
}

.dk-check-wrap input:checked+span {
  background: #20e7ff;
  box-shadow: 0 0 18px rgba(32, 231, 255, .55)
}

.dk-check-wrap input:checked+span::after {
  content: "✓";
  color: #001018;
  font-weight: 1000
}

.dk-matchup-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.dk-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 229, 255, .12);
  border: 1px solid rgba(0, 229, 255, .25);
  color: #20e7ff;
  font-weight: 1000
}

.dk-team {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 900
}

.dk-logo-fallback {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 10px;
  font-weight: 1000
}

.dk-vs {
  color: rgba(235, 245, 255, .45);
  font-size: 13px;
  font-weight: 900
}

@media (max-width:900px) {
  .dk-parlay-top {
    flex-direction: column;
    align-items: flex-start
  }

  .dk-ticket-grid {
    grid-template-columns: 1fr
  }

  .dk-ticket-grid-head {
    display: none
  }

  .dk-matchup-cell {
    flex-wrap: wrap
  }
}

.dk-ticket-grid {
  display: grid;
  grid-template-columns: 90px 1fr 170px 120px;
  align-items: center;
  gap: 18px
}

.dk-pick {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap
}

.dk-pick,
.dk-pick-lean-over,
.dk-pick-over {
  color: #22e6ff
}

.dk-pick-lean-under,
.dk-pick-under {
  color: #ff4fd8
}

.dk-total {
  font-size: 24px;
  font-weight: 950;
  color: #fff
}

.dk-team-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, .45))
}

.ou-side.home {
  color: #20f0a0
}

.ou-matchup-hero {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  gap: 24px;
  margin: 28px 0
}

.ou-team {
  display: flex;
  align-items: center;
  gap: 20px
}

.ou-home {
  justify-content: flex-end;
  text-align: left
}

.ou-team-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(56, 255, 220, .18))
}

.ou-city {
  font-size: 26px;
  font-weight: 900;
  color: #f4fbff;
  line-height: 1
}

.ou-name {
  font-size: 46px;
  font-weight: 950;
  color: #fff;
  line-height: 1.05;
  letter-spacing: .02em
}

.ou-side {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 900;
  color: #9fb4c5;
  letter-spacing: .08em
}

.ou-center {
  text-align: center
}

.ou-at {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px
}

.ou-line-label {
  font-size: 18px;
  font-weight: 900;
  color: #a8b6c6;
  letter-spacing: .12em
}

.ou-main-pick {
  margin-top: 6px;
  font-size: 54px;
  font-weight: 950;
  color: #fff;
  line-height: 1;
  white-space: nowrap
}

.pick-feature-card .compact-matchup .ou-team {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important
}

.pick-feature-card .compact-matchup .ou-away {
  justify-content: flex-start !important
}

.pick-feature-card .compact-matchup .ou-home {
  justify-content: flex-end !important;
  text-align: right !important
}

.pick-feature-card .compact-matchup .ou-team-logo {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  flex: 0 0 38px !important
}

.pick-feature-card .compact-matchup .ou-name-full {
  font-size: .95rem !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #f4fbff !important
}

.pick-feature-card .compact-matchup .ou-side {
  margin-top: 4px !important;
  font-size: .78rem !important;
  letter-spacing: .08em !important
}

.pick-feature-card .ou-side.home {
  color: #24f5a4 !important
}

@media (max-width:700px) {

  .pick-feature-card .compact-matchup,
  .pick-feature-card .ou-matchup-hero {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    text-align: center !important
  }

  .pick-feature-card .ou-away,
  .pick-feature-card .ou-home,
  .pick-feature-card .ou-team {
    justify-content: center !important;
    text-align: center !important
  }

  .pick-feature-card .ou-pick-display {
    text-align: center !important
  }
}

.top-picks-grid {}

.pick-feature-card {
  overflow: hidden
}

.pick-feature-card .compact-matchup,
.pick-feature-card .ou-matchup-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 18px 0 20px !important;
  padding: 0 !important;
  overflow: hidden !important
}

.pick-feature-card .ou-team {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important
}

.pick-feature-card .ou-away {
  justify-content: flex-start !important;
  text-align: left !important
}

.pick-feature-card .ou-home {
  justify-content: flex-end !important;
  text-align: right !important
}

.pick-feature-card .ou-team-logo {
  max-width: 33px !important;
  max-height: 33px !important;
  flex: 0 0 33px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35)) !important
}

.pick-feature-card .ou-logo-fallback {
  display: none !important
}

.pick-feature-card .ou-name-full {
  font-size: clamp(1.2rem, 1.55vw, 1.5rem) !important;
  color: #f4fbff !important;
  letter-spacing: -.025em !important
}

.pick-feature-card .ou-team-copy {
  min-width: 0 !important;
  max-width: 100% !important
}

.pick-feature-card .ou-side {
  margin-top: 5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .1em !important;
  color: rgba(220, 235, 245, .72) !important
}

.pick-feature-card .ou-vs {
  text-align: center !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  color: rgba(230, 245, 255, .85) !important
}

.pick-feature-card .ou-pick-display {
  text-align: left !important;
  margin: 18px 0 24px !important
}

.pick-feature-card .ou-line-label {
  line-height: 1 !important;
  font-weight: 950 !important;
  color: rgba(220, 235, 245, .72) !important
}

.pick-feature-card .ou-main-pick {
  margin-top: 8px !important;
  font-size: clamp(1.9rem, 2.9vw, 3.25rem) !important;
  color: #fff !important;
  white-space: nowrap !important
}

@media (max-width:1250px) {
  .top-picks-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:700px) {

  .pick-feature-card .compact-matchup,
  .pick-feature-card .ou-matchup-hero {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    text-align: center !important
  }

  .pick-feature-card .ou-away,
  .pick-feature-card .ou-home,
  .pick-feature-card .ou-team {
    justify-content: center !important;
    text-align: center !important
  }

  .pick-feature-card .ou-pick-display {
    text-align: center !important
  }
}

.ou-name-full {
  font-size: .95rem !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #f4fbff !important
}

.ou-matchup-hero .ou-name-full {
  font-size: clamp(1.45rem, 2.2vw, 2rem) !important;
  font-weight: 900 !important;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff
}

.ou-matchup-hero .ou-side {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-top: 4px
}

.ou-matchup-hero .ou-team-logo {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain
}

.ou-matchup-hero .ou-team {
  gap: 18px
}

.ou-matchup-hero .ou-vs {
  font-size: 2rem;
  font-weight: 900
}

.pick-feature-card .ou-name-full {
  font-size: 2rem !important;
  line-height: 1.05 !important;
  font-weight: 900 !important
}

.pick-feature-card .ou-main-pick {
  font-size: 2.5rem !important;
  line-height: .95 !important;
  font-weight: 1000 !important;
  letter-spacing: -.06em !important
}

.pick-feature-card .ou-line-label {
  font-size: .85rem !important;
  letter-spacing: .22em !important
}

.pick-feature-card .ou-side {
  font-size: .8rem !important
}

.pick-feature-card .ou-team-logo {
  width: 54px !important;
  height: 54px !important
}

.ou-page,
.ou-terminal {
  margin-left: auto;
  margin-right: auto
}

.ou-page,
.ou-terminal,
.page-wrap,
.terminal-shell {
  width: min(94vw, 1780px);
  padding-left: 28px;
  padding-right: 28px;
  box-sizing: border-box
}

.page-wrap {
  margin-left: auto;
  margin-right: auto
}

.official-ou-section {
  padding-right: 18px
}

.metric-grid,
.ou-card-grid {
  padding-right: 18px;
  box-sizing: border-box
}

.official-card-grid,
.ou-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px
}

main {
  margin: 0 auto
}

.terminal-shell {
  width: 100%;
  margin: 0 auto
}

.official-ou-section,
.official-ou-wrap,
.terminal-panel {
  margin-left: 28px;
  margin-right: 28px;
  width: auto;
  max-width: none;
  box-sizing: border-box
}

.terminal-layout {
  margin-left: auto;
  margin-right: auto
}

.page-shell,
.terminal-layout {
  box-sizing: border-box !important
}

.dk-parlay-panel,
.page-shell>section,
.table-panel {
  max-width: 100% !important;
  box-sizing: border-box !important
}

.top-picks-grid {
  overflow: hidden !important
}

.pick-feature-card {
  box-sizing: border-box !important
}

.terminal-layout-single,
.terminal-main {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important
}

.terminal-main-full {
  width: 100% !important;
  max-width: 100% !important
}

.terminal-main-full,
.top-five-feature-section {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important
}

.terminal-layout-single .terminal-main,
.terminal-layout-single .terminal-main-full {
  width: 100% !important;
  max-width: 100% !important
}

.page-shell {
  width: calc(100% - 48px) !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important
}

.page-shell,
.terminal-layout,
.terminal-main,
.top-five-feature-section {
  width: 100% !important;
  max-width: none !important
}

.top-picks-grid {
  box-sizing: border-box !important
}

.pick-feature-card,
.top-picks-grid>.pick-feature-card {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important
}

.bankroll-oracle {
  max-width: 1450px;
  margin: 0 auto;
  padding: 34px 22px 70px;
  color: #f4fff7
}

.bankroll-hero {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(106, 255, 122, .22);
  border-radius: 30px;
  background: radial-gradient(circle at 80% 20%, rgba(93, 255, 113, .22), transparent 32%), linear-gradient(135deg, rgba(9, 22, 15, .96), rgba(3, 8, 6, .96));
  box-shadow: 0 0 60px rgba(85, 255, 110, .08)
}

.bankroll-hero h1 {
  font-size: clamp(42px, 6vw, 86px);
  margin: 0;
  letter-spacing: -.06em
}

.eyebrow {
  color: #65ff7a;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px
}

.hero-copy {
  max-width: 700px;
  color: rgba(244, 255, 247, .72);
  font-size: 18px
}

.orb-wrap {
  display: flex;
  justify-content: center
}

.oracle-orb {
  width: 230px;
  height: 230px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #c8ffd0, #56ff70 18%, #073d19 48%, #020705 72%);
  box-shadow: 0 0 35px rgba(93, 255, 113, .55), inset 0 0 35px rgba(255, 255, 255, .16)
}

.oracle-orb span {
  font-size: 42px;
  font-weight: 950;
  color: #031008
}

.oracle-orb small {
  color: #031008;
  font-weight: 900;
  text-transform: uppercase
}

.sim-controls,
.sim-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px
}

.sim-controls {
  grid-template-columns: repeat(5, minmax(150px, 1fr))
}

.sim-card span,
.sim-controls label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900
}

.sim-controls label {
  display: grid;
  gap: 8px;
  color: rgba(244, 255, 247, .68);
  letter-spacing: .08em
}

.sim-controls button,
.sim-controls select {
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(106, 255, 122, .22);
  background: rgba(4, 12, 8, .92);
  color: #f4fff7;
  font-weight: 900;
  padding: 0 14px
}

.sim-controls button {
  cursor: pointer;
  background: linear-gradient(135deg, #65ff7a, #00d66b);
  color: #031008;
  box-shadow: 0 0 24px rgba(101, 255, 122, .22)
}

.sim-grid {
  grid-template-columns: repeat(4, 1fr)
}

.sim-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 25, 18, .96), rgba(3, 8, 6, .96));
  border: 1px solid rgba(106, 255, 122, .18)
}

.sim-card span {
  color: rgba(244, 255, 247, .58)
}

.sim-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  color: #65ff7a
}

.daily-table-wrap,
.growth-panel {
  margin-top: 24px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(3, 8, 6, .92);
  border: 1px solid rgba(106, 255, 122, .18)
}

.growth-chart canvas {
  width: 100%;
  height: 260px
}

.daily-table-wrap {
  overflow-x: auto
}

.daily-table {
  width: 100%;
  border-collapse: collapse
}

.daily-table td,
.daily-table th {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left
}

.daily-table th {
  color: rgba(244, 255, 247, .55);
  font-size: 12px;
  text-transform: uppercase
}

.neg,
.pos {
  color: #65ff7a;
  font-weight: 900
}

.neg {
  color: #ff6b6b
}

@media (max-width:900px) {

  .bankroll-hero,
  .sim-controls,
  .sim-grid {
    grid-template-columns: 1fr
  }
}

.terminal-layout-single,
.top-picks-grid {
  width: 100% !important;
  max-width: 100% !important
}

.terminal-layout-single {
  display: block !important
}

.top-picks-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important
}

@media (max-width:1100px) {
  .top-picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media (max-width:760px) {
  .top-picks-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important
  }

  .pick-feature-card {
    padding: 18px !important
  }

  .pick-feature-card .ai-breakdown-grid,
  .pick-feature-card .ou-ai-breakdown,
  .pick-feature-card .ou-ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
  }
}

/* Header */
.ou-table .pick-header {
  text-align: center;
  justify-self: center;
}

/* Pick values */
.ou-table .pick-cell {
  text-align: center;
  justify-self: center;
  width: 100%;
}

/* O/U board: keep the Pick column centered regardless of older table rules. */
.terminal-table th.pick-cell,
.terminal-table td.pick-cell {
  text-align: center !important;
  vertical-align: top !important;
}

.terminal-table th.pick-cell .metric-tip {
  display: inline-block;
  text-align: center !important;
}

/* O/U board: force the AI header and values to remain centered. */
.terminal-table th[data-sort-key="ai"],
.terminal-table td.ai-pick-col {
  text-align: center !important;
  vertical-align: top !important;
}

.terminal-table th[data-sort-key="ai"] .metric-tip {
  display: inline-block;
  text-align: center !important;
}

/* =========================================================
   O/U AI CALIBRATION
   ========================================================= */

.ou-calibration-panel {
  width: 100%;
  margin: 34px auto;
  padding: 26px;
  border: 1px solid rgba(38, 222, 210, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg,
      rgba(4, 25, 34, 0.98),
      rgba(3, 14, 23, 0.98));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.ou-calibration-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.ou-calibration-kicker {
  margin-bottom: 7px;
  color: #23e2d2;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ou-calibration-header h2 {
  margin: 0;
  color: #f2fbff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
}

.ou-calibration-header p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(224, 242, 248, 0.62);
  font-size: 0.85rem;
  line-height: 1.55;
}

.ou-calibration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ou-calibration-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 194, 224, 0.18);
  border-radius: 13px;
  background: rgba(4, 18, 28, 0.72);
}

.ou-calibration-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(72, 196, 224, 0.14);
}

.ou-calibration-card-heading span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
}

.ou-calibration-card-heading small {
  color: rgba(214, 237, 244, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
}

.ou-calibration-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.ou-calibration-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.ou-calibration-table th,
.ou-calibration-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(103, 181, 199, 0.1);
  text-align: center;
  white-space: nowrap;
}

.ou-calibration-table th {
  color: rgba(203, 231, 239, 0.48);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ou-calibration-table td {
  color: rgba(230, 245, 249, 0.78);
  font-size: 0.75rem;
  font-weight: 750;
}

.ou-calibration-table th:first-child,
.ou-calibration-table td:first-child {
  text-align: left;
}

.ou-calibration-table tbody tr:last-child td {
  border-bottom: 0;
}

.calibration-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 5px 9px;
  border: 1px solid rgba(73, 206, 231, 0.3);
  border-radius: 999px;
  color: #dffaff;
  background: rgba(25, 119, 146, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
}

.calibration-band-1 {
  color: #40f4bd;
  border-color: rgba(64, 244, 189, 0.45);
  box-shadow: 0 0 14px rgba(64, 244, 189, 0.12);
}

.calibration-band-2,
.calibration-band-3 {
  color: #64e7ff;
}

.calibration-band-4 {
  color: #ffd96a;
}

.calibration-band-5,
.calibration-band-6 {
  color: rgba(220, 235, 240, 0.64);
}

.calibration-win {
  color: #32e7a2 !important;
}

.calibration-loss {
  color: #ff5d7e !important;
}

.calibration-rate {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 68px;
}

.calibration-rate strong {
  color: #ffffff;
  font-size: 0.73rem;
}

.calibration-meter {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.calibration-meter span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #218ca2, #35e4ba);
}

.calibration-na {
  color: rgba(220, 235, 240, 0.3);
}

@media (max-width: 1150px) {
  .ou-calibration-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .ou-calibration-panel {
    padding: 18px 12px;
  }

  .ou-calibration-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ou-calibration-table th,
  .ou-calibration-table td {
    padding: 10px 8px;
  }
}

.pick-main-metrics {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: visible;
}

.pick-main-metrics>div {
  grid-column: span 2
}

.pick-main-metrics>div:nth-child(4) {
  grid-column: 2 / span 2
}

.pick-main-metrics>div:nth-child(5) {
  grid-column: 4 / span 2
}

.pick-main-metrics .metric-tip {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
}

.pick-main-metrics .metric-tip span {
  flex: 1 1 auto;
  font-size: .62rem;
  letter-spacing: .08em;
  min-width: 0;
  white-space: nowrap;
}

.pick-main-metrics .metric-tip strong {
  flex: 0 0 auto;
  max-width: none;
  overflow: visible;
}

@media (max-width: 650px) {
  .pick-main-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pick-main-metrics>div,
  .pick-main-metrics>div:nth-child(4),
  .pick-main-metrics>div:nth-child(5) {
    grid-column: auto
  }

  .ou-data-snapshot {
    grid-template-columns: 1fr
  }
}

.combined-score-feature strong {
  color: #42e8df;
}

.combined-score-col {
  font-weight: 900;
  letter-spacing: 0.04em;
}

.combined-score-best {
  color: #38f2d0;
  text-shadow: 0 0 14px rgba(56, 242, 208, 0.34);
}

.combined-score-lean {
  color: #f6c95f;
}

.combined-score-pass {
  color: #8795a5;
}

th.sort-selected .metric-tip {
  color: #ffffff;
}

.combined-score-feature {
  border-color: rgba(56, 242, 208, 0.35);
}

/* =========================================================
   O/U FEATURE IMPORTANCE — ADDITIONS
   ========================================================= */

.learn-shell {
  width: min(1480px, calc(100% - 40px));
  margin: 30px auto 54px;
  padding: 30px;
  border: 1px solid rgba(34, 230, 255, .14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(10, 25, 49, .96), rgba(5, 15, 29, .98));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

.learn-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.learn-kicker {
  margin-bottom: 10px;
  color: #42e8df;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.learn-hero h1 {
  margin: 0;
  color: #f5f8ff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.learn-hero p,
.learn-card-head p {
  margin: 12px 0 0;
  color: rgba(234, 242, 255, .66);
  line-height: 1.55;
}

.learn-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid rgba(34, 230, 255, .34);
  border-radius: 999px;
  color: #59dcff;
  background: rgba(34, 230, 255, .08);
  font-weight: 800;
  text-decoration: none;
}

.learn-back-btn:hover,
.learn-back-btn:focus-visible {
  border-color: rgba(34, 230, 255, .75);
  background: rgba(34, 230, 255, .15);
}

.learn-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.learn-summary-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background: rgba(8, 20, 39, .82);
}

.learn-summary-card.glow {
  border-color: rgba(66, 232, 223, .34);
  box-shadow: inset 0 0 30px rgba(66, 232, 223, .045), 0 0 28px rgba(66, 232, 223, .07);
}

.learn-summary-card span {
  color: rgba(234, 242, 255, .48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.learn-summary-card strong {
  margin-top: 8px;
  overflow: hidden;
  color: #f5f8ff;
  font-size: 27px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.learn-summary-card small {
  margin-top: 7px;
  color: rgba(234, 242, 255, .58);
}

.learn-card {
  overflow: hidden;
  border: 1px solid rgba(34, 230, 255, .14);
  border-radius: 22px;
  background: rgba(5, 15, 29, .7);
}

.learn-card-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.learn-card-head h2 {
  margin: 0;
  color: #f5f8ff;
  font-size: 27px;
}

.learn-table {
  width: 100%;
  overflow-x: auto;
}

.learn-row {
  display: grid;
  grid-template-columns: 58px minmax(170px, 1.45fr) minmax(150px, 1.15fr) 92px 92px 92px 82px minmax(150px, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 1010px;
  padding: 15px 24px;
}

.learn-head {
  color: rgba(234, 242, 255, .46);
  background: rgba(255, 255, 255, .025);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.learn-data-row {
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.learn-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(66, 232, 223, .25);
  border-radius: 50%;
  color: #42e8df;
  background: rgba(66, 232, 223, .08);
  font-weight: 900;
}

.learn-factor,
.learn-score,
.learn-number,
.learn-meaning {
  min-width: 0;
}

.learn-factor strong {
  color: #f3f7ff;
}

.learn-score span {
  display: block;
  margin-bottom: 7px;
  color: #dcecff;
  font-weight: 900;
}

.learn-score i {
  display: block;
  width: var(--w, 0%);
  max-width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #36b9ff, #42e8df);
  box-shadow: 0 0 12px rgba(66, 232, 223, .25);
}

.learn-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(66, 232, 223, .2);
  border-radius: 999px;
  color: #bfece8;
  background: rgba(66, 232, 223, .07);
  font-size: 11px;
  font-weight: 800;
}

.learn-empty {
  padding: 30px;
  border: 1px solid rgba(34, 230, 255, .14);
  border-radius: 20px;
  background: rgba(5, 15, 29, .72);
}

.learn-empty pre {
  overflow-x: auto;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .28);
}

.learn-data-row {
  transition:
    background .18s ease,
    border-color .18s ease;
}

.learn-data-row:hover {
  background: rgba(34, 230, 255, .035);
}

.learn-number {
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.learn-positive {
  color: #61f5b4;
}

.learn-negative {
  color: #ff8797;
}

.learn-neutral {
  color: #ffd776;
}

.learn-meaning {
  min-width: 0;
}

.learn-footnote {
  margin-top: 18px;
  padding: 0 4px;
  color: rgba(234, 242, 255, .52);
  font-size: 12px;
  line-height: 1.6;
}

.learn-footnote strong {
  color: rgba(234, 242, 255, .76);
}


/* =========================================================
   O/U FEATURE IMPORTANCE — TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .learn-row {
    grid-template-columns:
      58px minmax(150px, 1.5fr) minmax(145px, 1.2fr) 82px 82px 82px 72px minmax(140px, 1fr);
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .learn-pill {
    font-size: 10px;
  }
}


/* =========================================================
   O/U FEATURE IMPORTANCE — MOBILE
   ========================================================= */

@media (max-width: 820px) {
  .learn-shell {
    padding: 22px;
  }

  .learn-hero {
    align-items: flex-start;
  }

  .learn-summary-grid {
    grid-template-columns: 1fr;
  }

  .learn-head {
    display: none;
  }

  .learn-table {
    padding: 12px;
  }

  .learn-row.learn-data-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(34, 230, 255, .16);
    border-radius: 18px;
    background: rgba(8, 18, 31, .86);
  }

  .learn-row.learn-data-row>div {
    position: relative;
    min-width: 0;
    min-height: 72px;
    padding: 30px 15px 14px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .learn-row.learn-data-row>div:nth-child(even) {
    border-right: 0;
  }

  .learn-row.learn-data-row>div::before {
    content: attr(data-label);
    position: absolute;
    top: 10px;
    left: 15px;
    color: rgba(234, 242, 255, .46);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .learn-rank-cell {
    display: none;
  }

  .learn-factor {
    grid-column: 1 / -1;
  }

  .learn-factor::before {
    content: "Predictor";
  }

  .learn-factor strong {
    font-size: 17px;
  }

  .learn-score {
    grid-column: 1 / -1;
  }

  .learn-meaning {
    grid-column: 1 / -1;
  }

  .learn-pill {
    border-radius: 12px;
    line-height: 1.35;
  }
}


/* =========================================================
   O/U FEATURE IMPORTANCE — SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {
  .learn-shell {
    padding: 16px 13px 28px;
  }

  .learn-hero {
    display: block;
  }

  .learn-hero h1 {
    font-size: 36px;
  }

  .learn-back-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
  }

  .learn-summary-card {
    padding: 18px;
    border-radius: 19px;
  }

  .learn-summary-card strong {
    font-size: 25px;
  }

  .learn-card {
    border-radius: 21px;
  }

  .learn-card-head {
    padding: 20px;
  }

  .learn-card-head h2 {
    font-size: 23px;
  }

  .learn-table {
    padding: 9px;
  }

  .learn-row.learn-data-row {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .learn-row.learn-data-row>div,
  .learn-row.learn-data-row>div:nth-child(even) {
    border-right: 0;
  }

  .learn-factor,
  .learn-score,
  .learn-meaning {
    grid-column: auto;
  }

  .learn-empty {
    padding: 22px;
  }

  .learn-empty pre {
    font-size: 11px;
  }
}
