*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0a0b15;
  --card: rgba(14, 16, 30, 0.92);
  --text: #f2f6ff;
  --muted: #a4b0d6;
  --accent: #ff4fd8;
  --accent-2: #6cff8d;
  --glow: rgba(124, 86, 255, 0.5);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg) url("assets/slots-bg.svg") center/cover no-repeat fixed;
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(140deg, rgba(6, 7, 15, 0.95), rgba(19, 8, 35, 0.7));
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}

.hero__content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  margin: 0;
}

.hero__lead {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.hero__lead a {
  color: var(--accent-2);
  text-transform: lowercase;
}

.hero__status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.status {
  color: var(--accent);
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff4fd8, #7c56ff);
  color: #0a0b15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  box-shadow: 0 12px 30px rgba(255, 79, 216, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:active {
  transform: translateY(1px);
}

.hero__glow {
  position: absolute;
  inset: 10% -10% auto;
  height: 220px;
  background: radial-gradient(circle at top, var(--glow), transparent 70%);
  filter: blur(10px);
  opacity: 0.8;
}

.content {
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem 3rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 20px 40px rgba(6, 7, 15, 0.45);
  backdrop-filter: blur(8px);
}

.card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.card p {
  margin: 0.6rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.accent-link a {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 5rem 1.5rem 3.5rem;
  }
}
