:root {
  --bg: #07110c;
  --bg-2: #0c1712;
  --surface: rgba(12, 24, 18, 0.76);
  --surface-strong: rgba(15, 29, 22, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --border: rgba(195, 255, 212, 0.14);
  --border-strong: rgba(195, 255, 212, 0.24);
  --text: #ecf6ef;
  --muted: #9ab0a1;
  --accent: #7df2a5;
  --accent-2: #d3ff70;
  --accent-3: #4bd0a0;
  --warm: #f3ffcf;
  --danger: #ff8d8d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(125, 242, 165, 0.16), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(211, 255, 112, 0.12), transparent 22%),
    linear-gradient(180deg, #07110c 0%, #0c1712 52%, #09130f 100%);
  min-height: 100vh;
}

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

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

.sports-shell {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
}

.sports-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(6, 14, 10, 0.78);
  border-bottom: 1px solid rgba(195, 255, 212, 0.08);
}

.sports-topbar-inner {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sports-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sports-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #08110d;
  font-weight: 800;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.sports-brand-copy strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
}

.sports-brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.sports-nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sports-updated {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

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

.sports-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: 0.2s ease;
  font-size: 0.92rem;
}

.sports-nav a:hover,
.sports-nav a.active {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.sports-lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.lang-btn {
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.lang-btn.active {
  color: #07110c;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.sports-hero {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.sports-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 17, 12, 0.9) 0%, rgba(7, 17, 12, 0.6) 42%, rgba(7, 17, 12, 0.28) 72%, rgba(7, 17, 12, 0.76) 100%),
    radial-gradient(circle at 78% 38%, rgba(125, 242, 165, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(4, 9, 7, 0.1), rgba(4, 9, 7, 0.85));
  pointer-events: none;
}

.sports-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: end;
  padding: 42px 0 46px;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(211, 255, 112, 0.55);
}

.hero-title {
  margin: 18px 0 14px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 8ch;
}

.hero-body {
  max-width: 42rem;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(236, 246, 239, 0.82);
}

.hero-actions,
.hero-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 26px 0 18px;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #07110c;
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-links a:hover {
  color: var(--text);
}

.hero-rail {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(211, 255, 112, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(125, 242, 165, 0.06), transparent 40%);
  box-shadow: var(--shadow);
}

.rail-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-leader {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.leader-team {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-team strong {
  display: block;
  font-size: 1.1rem;
}

.leader-team span {
  color: var(--muted);
}

.leader-pct {
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  line-height: 0.95;
}

.signal-stack {
  display: grid;
  gap: 12px;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-copy {
  color: var(--muted);
}

.signal-value {
  color: var(--accent-2);
  font-weight: 700;
}

.section {
  padding: 74px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-head p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.board-shell,
.surface-block {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.board-shell {
  overflow: hidden;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .board-table {
  min-width: 760px;
}

.board-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
}

.board-table th,
.board-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.board-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.team-chip {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.team-name strong {
  display: block;
}

.team-name span {
  color: var(--muted);
  font-size: 0.88rem;
}

.trend {
  font-weight: 700;
}

.trend.up {
  color: var(--accent);
}

.trend.down {
  color: var(--danger);
}

.trend.stable {
  color: var(--muted);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
}

.market-stack {
  display: grid;
  gap: 18px;
}

.surface-block {
  padding: 24px;
}

.mini-kicker {
  color: var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.surface-block h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
}

.surface-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.market-embed {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 340px;
  background: rgba(0, 0, 0, 0.18);
}

.market-embed iframe {
  display: block;
  width: 100%;
  min-height: 340px;
}

.market-tile {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.market-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.market-tile p {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.market-tile .market-embed {
  margin-top: 0;
  min-height: 320px;
}

.market-mini-links {
  margin-top: 12px;
}

.market-mini-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.market-mini-links a:hover {
  color: var(--text);
}

.market-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.market-links a {
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.market-links a:hover {
  color: var(--text);
  border-color: var(--text);
}

.bracket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.conference-block {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.conference-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.conference-header strong {
  font-size: 1.2rem;
}

.conference-header span {
  color: var(--muted);
}

.series-list {
  display: grid;
  gap: 14px;
}

.series-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.series-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 12px;
}

.series-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.series-team + .series-team {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.series-score {
  color: var(--warm);
  font-weight: 700;
}

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

.live-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.live-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.live-matchup {
  display: grid;
  gap: 10px;
}

.live-team {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.live-team-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-team-score {
  font-weight: 800;
  font-size: 1.15rem;
}

.live-empty {
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(195, 255, 212, 0.16);
  color: var(--muted);
}

.match-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.match-teaser-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.match-teaser-topline,
.match-teaser-probs,
.match-teaser-meta,
.match-teaser-impact,
.match-teaser-scores {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.match-teaser-topline {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.match-teaser-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.match-teaser-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.match-teaser-bar span {
  height: 10px;
  border-radius: 999px;
}

.match-teaser-bar span:first-child {
  justify-self: end;
  background: linear-gradient(90deg, rgba(125, 242, 165, 0.34), rgba(125, 242, 165, 0.9));
}

.match-teaser-bar span:last-child {
  background: linear-gradient(90deg, rgba(211, 255, 112, 0.92), rgba(211, 255, 112, 0.38));
}

.match-teaser-probs strong,
.match-teaser-impact strong {
  color: var(--warm);
  font-weight: 700;
}

.match-teaser-meta,
.match-teaser-impact,
.match-teaser-scores {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.match-teaser-impact {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.match-teaser-scores span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.match-teaser-scores em {
  font-style: normal;
  color: var(--text);
}

.newsletter-band {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 20%, rgba(211, 255, 112, 0.14), transparent 28%),
    linear-gradient(120deg, rgba(125, 242, 165, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(211, 255, 112, 0.18);
}

.newsletter-band h3,
.page-hero h1 {
  font-family: "Instrument Serif", serif;
  letter-spacing: -0.04em;
}

.newsletter-band h3 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  max-width: 11ch;
}

.newsletter-band p {
  max-width: 44rem;
  color: rgba(236, 246, 239, 0.82);
  line-height: 1.65;
}

.band-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.micro-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.sports-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sports-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.sports-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sports-footer-links a:hover {
  color: var(--text);
}

.wc-team-cell,
.wc-team-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wc-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.wc-flag--tbd {
  width: auto;
  height: auto;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 0.64rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: 82px 0 28px;
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 10ch;
}

.page-hero p {
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.72;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-grid .surface-block h3 {
  margin-top: 0;
}

.text-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

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

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.disclaimer-inline {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .sports-hero-grid,
  .grid-two,
  .market-grid,
  .section-head,
  .bracket-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

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

  .match-teaser-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sports-shell,
  .sports-topbar-inner {
    width: min(var(--max), calc(100vw - 28px));
  }

  .sports-topbar-inner {
    padding: 14px 0;
    align-items: flex-start;
  }

  .sports-nav-wrap,
  .hero-actions,
  .band-actions,
  .sports-footer-inner {
    width: 100%;
  }

  .sports-hero {
    min-height: auto;
  }

  .hero-title,
  .page-hero h1 {
    max-width: none;
  }

  .hero-rail,
  .conference-block,
  .surface-block,
  .newsletter-band,
  .legal-section {
    border-radius: 24px;
  }

  .board-meta,
  .board-table th,
  .board-table td {
    padding-left: 14px;
    padding-right: 14px;
  }

  .board-shell { overflow: hidden; }

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

/* ─── Visual Playoff Bracket ─────────────────────────────────────────────── */

/* Root wrapper replaces the old two-column conference-block grid */
.bk-root {
  width: 100%;
}

/* Desktop tree */
.bk-desktop {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

/* Each conference half */
.bk-half {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-conf-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 0 8px;
  font-weight: 600;
}

/* Two sub-brackets (top/bottom half) inside one conference */
.bk-halves {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* One sub-bracket: R1 → R2 → CF flowing left (East) or right (West) */
.bk-conf {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  flex: 1;
}

/* West mirrors: CF → R2 → R1 visually (right-to-left flow) */
.bk-conf--flipped {
  flex-direction: row-reverse;
}

/* Each round column */
.bk-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.bk-col--r1 {
  flex: 1.1 1 0;
}

.bk-col--r2 {
  flex: 1 1 0;
}

.bk-col--cf {
  flex: 1 1 0;
}

.bk-round-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cup column in the center */
.bk-cup-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 168px;
  flex-shrink: 0;
  padding: 0 8px;
}

.bk-cup-col .bk-round-label {
  font-size: 0.7rem;
  color: var(--accent-2);
  white-space: normal;
  text-align: center;
  letter-spacing: 0.1em;
}

.bk-cup-col .bk-slot--cup {
  width: 100%;
}

/* Slot: positions a matchup card within a round column */
.bk-slot {
  padding: 4px 6px;
  position: relative;
}

/* R1 has two slots stacked */
.bk-col--r1 .bk-slot--top {
  padding-bottom: 6px;
}

.bk-col--r1 .bk-slot--bottom {
  padding-top: 6px;
}

/* R2 / CF has a single centred slot */
.bk-col--r2 .bk-slot--mid,
.bk-col--cf .bk-slot--mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Connector lines between rounds */
/* East: line exits right edge of each R1 slot and merges into R2 slot */
.bk-col--r1 .bk-slot::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  border-right: 1px solid var(--border-strong);
  pointer-events: none;
}

.bk-col--r1 .bk-slot--top::after {
  top: 50%;
  bottom: -6px;
  border-bottom: 1px solid var(--border-strong);
}

.bk-col--r1 .bk-slot--bottom::after {
  bottom: 50%;
  top: -6px;
  border-top: 1px solid var(--border-strong);
}

/* Flipped (West): connectors exit left */
.bk-conf--flipped .bk-col--r1 .bk-slot::after {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 1px solid var(--border-strong);
}

/* Horizontal bridge from connector to R2 card */
.bk-col--r2 .bk-slot--mid::before,
.bk-col--cf .bk-slot--mid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  border-top: 1px solid var(--border-strong);
  pointer-events: none;
}

.bk-conf--flipped .bk-col--r2 .bk-slot--mid::before,
.bk-conf--flipped .bk-col--cf .bk-slot--mid::before {
  left: auto;
  right: 0;
}

/* Matchup card */
.bk-matchup {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.bk-matchup:hover {
  border-color: var(--border-strong);
}

.bk-matchup--placeholder {
  background: rgba(255, 255, 255, 0.012);
  border-color: rgba(195, 255, 212, 0.07);
  border-style: dashed;
}

/* Team row inside a matchup */
.bk-team {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  transition: background 0.15s;
}

.bk-team + .bk-team {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bk-team--winner {
  background: rgba(125, 242, 165, 0.09);
}

.bk-team--loser {
  opacity: 0.44;
}

.bk-team--tbd {
  opacity: 0.38;
}

/* Color dot */
.bk-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.bk-dot--tbd {
  background: rgba(195, 255, 212, 0.18) !important;
}

/* Seed number */
.bk-seed {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  min-width: 14px;
  text-align: right;
  flex-shrink: 0;
}

/* Team name */
.bk-tname {
  font-size: 0.82rem;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.bk-tname--tbd {
  color: var(--muted);
  font-style: italic;
}

/* Series score */
.bk-score {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.bk-score--win {
  color: var(--accent);
}

/* Winner badge on top of team row */
.bk-team--winner .bk-tname {
  color: var(--warm);
}

/* ── Mobile bracket (stacked cards) ──────────────────────────────────────── */
.bk-mobile {
  display: none;
}

.bk-mobile-title {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  text-align: center;
  padding-bottom: 16px;
  font-weight: 600;
}

.bk-mobile-conf {
  margin-bottom: 20px;
}

.bk-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.bk-mobile-header strong {
  font-size: 1rem;
}

.bk-mobile-header span {
  font-size: 0.84rem;
  color: var(--muted);
}

.bk-mobile .bk-matchup {
  margin-bottom: 10px;
  border-radius: 16px;
}

.bk-mobile .bk-team {
  padding: 10px 14px;
}

.bk-mobile .bk-tname {
  font-size: 0.9rem;
  white-space: normal;
}

.bk-mobile .bk-score {
  font-size: 0.9rem;
}

/* ── Responsive breakpoints ──────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .bk-cup-col {
    width: 140px;
  }

  .bk-tname {
    font-size: 0.75rem;
  }

  .bk-team {
    padding: 6px 8px;
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .bk-desktop {
    display: none;
  }

  .bk-mobile {
    display: block;
  }
}

/* ─── Sport tiles (hub multi-sport) ──────────────────────────────────────── */

.sport-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .sport-tiles { grid-template-columns: 1fr; }
}

.sport-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sport-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sport-tile-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.sport-tile-label {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.sport-tile-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}

/* NHL — vert gazon existant */
.tile-nhl {
  border-top: 3px solid var(--accent);
}

.tile-nhl:hover {
  border-color: var(--accent);
}

/* World Cup — bleu FIFA */
.tile-wc {
  --tile-wc-accent: #3a9bd5;
  border-top: 3px solid var(--tile-wc-accent);
}

.tile-wc:hover {
  border-color: var(--tile-wc-accent);
}

.tile-wc .sport-tile-kicker {
  color: var(--tile-wc-accent);
  opacity: 1;
}
