:root {
  color-scheme: dark;
  --bg: #101312;
  --panel: #171c1a;
  --panel-strong: #202722;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f2ea;
  --muted: #a8aca5;
  --soft: #d9d2c2;
  --green: #26c281;
  --green-deep: #0f7f55;
  --red: #e5534b;
  --gold: #d7aa45;
  --cyan: #5ab9c8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(16, 19, 18, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.top-actions,
.nav-links,
.section-heading,
.detail-top,
.panel-head,
.list-toolbar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--red));
  color: white;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  gap: 26px;
  color: var(--soft);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.top-actions {
  gap: 10px;
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 5px 11px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.author-chip img {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}

.author-chip small,
.author-chip strong {
  display: block;
  line-height: 1.05;
}

.author-chip small {
  color: var(--muted);
  font-size: 10px;
}

.author-chip strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 13px;
}

.primary-action,
.secondary-action,
.icon-button,
.segmented button,
.result-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
}

.primary-action {
  padding: 10px 15px;
  border-color: rgba(38, 194, 129, 0.45);
  background: var(--green);
  color: #06120d;
  font-weight: 800;
}

.secondary-action {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 18px;
}

.hero-shell {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  padding: 108px clamp(18px, 4vw, 56px) 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/worldcup-analytics-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.96) 0%, rgba(16, 19, 18, 0.76) 38%, rgba(16, 19, 18, 0.28) 68%, rgba(16, 19, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(16, 19, 18, 0.35), #101312 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 420px);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  max-width: 1320px;
  min-height: calc(82vh - 162px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 36px;
}

.hero-metrics div,
.live-panel,
.match-list,
.detail-board,
.pipeline article,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 28, 26, 0.82);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  font-size: 25px;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.live-panel {
  padding: 22px;
  backdrop-filter: blur(16px);
}

.panel-head {
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.panel-head strong {
  color: var(--green);
}

.featured-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 25px;
}

.featured-teams div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.featured-teams span,
.featured-teams strong {
  display: block;
}

.featured-teams span {
  color: var(--muted);
  font-size: 13px;
}

.featured-teams strong {
  margin-top: 9px;
  font-size: 42px;
}

.versus {
  color: var(--gold);
  font-weight: 900;
}

.odds-strip {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.odds-strip div,
.probability-row {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.odds-strip div::before,
.probability-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--size);
  background: linear-gradient(90deg, rgba(38, 194, 129, 0.35), rgba(215, 170, 69, 0.12));
  content: "";
}

.odds-strip span,
.odds-strip strong,
.probability-row span,
.probability-row strong {
  position: relative;
}

.workspace-band,
.model-band,
.analysis-band,
.market-band {
  padding: 58px clamp(18px, 4vw, 56px);
}

.schedule-home {
  min-height: 100vh;
  padding-top: 104px;
}

.workspace-band,
.analysis-band {
  background: #121613;
}

.model-band,
.market-band {
  background: #f3efe5;
  color: #17201b;
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto 24px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: 34px;
}

.section-note {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.segmented,
.result-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.segmented button,
.result-tabs button {
  padding: 9px 13px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.segmented button.is-active,
.result-tabs button.is-active {
  background: var(--green);
  color: #07130d;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.schedule-grid {
  grid-template-columns: 1fr;
}

.match-list,
.detail-board {
  min-width: 0;
  padding: 18px;
  background: var(--panel);
}

.list-toolbar {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.list-toolbar label {
  flex: 1;
}

.list-toolbar span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.list-toolbar input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #0e1210;
  color: var(--text);
}

.match-cards {
  display: grid;
  gap: 16px;
}

.date-group {
  display: grid;
  gap: 10px;
}

.date-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
}

.date-heading strong {
  color: var(--text);
  font-size: 17px;
}

.date-heading span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.match-card {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  padding: 15px 132px 15px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  text-align: left;
}

.match-card.is-selected {
  border-color: rgba(38, 194, 129, 0.7);
  background: rgba(38, 194, 129, 0.1);
}

.card-meta,
.card-teams,
.probability-row,
.factor-row {
  display: flex;
  align-items: center;
}

.card-meta {
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.card-meta strong {
  color: var(--green);
  font-size: 12px;
}

.card-teams {
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.team-name {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.team-name.is-away {
  justify-content: flex-end;
  text-align: right;
}

.team-name img {
  width: 34px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.card-teams small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.card-venue {
  max-width: calc(100% - 112px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.analysis-button {
  position: absolute;
  right: 15px;
  bottom: 15px;
  min-width: 86px;
  padding: 10px 14px;
  border: 1px solid rgba(38, 194, 129, 0.48);
  border-radius: 8px;
  background: var(--green);
  color: #06120d;
  font-weight: 900;
}

.analysis-button:hover {
  filter: brightness(1.05);
}

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

.fact-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.fact-grid span,
.fact-grid strong {
  display: block;
}

.fact-grid span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.fact-grid strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.analysis-factor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-summary a {
  color: var(--green);
  font-weight: 800;
}

.detail-top {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.detail-top h3 {
  margin-top: 8px;
  font-size: 30px;
}

.confidence {
  display: grid;
  min-width: 92px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(38, 194, 129, 0.35);
  border-radius: 8px;
  background: rgba(38, 194, 129, 0.09);
}

.confidence span {
  color: var(--muted);
  font-size: 12px;
}

.confidence strong {
  font-size: 28px;
}

.prediction-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.detail-board[data-view="score"] .prediction-bars,
.detail-board[data-view="reason"] .prediction-bars,
.detail-board[data-view="result"] .score-board,
.detail-board[data-view="reason"] .score-board,
.detail-board[data-view="result"] .factor-list,
.detail-board[data-view="score"] .factor-list {
  display: none;
}

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

.pick-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(38, 194, 129, 0.35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(38, 194, 129, 0.18), rgba(215, 170, 69, 0.08));
}

.pick-card span,
.pick-card small {
  color: var(--muted);
}

.pick-card strong {
  font-size: 44px;
  line-height: 1;
}

.score-board {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  margin-top: 18px;
}

.score-summary {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.score-summary span,
.score-summary small {
  display: block;
  color: var(--muted);
}

.score-summary strong {
  display: block;
  margin: 10px 0;
  font-size: 42px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 7px;
}

.score-cell {
  min-height: 56px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, calc(0.04 + var(--heat) * 0.28));
}

.score-cell.is-best {
  border-color: var(--gold);
  background: rgba(215, 170, 69, 0.24);
}

.score-cell span,
.score-cell strong {
  display: block;
}

.score-cell span {
  color: var(--muted);
  font-size: 12px;
}

.score-cell strong {
  margin-top: 5px;
  font-size: 15px;
}

.factor-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.factor-row {
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.factor-row span {
  flex: 0 0 120px;
  color: var(--muted);
  font-weight: 800;
}

.factor-row strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  text-align: right;
}

.reason-summary {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(215, 170, 69, 0.32);
  border-radius: 8px;
  background: rgba(215, 170, 69, 0.1);
}

.reason-summary span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.reason-summary p {
  max-width: 78ch;
  margin-top: 12px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.9;
}

body.modal-open {
  overflow: hidden;
}

.analysis-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 22px;
}

.analysis-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #141916;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.modal-head h3 {
  margin-top: 8px;
  font-size: 30px;
}

.modal-close {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

.analysis-content {
  display: grid;
  gap: 14px;
}

.analysis-section {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.analysis-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.analysis-section-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.analysis-section-head strong {
  color: var(--gold);
  font-size: 18px;
}

.compact-score {
  margin-bottom: 12px;
}

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

.mini-score {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.mini-score.is-best {
  border-color: rgba(215, 170, 69, 0.65);
  background: rgba(215, 170, 69, 0.18);
}

.mini-score span,
.mini-score em,
.mini-score strong {
  display: block;
}

.mini-score span {
  color: var(--muted);
  font-size: 12px;
}

.mini-score em {
  margin-top: 7px;
  color: var(--text);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.mini-score strong {
  margin-top: 5px;
  font-size: 18px;
}

.pipeline,
.analytics-grid,
.market-table {
  max-width: 1320px;
  margin: 0 auto;
}

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

.pipeline article,
.metric-card {
  padding: 20px;
  background: #fffaf0;
  color: #17201b;
  box-shadow: none;
}

.pipeline article span {
  color: var(--red);
  font-weight: 900;
}

.pipeline article h3 {
  margin-top: 18px;
  font-size: 20px;
}

.pipeline article p {
  margin-top: 10px;
  color: #5f675f;
  line-height: 1.65;
}

.analysis-band .eyebrow,
.workspace-band .eyebrow {
  color: var(--gold);
}

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

.metric-card {
  background: #171c1a;
  color: var(--text);
}

.metric-card span {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
}

.sparkline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 7px;
  height: 70px;
  margin-top: 18px;
}

.sparkline::before,
.sparkline::after,
.sparkline span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  content: "";
}

.sparkline::before {
  height: var(--a);
}

.sparkline span:nth-child(1) {
  height: var(--b);
}

.sparkline span:nth-child(2) {
  height: var(--c);
}

.sparkline span:nth-child(3) {
  height: var(--d);
}

.sparkline::after {
  height: var(--e);
}

.sparkline.danger::before,
.sparkline.danger::after,
.sparkline.danger span {
  background: linear-gradient(180deg, var(--red), #8f2d2a);
}

.date-range {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--soft);
}

.market-table {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 27, 0.15);
  border-radius: 8px;
  background: #fffaf0;
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr 0.8fr;
  gap: 14px;
  padding: 16px 18px;
  border-top: 1px solid rgba(23, 32, 27, 0.1);
  color: #3b463d;
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  background: #e7dfcf;
  color: #17201b;
  font-weight: 800;
}

.table-row strong {
  color: var(--green-deep);
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .dashboard-grid,
  .score-board {
    grid-template-columns: 1fr;
  }

  .pipeline,
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar {
    position: sticky;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .top-actions .icon-button,
  .author-chip small {
    display: none;
  }

  .author-chip {
    gap: 7px;
    padding: 4px 8px 4px 4px;
  }

  .author-chip img {
    width: 26px;
    height: 26px;
  }

  .author-chip strong {
    margin-top: 0;
    font-size: 12px;
  }

  .primary-action {
    padding: 9px 10px;
    font-size: 13px;
  }

  .schedule-home {
    padding-top: 34px;
  }

  .hero-shell {
    min-height: auto;
    padding: 54px 16px 34px;
  }

  .hero-content {
    min-height: 0;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-metrics,
  .featured-teams,
  .pipeline,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .detail-top,
  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented,
  .result-tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .segmented button,
  .result-tabs button {
    flex: 1;
  }

  .score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .match-card {
    padding: 14px;
  }

  .card-meta,
  .card-teams {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-teams {
    gap: 10px;
  }

  .team-name.is-away {
    justify-content: flex-start;
    text-align: left;
  }

  .card-venue {
    max-width: 100%;
  }

  .analysis-button {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .analysis-modal {
    align-items: end;
    padding: 10px;
  }

  .modal-card {
    max-height: 88vh;
    padding: 16px;
  }

  .modal-head h3 {
    font-size: 23px;
  }

  .analysis-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .mini-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factor-row {
    flex-direction: column;
    gap: 8px;
  }

  .factor-row span {
    flex: 0 0 auto;
  }

  .factor-row strong {
    text-align: left;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-head {
    display: none;
  }

  .table-row:not(.table-head) {
    padding: 14px;
  }

  .table-row:not(.table-head) > * {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .table-row:not(.table-head) > *::before {
    color: #6f756c;
    font-weight: 700;
  }

  .table-row:not(.table-head) > *:nth-child(1)::before {
    content: "比赛";
  }

  .table-row:not(.table-head) > *:nth-child(2)::before {
    content: "模型倾向";
  }

  .table-row:not(.table-head) > *:nth-child(3)::before {
    content: "市场概率";
  }

  .table-row:not(.table-head) > *:nth-child(4)::before {
    content: "偏离";
  }

  .table-row:not(.table-head) > *:nth-child(5)::before {
    content: "建议权重";
  }
}
