:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f8fafc;
  --dark: #0f172a;
  --cyan: #06b6d4;
  --green: #16a34a;
  --rose: #e11d48;
  --amber: #f59e0b;
  --shadow: 0 20px 60px rgba(15, 23, 42, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--dark);
  color: white;
  font-size: 22px;
  font-weight: 900;
}

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

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}

.nav {
  display: flex;
  gap: 24px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--rose);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.btn.primary {
  background: var(--dark);
  color: white;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 6vw 92px;
  color: white;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, .94), rgba(15, 23, 42, .78)),
    radial-gradient(circle at 72% 22%, rgba(6, 182, 212, .9), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #164e63 50%, #111827 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #67e8f9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--cyan);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.scoreboard {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(15, 23, 42, .7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.board-head span {
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
}

.match {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.match:last-child {
  border-bottom: 0;
}

.match strong {
  display: block;
  margin-bottom: 6px;
}

.match p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
}

.badge {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 182, 212, .14);
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.badge.hot {
  background: rgba(225, 29, 72, .14);
  color: #fda4af;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: 34px 6vw;
  background: white;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(24px, 4vw, 38px);
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 84px 6vw;
}

.section-title {
  margin-bottom: 30px;
}

.section-title p {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.14;
}

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

.card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.card h3 {
  margin: 18px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.card p,
.split p,
.about p {
  color: var(--muted);
  line-height: 1.8;
}

.card footer {
  margin-top: 24px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.sport {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.football {
  background: rgba(22, 163, 74, .12);
  color: var(--green);
}

.basket {
  background: rgba(245, 158, 11, .13);
  color: #b45309;
}

.esport {
  background: rgba(6, 182, 212, .12);
  color: #0891b2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  background: var(--soft);
}

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

.analysis-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.analysis-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.analysis-list span {
  color: var(--muted);
  line-height: 1.7;
}

.about {
  max-width: 1100px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6vw;
  background: var(--dark);
  color: white;
}

.footer p {
  margin: 6px 0 0;
  color: #cbd5e1;
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-cta {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding: 54px 5vw 64px;
  }

  .scoreboard {
    min-width: 0;
  }

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

  .stats article,
  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer {
    flex-direction: column;
  }
}
