:root {
  color-scheme: dark;
  --bg-top: #0a0c10;
  --bg-bottom: #1f1f1f;
  --surface: rgba(26, 35, 50, 0.92);
  --surface-solid: #1a2332;
  --text: #f2f5f9;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-soft: rgba(255, 255, 255, 0.42);
  --live-green: #66bb6a;
  --accent: #66bb6a;
  --border: rgba(255, 255, 255, 0.1);
  --max-width: 44rem;
  --header-max: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer,
.page-main,
.hero {
  width: min(100%, var(--header-max));
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.site-brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.site-brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.brand-mvp {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
}

.brand-divider {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.22);
}

.brand-live {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--live-green);
}

.brand-sports {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
}

.hero {
  flex: 1;
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  isolation: isolate;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(10, 12, 16, 0.94) 0%,
    rgba(10, 12, 16, 0.78) 42%,
    rgba(10, 12, 16, 0.45) 100%
  );
  pointer-events: none;
}

.sport-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 100%;
}

.sport-tile {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.sport-tile span {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-block {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.section-heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.section-copy {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 38rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1.25rem;
}

.carousel-slide img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.carousel-slide figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
}

.carousel-button {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.carousel-dots {
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: var(--live-green);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}

.faq-item h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #fff;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-item p + p {
  margin-top: 0.65rem;
}

.support-card {
  margin-top: 1.25rem;
}

.hero-copy {
  max-width: 38rem;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-logo img {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-mark .brand-mvp {
  font-size: clamp(2rem, 6vw, 2.6rem);
}

.hero-mark .brand-live {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
}

.hero-mark .brand-sports {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
}

.hero-tagline {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 28rem;
}

.hero-lead {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-bottom: 0.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(180deg, #74c37a 0%, #4caf50 100%);
  color: #081208;
  box-shadow: 0 10px 24px rgba(76, 175, 80, 0.28);
}

.button-primary:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: #fff;
}

.button-secondary:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.85rem;
}

.feature-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  backdrop-filter: blur(8px);
}

.feature-pill strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
}

.feature-pill span {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-main {
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.15;
}

.page-subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.page-meta {
  margin: 0.85rem 0 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}

.card p:first-child {
  margin-top: 0;
}

.card p:last-child {
  margin-bottom: 0;
}

section + section {
  margin-top: 1.5rem;
}

section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #fff;
}

ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.35rem;
}

.site-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-note {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .sport-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .sport-tile:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sport-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .sport-tile:nth-child(n + 3) {
    display: none;
  }

  .hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .hero-logo img {
    width: 72px;
    height: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}