:root {
  --bg: #07090d;
  --panel: rgba(17, 22, 31, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --muted: #9ba4b5;
  --red: #c9152c;
  --red-2: #ff4d62;
  --glow: rgba(255, 77, 98, 0.24);
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --max: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,77,98,.11), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,77,98,.08), transparent 25%),
    var(--bg);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.glow {
  position: fixed;
  z-index: -3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .6;
  background: var(--glow);
}
.glow-one { top: -120px; left: -120px; }
.glow-two { right: -120px; bottom: -120px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 13, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand strong,
.brand span,
.hero h1,
.card h3,
.section-head h2,
.status-card h2 {
  font-family: Rajdhani, sans-serif;
}
.brand strong { display: block; font-size: 1.3rem; }
.brand span { display: block; font-size: .85rem; color: var(--muted); }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(201, 21, 44, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
  transition: color .25s ease;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  box-shadow: 0 16px 30px rgba(201, 21, 44, 0.3);
}
.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: var(--line-strong);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(.5) contrast(1.06) saturate(.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,9,13,.88) 0%, rgba(7,9,13,.66) 48%, rgba(7,9,13,.5) 100%),
    linear-gradient(180deg, rgba(7,9,13,.25) 0%, rgba(7,9,13,.55) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-copy { padding: 42px; }
.hero-panel { padding: 22px; }
.status-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(201, 21, 44, 0.18), rgba(255,255,255,.03));
  border: 1px solid rgba(255, 77, 98, 0.25);
}
.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 98, 0.35);
  background: rgba(201, 21, 44, 0.12);
  color: #ffd8de;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow { padding: 10px 16px; }
.pill { padding: 8px 12px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #58ff93;
  box-shadow: 0 0 14px rgba(88,255,147,.8);
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .9;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  color: var(--red-2);
}
.hero p,
.card p,
.status-card p,
.rules-list li,
.muted,
.feature-list li {
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.stats strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.stats span { color: var(--muted); font-size: .9rem; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 12px rgba(255, 77, 98, .7);
}

.section { padding: 32px 0 80px; }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { margin-bottom: 24px; }
.section-kicker {
  display: inline-block;
  color: var(--red-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 8px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cards {
  display: grid;
  gap: 22px;
}
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  padding: 28px;
  transition: transform .25s var(--ease), border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 98, 0.3);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.8rem;
}
.text-link {
  color: var(--red-2);
  font-weight: 700;
}
.map-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd8de;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rules-card { padding: 14px 28px; }
.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rules-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
}
.rules-list li:last-child { border-bottom: 0; }
.rules-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 12px rgba(255, 77, 98, .6);
}
.footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero-grid,
  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav {
    align-items: flex-start;
    padding: 16px 0;
    flex-direction: column;
  }
  .hero {
    padding-top: 36px;
    min-height: auto;
  }
  .hero-copy { padding: 26px; }
  .stats { grid-template-columns: 1fr; }
  .status-top,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
