:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: #12151c;
  --panel-2: #191d26;
  --text: #f8fafc;
  --muted: #a8b0bd;
  --red: #e41f26;
  --gold: #f3b61f;
  --green: #19c37d;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--red);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 7vw, 92px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.92), rgba(8, 9, 13, 0.45)),
    linear-gradient(135deg, rgba(228, 31, 38, 0.34), transparent 38%),
    radial-gradient(circle at 86% 14%, rgba(243, 182, 31, 0.22), transparent 26%),
    #08090d;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(50px, 9vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.section > p,
.split p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.scoreboard {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(18, 21, 28, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.live-row,
.ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #050609;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.match {
  display: grid;
}

.match div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 18px;
  border-top: 1px solid var(--line);
}

.match strong {
  font-size: 64px;
  line-height: 0.85;
}

.team {
  font-size: 22px;
  font-weight: 900;
}

.ticker {
  overflow: hidden;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  white-space: nowrap;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--panel);
}

.section-head {
  max-width: 850px;
  margin-bottom: 32px;
}

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

.feature-grid article,
.media-lane article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
}

.feature-grid p,
.media-lane p,
.revenue-list {
  color: var(--muted);
  line-height: 1.55;
}

.tournament {
  background:
    linear-gradient(180deg, rgba(228, 31, 38, 0.1), transparent 36%),
    #0b0d12;
}

.tournament-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.55fr));
  gap: 14px;
  margin-bottom: 14px;
}

.tournament-card,
.data-panel {
  border: 1px solid var(--line);
  background: var(--panel);
}

.tournament-card {
  min-height: 240px;
  padding: 22px;
}

.main-card {
  background:
    linear-gradient(135deg, rgba(228, 31, 38, 0.28), rgba(25, 195, 125, 0.08)),
    var(--panel);
}

.card-kicker,
.panel-title span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tournament-card h3 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.tournament-card p {
  color: var(--muted);
  line-height: 1.55;
}

.tournament-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 28px;
}

.tournament-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-match {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.next-match span,
.next-match small {
  color: var(--muted);
  text-transform: uppercase;
}

.next-match strong {
  font-size: clamp(22px, 3vw, 34px);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) minmax(260px, 0.7fr);
  gap: 14px;
}

.data-panel {
  overflow: hidden;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #050609;
}

.panel-title strong {
  text-transform: uppercase;
}

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

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

td:nth-child(2),
td:nth-child(3),
th:nth-child(2),
th:nth-child(3) {
  text-align: right;
}

.scorers,
.module-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scorers li,
.module-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.scorers strong {
  color: var(--gold);
  font-size: 24px;
}

.module-list li {
  color: var(--muted);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.stats-panel div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.stats-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
}

.stats-panel span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

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

.revenue-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.revenue-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 750;
}

.streaming {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.98), rgba(8, 9, 13, 0.72)),
    linear-gradient(135deg, rgba(228, 31, 38, 0.45), rgba(25, 195, 125, 0.12)),
    #11151c;
}

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

.timeline div {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  padding: 18px;
  border-top: 4px solid var(--red);
  background: var(--panel);
}

.timeline strong {
  color: var(--gold);
  font-size: 42px;
}

.timeline span {
  font-size: 18px;
  font-weight: 850;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--text);
}

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .media-lane,
  .timeline,
  .tournament-layout,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 46px;
  }

  .feature-grid,
  .media-lane,
  .stats-panel,
  .timeline,
  .tournament-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .ticker {
    align-items: flex-start;
    flex-direction: column;
    white-space: normal;
  }

  .match strong {
    font-size: 52px;
  }
}
