:root {
  color-scheme: dark;
  --bg: #070a12;
  --surface: #0d1422;
  --surface-2: #121b2c;
  --surface-3: #172237;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7fbff;
  --muted: #9aa8bd;
  --green: #20e070;
  --yellow: #ffd43b;
  --red: #ff5263;
  --cyan: #29d3ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(41, 211, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(255, 212, 59, 0.12), transparent 25%),
    linear-gradient(180deg, #070a12 0%, #0a1020 55%, #070a12 100%);
}

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

.app-shell { min-height: 100vh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(14px, 4vw, 42px);
  background: rgba(7, 10, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.brand strong,
.brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
}

.nav a,
.icon-button,
.text-link {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.nav a:hover,
.icon-button:hover,
.text-link:hover {
  border-color: rgba(32, 224, 112, 0.7);
  background: rgba(32, 224, 112, 0.1);
}

main {
  padding: 28px clamp(14px, 4vw, 48px) 64px;
}

.team-favorites-bar {
  position: sticky;
  top: 71px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px clamp(14px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.82);
  backdrop-filter: blur(14px);
}

.team-favorites-bar:empty {
  display: none;
}

.team-strip-label {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green) rgba(255,255,255,0.08);
  width: 100%;
  padding-bottom: 2px;
}

.filter-reset,
.team-fav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.filter-reset {
  flex: 0 0 auto;
  font-weight: 900;
}

.filter-reset:disabled {
  opacity: 0.45;
  cursor: default;
}

.team-fav img,
.flag-fallback {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
}

.flag-fallback {
  display: grid;
  place-items: center;
  background: var(--team);
  color: white;
  font-size: 9px;
  font-size: 12px;
  font-weight: 900;
}


.team-fav.active {
  border-color: var(--yellow);
  background: rgba(255, 212, 59, 0.12);
}

.home-hero {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(32,224,112,0.18), transparent 26%),
    linear-gradient(180deg, rgba(18,27,44,0.95), rgba(7,10,18,0.95));
  box-shadow: var(--shadow);
  text-align: center;
}

.wrldcp-logo {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.wrldcp-logo span {
  font-size: clamp(36px, 8vw, 96px);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: 0;
}

.wrldcp-logo i {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(7,10,18,0.8) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(7,10,18,0.8) 47% 53%, transparent 53%),
    radial-gradient(circle, white 0 58%, transparent 59%),
    var(--green);
  box-shadow: 0 0 34px rgba(32,224,112,0.35);
}

.home-hero p {
  margin: 0;
  color: var(--muted);
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.hero-copy {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(7, 10, 18, 0.9), rgba(7, 10, 18, 0.42)),
    url("https://images.unsplash.com/photo-1517466787929-bc90951d0974?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-copy h1,
.page-title h1 {
  margin: 6px 0 10px;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p,
.page-title p {
  max-width: 760px;
  margin: 0;
  color: #d3dbea;
  font-size: 19px;
}

.ticker-panel,
.panel,
.match-card,
.bracket-node,
.lineup-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 27, 44, 0.96), rgba(13, 20, 34, 0.96));
  box-shadow: var(--shadow);
}

.ticker-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
}

.ticker-panel strong {
  font-size: 30px;
}

.mini-label,
.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.quota-line,
.odds-strip {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.odds-strip span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #071b11;
  color: var(--green);
  font-weight: 850;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin: 26px 0 12px;
}

.section-head.tight {
  margin: 0 0 12px;
}

.section-head h2,
.panel h2 {
  margin: 0;
  font-size: 28px;
}

.panel {
  padding: 16px;
}

.match-stack,
.cards-grid,
.groups-grid {
  display: grid;
  gap: 12px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.groups-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.match-card {
  min-height: 176px;
  padding: 14px;
  display: grid;
  gap: 12px;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease;
}

.carousel-section {
  margin-top: 8px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.arrow-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

.arrow-button:hover {
  border-color: var(--green);
  color: var(--green);
}

.match-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 315px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green) rgba(255,255,255,0.08);
  padding: 2px 2px 12px;
}

.match-rail .match-card {
  scroll-snap-align: start;
}

.mini-match-card {
  min-height: 212px;
}

.match-card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 211, 255, 0.75);
}

.featured .match-card {
  border-color: rgba(32, 224, 112, 0.5);
}

.match-meta,
.status-line,
.event-row,
.node-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
}

.status-pill.live {
  color: #05110b;
  background: var(--green);
}

.status-pill.done {
  color: #09121f;
  background: var(--cyan);
}

.group-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(41,211,255,0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
}

.teams-board {
  display: grid;
  gap: 8px;
}

.team-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--team) 20%, transparent), rgba(255,255,255,0.03));
  border: 1px solid color-mix(in srgb, var(--team) 45%, transparent);
}

.team-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swatch {
  width: 12px;
  height: 26px;
  border-radius: 3px;
  background: var(--team);
  flex: 0 0 auto;
}

.swatch.tiny {
  display: inline-block;
  width: 9px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.swatch.big {
  width: 18px;
  height: 50px;
}

.score {
  text-align: right;
  font-size: 34px;
  font-weight: 950;
}

.favorite {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  cursor: pointer;
}

.favorite.active {
  color: #09121f;
  background: var(--yellow);
  border-color: var(--yellow);
}

.page-title {
  padding: 24px 0 10px;
}

.home-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: 14px;
  margin-top: 26px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.empty-state.small {
  padding: 12px;
}

.timeline {
  display: grid;
  gap: 8px;
}

.event-row {
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.broadcast-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.broadcast-row.compact {
  min-height: 28px;
}

.channel-logo {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  font-weight: 950;
  font-size: 13px;
}

.channel-logo.bein {
  background: #f4f1ff;
  color: #4c1d95;
}

.channel-logo.m6 {
  background: #ffffff;
  color: #111827;
}

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

.group-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--yellow);
  font-weight: 900;
}

.group-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.group-table th,
.group-table td {
  padding: 9px 6px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.group-table th:first-child,
.group-table td:first-child {
  text-align: left;
}

.match-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 27, 44, 0.96), rgba(7, 10, 18, 0.96));
  box-shadow: var(--shadow);
}

.live-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.team-feed,
.possession-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 27, 44, 0.96), rgba(13, 20, 34, 0.96));
  padding: 16px;
}

.team-feed {
  border-color: color-mix(in srgb, var(--team) 45%, transparent);
}

.team-feed h2 {
  margin: 0 0 12px;
  color: var(--team);
}

.team-event {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.team-event span {
  color: var(--green);
  font-weight: 950;
}

.team-event small {
  grid-column: 2;
  color: var(--muted);
}

.team-event.goal span {
  color: var(--green);
}

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

.team-event.cancelled strong {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.team-event.cancelled small {
  color: var(--text);
}

.var-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  margin-right: 6px;
  padding: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
}

.team-event.yellow span {
  color: var(--yellow);
}

.team-event.red span {
  color: var(--red);
}

.team-event:not(.goal):not(.yellow):not(.red) span {
  color: var(--text);
}

.possession-card {
  display: grid;
  align-content: center;
  gap: 12px;
}

.possession-values {
  display: flex;
  justify-content: space-between;
  font-size: 32px;
}

.detail-team {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.detail-team.right {
  flex-direction: row-reverse;
  text-align: right;
}

.detail-team strong {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.center-score {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 180px;
}

.scoreline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 950;
  line-height: 0.95;
}

.scoreline i {
  color: var(--muted);
  font-style: normal;
}

.penalty-line,
.penalty-alert {
  color: var(--yellow);
  font-weight: 850;
}

.penalty-alert {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(255, 212, 59, 0.4);
  border-radius: 8px;
  background: rgba(255, 212, 59, 0.08);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.stat-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
}

.stat-row > strong:last-child {
  text-align: right;
}

.stat-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.split-bar {
  display: flex;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.split-bar.big {
  height: 18px;
}

.split-bar span,
.split-bar i {
  display: block;
  min-width: 3px;
}

.lineups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.lineup-card {
  padding: 12px;
}

.bench-panel {
  margin-top: 12px;
}

.bench-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.bench-panel summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.bench-panel[open] summary {
  margin-bottom: 8px;
}


.lineup-card h3 {
  margin: 0 0 8px;
}

.lineup-card h4 {
  margin: 16px 0 8px;
  color: var(--green);
}

.player-list,
.bench-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.player-list li,
.bench-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 1px 8px;
  align-items: center;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.player-list li span,
.bench-list li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 900;
}

.player-list li strong,
.bench-list li strong {
  font-size: 13px;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-list li small,
.bench-list li small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.15;
}

.bench-list li.used {
  border-color: rgba(32,224,112,0.35);
  background: rgba(32,224,112,0.08);
}

.bracket-title {
  text-align: center;
}

.bracket-scroll {
  overflow-x: auto;
  padding: 12px 0 22px;
  scrollbar-color: var(--green) rgba(255,255,255,0.08);
}

.bracket-lanes {
  display: grid;
  grid-template-columns: 300px 300px 300px 300px 330px;
  gap: 12px;
  min-width: 1580px;
  align-items: start;
}

.bracket-round {
  display: grid;
  align-content: start;
}

.bracket-round h2 {
  position: sticky;
  top: 76px;
  z-index: 2;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7,10,18,0.92);
}

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

.round-round-of-32 .round-stack {
  padding-top: 72px;
}

.round-round-of-16 .round-stack {
  padding-top: 64px;
  gap: 86px;
}

.round-quarterfinal .round-stack {
  padding-top: 146px;
  gap: 250px;
}

.round-semifinal .round-stack {
  padding-top: 312px;
  gap: 580px;
}

.round-final .round-stack {
  padding-top: 660px;
}

.cup {
  display: grid;
  place-items: center;
  align-content: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow), #a46b00);
  color: #09121f;
  text-transform: uppercase;
  font-weight: 950;
  box-shadow: 0 0 50px rgba(255, 212, 59, 0.28);
}

.cup span,
.cup strong {
  display: block;
  line-height: 1;
}

.cup span {
  font-size: 13px;
}

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

.bracket-node {
  position: relative;
  min-height: 118px;
  padding: 12px;
}

.bracket-node::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.round-final .bracket-node::after {
  display: none;
}

.node-top {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.node-top strong {
  color: var(--green);
}

.slot {
  min-height: 34px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  font-weight: 850;
}

.slot + .slot {
  margin-top: 6px;
}

.final-node {
  border-color: rgba(255, 212, 59, 0.6);
}

.third-node {
  opacity: 0.82;
}

@media (max-width: 980px) {
  .hero-board,
  .home-bottom,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .match-hero {
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto) minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .detail-team,
  .detail-team.right {
    justify-content: center;
    text-align: center;
  }

  .detail-team strong {
    font-size: clamp(18px, 5vw, 34px);
  }

  .center-score {
    min-width: 0;
  }

  .scoreline {
    font-size: clamp(42px, 12vw, 72px);
  }

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

  .live-breakdown .team-feed {
    order: 1;
  }

  .live-breakdown .possession-card {
    grid-column: 1 / -1;
    order: 2;
  }

}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-favorites-bar {
    top: 124px;
  }

  main {
    padding-inline: 10px;
  }

  .hero-copy {
    min-height: 250px;
  }

  .hero-copy h1,
  .page-title h1 {
    font-size: 42px;
  }

  .match-card {
    min-height: 158px;
  }

  .team-row {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .score {
    font-size: 25px;
  }

  .match-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 12px 10px;
    padding: 14px 12px;
  }

  .detail-team,
  .detail-team.right {
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    text-align: left;
  }

  .detail-team.right {
    justify-content: flex-start;
    text-align: right;
  }

  .detail-team strong {
    min-width: 0;
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .swatch.big {
    width: 14px;
    height: 32px;
  }

  .center-score {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 6px;
    padding-top: 4px;
  }

  .center-score p {
    max-width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
  }

  .scoreline {
    gap: 9px;
    font-size: clamp(42px, 14vw, 58px);
  }

  .live-breakdown {
    gap: 10px;
  }

  .team-feed,
  .possession-card {
    padding: 12px;
  }

  .team-feed h2 {
    font-size: 16px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-rail {
    grid-auto-columns: minmax(245px, 84vw);
  }

  .bracket-lanes {
    grid-template-columns: repeat(5, 280px);
    min-width: 1460px;
  }

  .round-round-of-16 .round-stack {
    padding-top: 50px;
    gap: 76px;
  }

  .round-quarterfinal .round-stack {
    padding-top: 126px;
    gap: 224px;
  }

  .round-semifinal .round-stack {
    padding-top: 288px;
    gap: 528px;
  }

  .round-final .round-stack {
    padding-top: 604px;
  }
}
