/* ===================================================
   USYK VS VERHOEVEN PREDICT — styles.css
   Theme: dark navy, #00c853 accent, analytical/sportsbook
   BEM methodology
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg-deep:     #0a0e1a;
  --bg-card:     #141828;
  --bg-card-alt: #1a2035;
  --bg-table-hd: #0f1320;
  --accent:      #00c853;
  --accent-dim:  #00a844;
  --amber:       #ffab00;
  --danger:      #d32f2f;
  --text:        #eceff1;
  --text-muted:  #90a4ae;
  --text-dim:    #607d8b;
  --border:      rgba(255,255,255,0.08);
  --border-acc:  rgba(0,200,83,0.3);
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --radius:      10px;
  --radius-sm:   6px;
  --header-h:    64px;
  --mono:        'Roboto Mono', 'JetBrains Mono', 'Courier New', monospace;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3.5rem 0; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,14,26,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.header__logo span { color: var(--accent); }

.header__nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.header__nav-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.18s;
  text-decoration: none;
}

.header__nav-link:hover,
.header__nav-link--active { color: var(--accent); text-decoration: none; }

.header__cta {
  background: var(--accent);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.18s;
}

.header__cta:hover { background: var(--accent-dim); }

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header__menu-btn span {
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  display: block;
}

/* ---- Hero ---- */
.hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(160deg, #0a0e1a 0%, #0d1525 50%, #0a1015 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,83,0.12);
  border: 1px solid var(--border-acc);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.hero__event-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ---- Odds Card (hero) ---- */
.odds-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.odds-card__header {
  background: var(--bg-table-hd);
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.odds-card__body { padding: 1.25rem; }

.odds-card__fighters {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.odds-card__fighter { text-align: center; }

.odds-card__name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.odds-card__price {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.odds-card__price--fav { color: var(--accent); }
.odds-card__price--dog { color: var(--amber); }

.odds-card__dec {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.odds-card__vs {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.odds-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.odds-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.odds-card__meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.odds-card__meta-label { color: var(--text-muted); }

.odds-card__meta-val {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--text);
}

.odds-card__cta {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  background: var(--accent);
  color: #000 !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition: background 0.18s;
}

.odds-card__cta:hover { background: var(--accent-dim); }

.odds-card__disclaimer {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.4;
}

/* ---- Countdown ---- */
.countdown {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.countdown__unit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 72px;
}

.countdown__num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.countdown__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover { background: var(--accent-dim); color: #000; text-decoration: none; }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.btn--lg { font-size: 1rem; padding: 1rem 2.25rem; }

/* ---- Fact Box ---- */
.fact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

.fact-box__item { display: flex; flex-direction: column; gap: 0.2rem; }

.fact-box__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.fact-box__val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- Section titles ---- */
.section__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

/* ---- Pick Block ---- */
.pick-block {
  background: linear-gradient(135deg, rgba(0,200,83,0.08) 0%, rgba(0,200,83,0.03) 100%);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pick-block__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pick-block__verdict {
  font-size: 1.2rem;
  font-weight: 700;
}

.pick-block__confidence {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.pick-block__conf-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Odds Table ---- */
.odds-table-wrap { overflow-x: auto; margin: 1.5rem 0; }

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.odds-table th {
  background: var(--bg-table-hd);
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.odds-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.odds-table tr:last-child td { border-bottom: none; }

.odds-table tr:hover td { background: rgba(255,255,255,0.025); }

.odds-table__mono {
  font-family: var(--mono);
  font-weight: 600;
}

.odds-table__fav { color: var(--accent); }
.odds-table__dog { color: var(--amber); }
.odds-table__book { font-weight: 600; }
.odds-table__best { background: rgba(0,200,83,0.08); }

.odds-table__badge {
  background: var(--accent);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---- Bullet List Cards ---- */
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.bullet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.bullet-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.bullet-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.bullet-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Recommend Bets ---- */
.rec-bets { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }

.rec-bet {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rec-bet__stake {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--amber);
  background: rgba(255,171,0,0.1);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.rec-bet__market { font-weight: 700; font-size: 0.9rem; }

.rec-bet__odds {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--accent);
  margin-left: auto;
  white-space: nowrap;
}

.rec-bet__reasoning {
  width: 100%;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ---- Quote Card ---- */
.quote-cards { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }

.quote-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.quote-card__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.quote-card__author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
}

.quote-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq { margin: 2rem 0; }

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.18s;
}

.faq__question:hover { color: var(--accent); }

.faq__chevron {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq__item--open .faq__chevron { transform: rotate(-135deg); }

.faq__answer {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq__item--open .faq__answer { display: block; }

/* ---- CTA Block ---- */
.cta-block {
  background: linear-gradient(135deg, #0d1a0e 0%, #091207 100%);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-block__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-block__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block__disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ---- Market sections (odds.html) ---- */
.market-section { margin: 2.5rem 0; }

.market-section__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.market-section__title::before {
  content: '';
  display: block;
  width: 4px; height: 1.2em;
  background: var(--accent);
  border-radius: 2px;
}

.markets-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.markets-tabs__btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.markets-tabs__btn:hover,
.markets-tabs__btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.market-panel { display: none; }
.market-panel--active { display: block; }

/* ---- Compare Table (Tale of the Tape) ---- */
.compare-table-wrap { overflow-x: auto; margin: 1.5rem 0; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th {
  background: var(--bg-table-hd);
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

.compare-table th:first-child { text-align: left; }
.compare-table th:nth-child(2) { color: var(--accent); text-align: center; }
.compare-table th:nth-child(3) { color: var(--amber); text-align: center; }

.compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table td:first-child {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.compare-table td:nth-child(2),
.compare-table td:nth-child(3) { text-align: center; font-weight: 600; }

.compare-table td:nth-child(2) { color: var(--accent); }
.compare-table td:nth-child(3) { color: var(--amber); }

.compare-table__adv { background: rgba(0,200,83,0.06); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---- Stat Grid ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-grid__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}

.stat-grid__val {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-grid__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ---- Scenario Cards ---- */
.scenarios { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }

.scenario {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.scenario__prob {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 70px;
  line-height: 1;
}

.scenario--a .scenario__prob { color: var(--accent); }
.scenario--b .scenario__prob { color: #4fc3f7; }
.scenario--c .scenario__prob { color: var(--danger); }
.scenario--d .scenario__prob { color: var(--text-muted); }

.scenario__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.scenario__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Fighter Profile ---- */
.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fighter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.fighter-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
}

.fighter-card__info {}

.fighter-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fighter-card__nickname {
  font-size: 0.85rem;
  color: var(--amber);
  font-style: italic;
}

.fighter-card__record {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.fighter-card__body { padding: 1.25rem 1.5rem; }

.fighter-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 1.5rem; margin: 1.25rem 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.5rem; top: 0.4rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-deep);
}

.timeline__year {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.timeline__event {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: rgba(20,24,40,0.8);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  margin-top: var(--header-h);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  font-size: 0.78rem;
  flex-wrap: wrap;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  color: var(--text-dim);
  margin-right: 0.4rem;
}

.breadcrumb__link { color: var(--text-muted); }
.breadcrumb__link:hover { color: var(--accent); }
.breadcrumb__current { color: var(--text-dim); }

/* ---- Related Links ---- */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.related-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.18s;
  text-decoration: none;
}

.related-link:hover {
  border-color: var(--border-acc);
  color: var(--accent);
  text-decoration: none;
}

.related-link__arrow {
  float: right;
  opacity: 0.5;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-table-hd);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand { }

.footer__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer__logo span { color: var(--accent); }

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer__link {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.18s;
  text-decoration: none;
}

.footer__link:hover { color: var(--accent); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.footer__rg {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: right;
  max-width: 380px;
}

.footer__rg a { color: var(--text-muted); }
.footer__rg a:hover { color: var(--accent); }

.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--danger);
  border-radius: 5px;
  font-weight: 800;
  font-size: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}

/* ---- Disclaimer ---- */
.disclaimer {
  background: rgba(20,24,40,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 1.5rem 0;
}

/* ---- Inline text styles ---- */
.text-green { color: var(--accent); }
.text-amber { color: var(--amber); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.mono { font-family: var(--mono); }

/* ---- Odds row progress bar ---- */
.prob-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prob-bar__track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.prob-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
  transition: width 0.6s ease;
}

.prob-bar__fill--dog { background: var(--amber); }

.prob-bar__pct {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 36px;
  text-align: right;
}

/* ---- Breadcrumb page offset ---- */
.page-content {
  padding-top: 1.5rem;
}

/* ---- Info box ---- */
.info-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--amber);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fighters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 56px; }

  .header__nav { display: none; }
  .header__menu-btn { display: flex; }
  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10,14,26,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  section { padding: 2.25rem 0; }
  .hero { padding-top: calc(var(--header-h) + 2rem); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .footer__rg { text-align: left; }

  .odds-table th,
  .odds-table td { padding: 0.6rem 0.7rem; font-size: 0.8rem; }
  .compare-table th,
  .compare-table td { padding: 0.6rem 0.7rem; }

  .pick-block { flex-direction: column; }
  .pick-block__confidence { margin-left: 0; }

  .scenario { flex-direction: column; }

  .rec-bet { flex-direction: column; }
  .rec-bet__odds { margin-left: 0; }

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

/* ---- Policy pages ---- */
.policy-content {
  max-width: 780px;
  padding: 2rem 0 4rem;
  margin-top: var(--header-h);
}

.policy-content h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.policy-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--accent); }
.policy-content p,
.policy-content li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.policy-content ul { padding-left: 1.5rem; }
.policy-content a { color: var(--accent); }

/* ---- 404 ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page__code {
  font-family: var(--mono);
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
}

.error-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.error-page__text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ============================================================
   E-E-A-T & SEO ADDITIONS — April 2026
   ============================================================ */

/* Byline */
.byline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.6rem 0 1rem;
  line-height: 1.4;
}
.byline a {
  color: var(--accent);
  text-decoration: none;
}
.byline a:hover {
  text-decoration: underline;
}
.byline time {
  color: var(--text-muted);
}

/* Author Bio */
.author-bio {
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.author-bio h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.author-bio p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.author-bio strong {
  color: var(--text);
}

/* Sources */
.sources {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  background: rgba(20,24,40,0.6);
  border-radius: 6px;
}
.sources h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.sources ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sources li {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}
.sources cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}
.sources a {
  color: var(--accent);
  text-decoration: none;
}
.sources a:hover {
  text-decoration: underline;
}

/* Methodology */
.methodology {
  background: linear-gradient(135deg, rgba(0,200,83,0.07) 0%, rgba(20,24,40,0.8) 100%);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.methodology h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.methodology p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Abbr styling */
abbr[title] {
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  cursor: help;
  color: inherit;
}

/* Time element */
time {
  font-variant-numeric: tabular-nums;
}

/* Table captions */
caption {
  caption-side: top;
  text-align: left;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0 0 0.5rem;
  line-height: 1.4;
}

/* Blockquote within quote-cards */
.quote-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

@media (max-width: 640px) {
  .byline {
    font-size: 0.75rem;
    gap: 0.3rem 0.4rem;
  }
  .author-bio {
    padding: 1rem;
  }
  .methodology {
    padding: 1rem;
  }
}

/* ======================================================
   DEEPENING ADDITIONS — Site 4 Analytical Hub
   ====================================================== */

/* Deep analysis sections wrapper */
.deep-analysis {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* 10-point style breakdown */
.deep-analysis__points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.deep-analysis__point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.deep-analysis__point-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

/* Historical parallels */
.parallels-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.parallel-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}

.parallel-item__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.parallel-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Key stats aside (index.html) */
.key-stats-aside {
  background: var(--bg-card);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.key-stats-aside__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.key-stats-aside__grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.key-stats-aside__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.key-stats-aside__label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.key-stats-aside__val {
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.8rem;
  text-align: right;
}

.key-stats-aside__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* Responsive: key-stats aside */
@media (max-width: 640px) {
  .key-stats-aside__row {
    flex-direction: column;
    gap: 0.2rem;
  }
  .key-stats-aside__val {
    text-align: left;
  }
  .deep-analysis__point {
    padding: 1rem;
  }
}

/* ── Compliance / Free-stream transparency ── */
.cta-note{font-size:.82rem;color:#9aa0b4;margin-top:.5rem;font-style:italic}
.cta-badge{display:inline-block;background:rgba(0,200,83,.12);border:1px solid rgba(0,200,83,.4);color:#00c853;padding:.35rem .8rem;border-radius:20px;font-size:.75rem;font-weight:600;margin-top:.75rem;letter-spacing:.3px}
.no-deposit-inline{color:#00c853;font-weight:700}
.benefit-note{background:rgba(0,200,83,.08);border-left:3px solid #00c853;padding:1rem 1.25rem;margin:1.5rem 0;border-radius:4px;font-size:.95rem}
.benefit-note strong{color:#00c853}

/* ── Quote Cards — Real Expert Attribution ── */
.quote-card{background:rgba(0,200,83,.06);border-left:3px solid #00c853;padding:1.5rem 1.75rem;margin:1.5rem 0;border-radius:6px}
.quote-card blockquote{margin:0 0 1rem;font-size:1.05rem;font-style:italic;line-height:1.6;color:#eceff1}
.quote-card blockquote p{margin:0}
.quote-card figcaption{display:flex;flex-direction:column;gap:.35rem;font-size:.9rem}
.quote-card__author{font-style:normal;font-weight:700;color:#00c853}
.quote-card__author a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(0,200,83,.4)}
.quote-card__role{color:#9aa0b4;font-size:.85rem}
.quote-card__source{color:#9aa0b4;font-size:.8rem;font-style:italic}
.quote-card__source a{color:#00c853;opacity:.85}

/* ===================================================
   IMAGE INJECTION — site-4-en-prognoz
   =================================================== */
.content-image{margin:1.5rem 0;text-align:center}
.content-image img{max-width:100%;height:auto;border-radius:8px;display:block;margin:0 auto;box-shadow:0 6px 20px rgba(0,0,0,.4)}
.content-image figcaption{font-size:.85rem;color:#9aa0b4;font-style:italic;margin-top:.5rem;padding:0 1rem}
.hero__image{max-width:100%;height:auto;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,.5);margin-top:1.5rem}
.fighter-portrait-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:2rem 0}
.fighter-portrait-grid figure{margin:0}
.fighter-portrait-grid img{width:100%;height:auto;border-radius:8px;aspect-ratio:4/5;object-fit:cover}
.dossier-hero{margin:1.5rem 0 2rem;border-radius:12px;overflow:hidden;box-shadow:0 8px 30px rgba(0,200,83,.12)}
.dossier-hero img{width:100%;height:auto;display:block}
.inline-action-shot{margin:1.25rem 0;border-left:3px solid #00c853;padding-left:1rem}
.inline-action-shot img{max-width:100%;height:auto;border-radius:6px}
.inline-action-shot figcaption{font-size:.8rem;color:#9aa0b4;font-style:italic;margin-top:.4rem}

/* --- Video Player Frame --- */
.video-player {
  display: block; position: relative; overflow: hidden;
  border-radius: 12px; margin: 1.5rem 0;
  cursor: pointer; text-decoration: none; color: inherit;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  background: #000;
}
.video-player img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.video-player:hover img, .video-player:focus-visible img { transform: scale(1.03); }
.video-player__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  transition: background .3s ease;
}
.video-player:hover .video-player__overlay { background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.7)); }
.video-player__play { transition: transform .3s cubic-bezier(.34,1.56,.64,1); filter: drop-shadow(0 6px 16px rgba(229,57,53,.6)); }
.video-player:hover .video-player__play { transform: scale(1.08); }
.video-player__live {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: #e53935; color: #fff;
  padding: .35rem .8rem; border-radius: 4px;
  font-weight: 800; font-size: .78rem; letter-spacing: 1.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
}
.video-player__live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: vp-pulse 1.4s infinite; }
@keyframes vp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.video-player__cta {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: #00c853; color: #0a0e1a;
  padding: .6rem 1.5rem; border-radius: 6px;
  font-weight: 800; font-size: .95rem; letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(0,200,83,.4); white-space: nowrap;
}
@media (max-width: 640px) {
  .video-player__play svg { width: 64px; height: 64px; }
  .video-player__cta { font-size: .85rem; padding: .5rem 1.2rem; bottom: .9rem; }
  .video-player__live { font-size: .7rem; padding: .25rem .6rem; top: .75rem; left: .75rem; }
}
@media(max-width:640px){.fighter-portrait-grid{grid-template-columns:1fr}}

/* ============================================================
   PREMIUM ANALYTICAL EDITORIAL — Site-4 Polish Pass
   FiveThirtyEight + The Athletic aesthetic
   ============================================================ */

/* ── Metric Counter Blocks ── */
.metric-counter{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1rem;margin:2rem 0}
.metric-counter__item{background:linear-gradient(135deg,rgba(0,200,83,.08),rgba(20,24,40,.9));border:1px solid rgba(0,200,83,.25);border-radius:var(--radius);padding:1.25rem 1.25rem 1rem;text-align:center;position:relative;overflow:hidden}
.metric-counter__item::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 70% 20%,rgba(0,200,83,.06),transparent 65%);pointer-events:none}
.metric-counter__num{font-family:var(--mono);font-size:clamp(2rem,5vw,3rem);font-weight:900;color:var(--accent);line-height:1;display:block;text-shadow:0 0 24px rgba(0,200,83,.35)}
.metric-counter__num--amber{color:var(--amber);text-shadow:0 0 24px rgba(255,171,0,.3)}
.metric-counter__num--blue{color:#4fc3f7;text-shadow:0 0 24px rgba(79,195,247,.3)}
.metric-counter__label{font-size:.7rem;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted);margin-top:.4rem;display:block}

/* ── Pull-Quote ── */
.pull-quote{margin:2.5rem 0;padding:1.75rem 2rem 1.75rem 4rem;border-left:4px solid var(--accent);background:linear-gradient(135deg,rgba(0,200,83,.06),rgba(20,24,40,.7));border-radius:0 var(--radius) var(--radius) 0;position:relative}
.pull-quote::before{content:'\201C';position:absolute;left:.5rem;top:-.5rem;font-size:5rem;line-height:1;color:var(--accent);opacity:.35;font-family:Georgia,serif}
.pull-quote p{font-size:clamp(1.05rem,2vw,1.3rem);font-style:italic;line-height:1.55;color:var(--text);margin:0 0 .75rem}
.pull-quote__attr{font-size:.8rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.06em}

/* ── Section Divider ── */
.section-divider{display:flex;align-items:center;gap:1rem;margin:2.5rem 0;position:relative;overflow:hidden}
.section-divider::before{content:'';flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--border),transparent)}
.section-divider__bars{display:flex;align-items:flex-end;gap:3px;height:20px;flex-shrink:0}
.section-divider__bar{width:4px;border-radius:2px 2px 0 0;background:var(--accent);opacity:.4}
.section-divider__bar:nth-child(1){height:8px}
.section-divider__bar:nth-child(2){height:14px;opacity:.7}
.section-divider__bar:nth-child(3){height:20px;opacity:1}
.section-divider__bar:nth-child(4){height:12px;opacity:.65}
.section-divider__bar:nth-child(5){height:6px;opacity:.3}
.section-divider::after{content:'';flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--border),transparent)}

/* ── Callout Insight ── */
.callout-insight{background:linear-gradient(135deg,rgba(0,200,83,.07),rgba(14,20,35,.95));border:1px solid rgba(0,200,83,.2);border-radius:var(--radius);padding:1.25rem 1.5rem;margin:1.75rem 0;display:flex;gap:1rem;align-items:flex-start}
.callout-insight__icon{font-size:1.4rem;flex-shrink:0;line-height:1;margin-top:.1rem}
.callout-insight__body{flex:1}
.callout-insight__title{font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--accent);margin-bottom:.4rem}
.callout-insight__text{font-size:.875rem;color:var(--text-muted);line-height:1.6}
.callout-insight__text a{color:var(--accent)}

/* ── Sticky CTA Bar (mobile) ── */
.sticky-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:900;background:rgba(10,14,26,.97);border-top:1px solid rgba(0,200,83,.3);padding:.7rem 1.25rem;backdrop-filter:blur(12px)}
.sticky-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:.75rem;max-width:1180px;margin:0 auto}
.sticky-cta__label{font-size:.78rem;color:var(--text-muted);flex:1}
.sticky-cta__label strong{color:var(--text)}
.sticky-cta__btn{background:var(--accent);color:#000;font-weight:800;font-size:.82rem;padding:.55rem 1.25rem;border-radius:6px;text-transform:uppercase;letter-spacing:.04em;white-space:nowrap;flex-shrink:0;text-decoration:none!important}
.sticky-cta__close{background:none;border:none;color:var(--text-muted);cursor:pointer;font-size:1.1rem;padding:.2rem;flex-shrink:0;line-height:1}
@media(max-width:640px){.sticky-cta{display:block}}

/* ── Anchor TOC ── */
.anchor-toc{background:var(--bg-card);border:1px solid var(--border);border-left:3px solid var(--accent);border-radius:var(--radius);padding:1.25rem 1.5rem;margin:1.5rem 0 2rem}
.anchor-toc__title{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--accent);margin-bottom:.75rem}
.anchor-toc__list{list-style:none;display:flex;flex-direction:column;gap:.4rem;padding:0;margin:0}
.anchor-toc__item a{font-size:.85rem;color:var(--text-muted);text-decoration:none;display:flex;align-items:center;gap:.5rem;transition:color .18s;padding:.2rem 0}
.anchor-toc__item a::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--border);flex-shrink:0;transition:background .18s}
.anchor-toc__item a:hover,.anchor-toc__item.active a{color:var(--accent)}
.anchor-toc__item a:hover::before,.anchor-toc__item.active a::before{background:var(--accent)}

/* ── Related Cards (3-col) ── */
.related-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;margin:2rem 0}
.related-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.4rem;text-decoration:none!important;transition:all .2s;display:flex;flex-direction:column;gap:.5rem}
.related-card:hover{border-color:var(--border-acc);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,200,83,.08);text-decoration:none!important}
.related-card__tag{font-size:.65rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--accent)}
.related-card__title{font-size:.9rem;font-weight:700;color:var(--text);line-height:1.35}
.related-card__desc{font-size:.78rem;color:var(--text-muted);line-height:1.5;flex:1}
.related-card__arrow{font-size:.8rem;color:var(--text-dim);margin-top:.25rem;transition:color .18s}
.related-card:hover .related-card__arrow{color:var(--accent)}

/* ── Probability Bar (enhanced) ── */
.prob-bar--lg{margin:.5rem 0}
.prob-bar--lg .prob-bar__track{height:10px;border-radius:5px}
.prob-bar--lg .prob-bar__fill{background:linear-gradient(90deg,var(--accent-dim),var(--accent))}
.prob-bar--lg .prob-bar__pct{font-size:.9rem;font-weight:700;color:var(--text)}

/* ── VS Hero (fighters.html) ── */
.vs-hero{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:1.5rem;background:linear-gradient(135deg,rgba(0,200,83,.06),rgba(10,14,26,1),rgba(255,171,0,.06));border:1px solid var(--border);border-radius:var(--radius);padding:2rem;margin:2rem 0}
.vs-hero__fighter{text-align:center}
.vs-hero__name{font-size:clamp(1.1rem,2.5vw,1.6rem);font-weight:900;letter-spacing:-.02em;line-height:1.1}
.vs-hero__name--usyk{color:var(--accent)}
.vs-hero__name--verhoeven{color:var(--amber)}
.vs-hero__record{font-family:var(--mono);font-size:.85rem;color:var(--text-muted);margin-top:.3rem}
.vs-hero__odds{font-family:var(--mono);font-size:1.2rem;font-weight:700;margin-top:.4rem}
.vs-hero__divider{text-align:center;flex-shrink:0}
.vs-hero__vs{font-size:clamp(1.5rem,4vw,2.5rem);font-weight:900;color:var(--text-dim);letter-spacing:-.04em;display:block;opacity:.5}
.vs-hero__date{font-size:.7rem;color:var(--text-dim);text-align:center;margin-top:.25rem;letter-spacing:.06em;text-transform:uppercase}
@media(max-width:640px){.vs-hero{grid-template-columns:1fr;text-align:center}.vs-hero__divider{order:-1}}

/* ── Data-Table Polish ── */
.data-table-polish tbody tr:nth-child(even) td{background:rgba(255,255,255,.018)}
.data-table-polish tbody tr:hover td{background:rgba(0,200,83,.04);transition:background .15s}
.data-table-polish thead th{background:linear-gradient(135deg,var(--bg-table-hd),rgba(0,200,83,.05));position:sticky;top:var(--header-h)}

/* ── H2 Accent Left Bar ── */
.section__title--accented{padding-left:.875rem;border-left:4px solid var(--accent)}

/* ── Hero Grid Pattern ── */
.hero--grid-bg::after{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(0,200,83,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,200,83,.04) 1px,transparent 1px);background-size:40px 40px;pointer-events:none;z-index:0}
.hero--grid-bg .container{position:relative;z-index:1}

/* ── Sticky TOC Sidebar ── */
.with-toc-sidebar{display:grid;grid-template-columns:1fr 220px;gap:2.5rem;align-items:start}
.toc-sidebar{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.toc-sidebar__title{font-size:.65rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--text-dim);margin-bottom:.6rem}
.toc-sidebar__list{list-style:none;padding:0;margin:0;border-left:2px solid var(--border);padding-left:.875rem}
.toc-sidebar__item{margin-bottom:.35rem}
.toc-sidebar__item a{font-size:.78rem;color:var(--text-muted);text-decoration:none;transition:color .18s;display:block;padding:.15rem 0}
.toc-sidebar__item a:hover,.toc-sidebar__item.active a{color:var(--accent)}
.toc-sidebar__item.active a{font-weight:700}
@media(max-width:900px){.with-toc-sidebar{grid-template-columns:1fr}.toc-sidebar{display:none}}

/* ── Scroll-spy minimal JS hook ── */
[data-spy]{scroll-margin-top:calc(var(--header-h) + .5rem)}
/* ═══════════════════════════════════════════════════════════
   HOW-TO 3-STEP CALLOUT — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.howto {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 215, 0, 0.06) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem 0;
  margin: 1rem 0 2rem;
}
.howto__title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .8rem;
  letter-spacing: -.01em;
}
.howto__intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: .9;
}
.howto__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.howto__step {
  display: flex;
  gap: .85rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  transition: border-color .2s, transform .2s;
}
.howto__step:hover { border-color: rgba(255, 215, 0, 0.45); transform: translateY(-2px); }
.howto__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.howto__step-body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.howto__step-title { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.3; }
.howto__step-text { font-size: .85rem; line-height: 1.5; opacity: .85; margin: 0; }
.howto__cta-inline {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}
.howto__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 215, 0, 0.18);
}
.howto__badges {
  font-size: .85rem;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .01em;
}
.howto__cta-main {
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  font-weight: 800;
  font-size: .92rem;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.howto__cta-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
  color: #0b1e3a;
}
@media (max-width: 600px) {
  .howto__steps { grid-template-columns: 1fr; }
  .howto__footer { flex-direction: column; align-items: stretch; }
  .howto__cta-main { text-align: center; }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE OVERFLOW FIXES — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Keyfacts: allow wrap, drop nowrap, stack vertically */
  .article-keyfacts > .container { flex-direction: column; align-items: stretch; gap: .8rem; }
  .keyfacts__list { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: .5rem .8rem; }
  .keyfacts__list > div { padding: 0 !important; border-left: none !important; flex: unset; }
  .keyfacts__list dt { white-space: normal !important; font-size: .62rem !important; }
  .keyfacts__list dd { white-space: normal !important; font-size: .82rem !important; line-height: 1.25; }

  /* Countdown: compact on mobile */
  .article-keyfacts .countdown,
  .countdown--inline {
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: .35rem !important;
  }
  .article-keyfacts .countdown__units,
  .countdown--inline .countdown__units { gap: .25rem !important; flex-wrap: wrap !important; }
  .article-keyfacts .countdown__num,
  .countdown--inline .countdown__num { font-size: .95rem !important; }
  .article-keyfacts .countdown__word,
  .countdown--inline .countdown__word { font-size: .62rem !important; }
  .article-keyfacts .countdown__unit-label,
  .countdown--inline .countdown__unit-label { font-size: .62rem !important; }

  /* Howto: tighten on small screens */
  .howto { padding: 1.5rem 0; }
  .howto__steps { gap: .75rem; }
  .howto__step { padding: .9rem .8rem; }
  .howto__cta-main { width: 100%; text-align: center; padding: .9rem 1rem; font-size: .88rem; }
  .howto__badges { font-size: .78rem; }

  /* Section strip: smaller padding */
  .section-strip > .container { padding: .4rem 0 !important; }
  .section-strip__crumbs { font-size: .7rem; }
  .section-strip__live { font-size: .62rem; }

  /* Article header: tighter */
  .article-header { padding: 1rem 0 0; }
  .article-eyebrow { font-size: .65rem; }
  .article-title { font-size: 1.35rem !important; line-height: 1.22 !important; }
  .article-deck { font-size: .92rem; line-height: 1.5; }

  /* Tables don't fit mobile - allow scroll */
  .tz-table, .compact-tape__table, table { font-size: .82rem; }
  table { display: block; max-width: 100%; overflow-x: auto; }

  /* Container side padding */
  .container, .container--article { padding: 0 .9rem !important; }

  /* General: prevent any wide image/div from breaking layout */
  img, video, iframe, .video-player { max-width: 100%; height: auto; }
}
/* Additional mobile fixes (v2) */
@media (max-width: 720px) {
  /* CTA buttons must fit viewport */
  .btn, .btn--lg, .btn--primary, .btn--secondary, .btn--gold {
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: center;
    padding: .85rem 1rem !important;
    font-size: .92rem !important;
  }
  .btn__logo, .btn img { max-width: 60px; height: auto; }

  /* Tables: wrap entire table in scrollable container effectively */
  table { table-layout: auto; min-width: 0 !important; word-break: break-word; }
  th, td { padding: .5rem .4rem !important; font-size: .8rem !important; }

  /* Anything inside main can't exceed viewport */
  main *, .article-header *, .howto * { max-width: 100% !important; box-sizing: border-box; }

  /* Stat-grid responsive */
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important; gap: .5rem !important; }
  .stat-card { padding: .9rem .6rem !important; }

  /* Cards (3-col) → 1-col on mobile */
  .cards { grid-template-columns: 1fr !important; }
  .odds-cards { grid-template-columns: 1fr !important; }

  /* Hero CTA group / inline CTAs wrap */
  .hero__ctas, .hero__cta-group, .hero__cta { flex-direction: column; align-items: stretch !important; gap: .6rem !important; }
}
/* Additional mobile fixes (v3) — collapse multi-col grids on narrow screens */
@media (max-width: 900px) {
  .content-layout,
  .article-grid,
  .prediction-layout,
  .hero__inner,
  .grid-2col,
  .two-col {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .content-layout > *,
  .article-grid > *,
  .prediction-layout > *,
  .hero__inner > * {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
/* Additional mobile fixes (v4) — kill nowrap on long headings */
@media (max-width: 720px) {
  .section__title-rule h2,
  .section__title,
  .h2-accent,
  h1, h2, h3 {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  .section__title-rule { flex-wrap: wrap !important; }
  /* sticky bottom CTA: smaller text */
  .sticky-cta__text { white-space: normal !important; font-size: .72rem !important; }
}
/* Additional mobile fixes (v5) — universal grid collapse */
@media (max-width: 900px) {
  .article-layout,
  .deep-analysis,
  .deep-analysis__career-cols,
  .stat-grid,
  .fighter-portrait-grid,
  .related-cards,
  .article-grid,
  .prediction-layout,
  .toc-sidebar,
  .article-keyfacts > .container,
  [class*="grid"]:not(.howto__steps):not(.stat-grid):not(.cards):not(.odds-cards) {
    grid-template-columns: 1fr !important;
  }
  .deep-analysis__career-col,
  .article-layout > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* Author bio + sources blocks */
  .author-bio, .sources, .compact-tape__cta-text, blockquote {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   COOKIE BAR — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(20, 25, 45, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #e8e8f0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar a:hover { text-decoration-thickness: 2px; }
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cookie-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}
@media (max-width: 720px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    font-size: 0.78rem;
  }
  .cookie-bar__btn { width: 100%; }
}
