* {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --panel: rgba(255, 255, 255, 0.06);
  --text: #f8fbff;
  --muted: #a9b8ca;
  --accent: #f7b500;
  --accent2: #41d6c3;
  --line: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 20%, rgba(65, 214, 195, 0.10), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(247, 181, 0, 0.10), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0b1728 55%, #07111f 100%);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #101010;
  background: linear-gradient(135deg, var(--accent), #ffd25b);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(247, 181, 0, 0.22);
}

.status {
  color: var(--muted);
  font-size: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 9px 14px;
  border-radius: 999px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 90px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 980px;
}

h1 span {
  color: var(--accent);
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  margin: 34px 0 28px;
}

.sports {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.sports span {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 16px;
  color: #dbe6f2;
  font-size: 14px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(10px);
}

.coming-soon strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.coming-soon p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 0 0 rgba(65,214,195,0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(65,214,195,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(65,214,195,0); }
  100% { box-shadow: 0 0 0 0 rgba(65,214,195,0); }
}

.footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #718096;
  font-size: 13px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.glow-one {
  width: 280px;
  height: 280px;
  background: var(--accent);
  right: -80px;
  top: 18%;
}

.glow-two {
  width: 260px;
  height: 260px;
  background: var(--accent2);
  left: -100px;
  bottom: 8%;
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    padding-top: 18px;
  }

  .status {
    display: none;
  }

  .content {
    padding: 50px 0 70px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .intro {
    font-size: 17px;
    margin-top: 28px;
  }

  .footer {
    flex-direction: column;
  }
}
