:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7fafc;
  background: #0d1117;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(16, 185, 129, .18), transparent 24rem),
    linear-gradient(135deg, #10141c 0%, #151922 46%, #20141d 100%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

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

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #31d2ac, #ff6b6b);
  box-shadow: 0 0 28px rgba(49, 210, 172, .35);
}

nav a {
  color: #c9d4df;
  font-size: 14px;
  font-weight: 700;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.page {
  min-height: calc(100vh - 150px);
  padding-top: 72px;
}

.page.narrow {
  max-width: 780px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 38px;
  min-height: calc(100vh - 72px);
  padding: 42px 0 34px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #31d2ac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #c7d0da;
  font-size: 19px;
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: #31d2ac;
  color: #06120f;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .22);
  color: #f7fafc;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .42);
}

.hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

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

.stats {
  margin: -12px 0 66px;
}

.stats article,
.game-grid article,
.event-list article {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.stats article {
  padding: 22px;
}

.stats strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: #aeb9c5;
  font-weight: 700;
}

.content-band,
.schedule {
  padding: 54px 0 10px;
}

.commentator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 30px;
  margin: 10px 0 56px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 210, 172, .14), rgba(255, 107, 107, .12)),
    rgba(255, 255, 255, .06);
}

.commentator img {
  display: block;
  width: 100%;
  max-width: 320px;
  justify-self: end;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
}

.commentator .lead {
  margin-bottom: 18px;
}

.slogan {
  display: inline-flex;
  margin-bottom: 0;
  padding: 12px 14px;
  border-left: 3px solid #31d2ac;
  background: rgba(0, 0, 0, .22);
  color: #fff4dc;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.game-grid article {
  min-height: 210px;
  padding: 24px;
}

.chip {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 107, .16);
  color: #ffb4a9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.game-grid p,
.event-list p {
  margin-bottom: 0;
  color: #b9c3cf;
  line-height: 1.55;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 22px;
}

time {
  color: #31d2ac;
  font-weight: 900;
}

.text-block {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.text-block h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.text-block p {
  color: #c7d0da;
  line-height: 1.65;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: #aeb9c5;
  font-size: 14px;
}

.footer a {
  color: #d7e0ea;
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 300px;
  }

  .stats,
  .game-grid {
    grid-template-columns: 1fr;
  }

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

  .commentator img {
    justify-self: start;
  }

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

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .event-list article {
    grid-template-columns: 1fr;
  }
}
