:root {
  color-scheme: dark;
  --ink: #f7f4ff;
  --muted: #b7b0ce;
  --subtle: #817a99;
  --background: #05030e;
  --surface: #0f0b20;
  --surface-raised: #17112c;
  --surface-soft: #1e1639;
  --border: rgba(178, 147, 255, 0.2);
  --purple: #9c66ff;
  --purple-bright: #b98cff;
  --cyan: #00d9ff;
  --orange: #ff681f;
  --green: #4be3a4;
  --max-width: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(96, 43, 196, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 24%, rgba(0, 165, 255, 0.1), transparent 32rem),
    var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--background);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 3, 14, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.hero {
  overflow: hidden;
  padding: clamp(76px, 10vw, 140px) 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(156, 102, 255, 0.35);
  border-radius: 999px;
  background: rgba(156, 102, 255, 0.1);
  color: #d7c0ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  content: "";
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero h1 span,
.gradient-text {
  background: linear-gradient(110deg, var(--ink) 20%, var(--purple-bright) 60%, var(--cyan));
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(115deg, var(--purple), #7544e9);
  box-shadow: 0 12px 34px rgba(116, 63, 224, 0.28);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.button-secondary:hover {
  border-color: rgba(156, 102, 255, 0.55);
  color: var(--ink);
}

.store-badge {
  display: grid;
  min-width: 168px;
  min-height: 56px;
  align-content: center;
  justify-items: start;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: #0b0912;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease;
}

.store-badge:hover {
  border-color: rgba(156, 102, 255, 0.55);
  transform: translateY(-2px);
}

.store-badge small {
  color: var(--muted);
  font-size: 0.65rem;
}

.store-badge strong {
  font-size: 1.05rem;
}

.hero-note {
  color: var(--subtle);
  font-size: 0.85rem;
}

.game-card {
  position: relative;
  max-width: 430px;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.58), rgba(156, 102, 255, 0.35), rgba(255, 104, 31, 0.6));
  box-shadow: var(--shadow), -30px 10px 80px rgba(0, 157, 255, 0.1), 30px -10px 80px rgba(255, 89, 18, 0.1);
}

.game-card::before,
.game-card::after {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(70px);
  content: "";
}

.game-card::before {
  bottom: -25px;
  left: -45px;
  background: rgba(0, 192, 255, 0.22);
}

.game-card::after {
  top: -35px;
  right: -45px;
  background: rgba(255, 82, 18, 0.18);
}

.game-card-inner {
  display: grid;
  min-height: 540px;
  align-content: space-between;
  padding: 30px;
  overflow: hidden;
  border-radius: 31px;
  background:
    linear-gradient(150deg, rgba(0, 217, 255, 0.06), transparent 36%),
    linear-gradient(325deg, rgba(255, 104, 31, 0.08), transparent 42%),
    #090612;
}

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.game-mark img {
  width: 150px;
  height: 150px;
  border-radius: 36px;
  filter: drop-shadow(-18px 10px 34px rgba(0, 194, 255, 0.14)) drop-shadow(18px 8px 34px rgba(255, 90, 22, 0.12));
}

.game-mark-label {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.game-mark strong {
  font-size: 2.7rem;
  line-height: 1;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.game-stat {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 14px 8px;
  text-align: center;
}

.game-stat + .game-stat {
  border-left: 1px solid var(--border);
}

.game-stat strong {
  font-size: 1rem;
}

.game-stat span {
  color: var(--subtle);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-header {
  display: grid;
  max-width: 760px;
  gap: 18px;
  margin-bottom: 48px;
}

.section-kicker {
  color: var(--purple-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header p,
.legal-intro,
.support-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.step-card,
.plan-card,
.faq-item,
.support-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.feature-card {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  gap: 34px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.feature-card p,
.step-card p,
.plan-card li,
.faq-item p,
.support-card p {
  color: var(--muted);
}

.feature-icon,
.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(156, 102, 255, 0.3);
  border-radius: 14px;
  background: rgba(156, 102, 255, 0.1);
  color: var(--purple-bright);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
  border-color: rgba(0, 217, 255, 0.28);
  background: rgba(0, 217, 255, 0.08);
  color: var(--cyan);
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  border-color: rgba(255, 104, 31, 0.28);
  background: rgba(255, 104, 31, 0.08);
  color: var(--orange);
}

.feature-copy {
  display: grid;
  gap: 10px;
}

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

.step-card {
  display: grid;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.step-number {
  border-radius: 50%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  padding: 32px;
  border-radius: var(--radius-md);
}

.plan-card-featured {
  border-color: rgba(156, 102, 255, 0.52);
  background: linear-gradient(145deg, rgba(156, 102, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.plan-card > p {
  color: var(--subtle);
}

.plan-card .pill {
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
  border-radius: var(--radius-sm);
}

.faq-item summary {
  padding: 21px 0;
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  padding: 0 0 22px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 78px);
  border: 1px solid rgba(156, 102, 255, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 100%, rgba(0, 217, 255, 0.12), transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(255, 104, 31, 0.12), transparent 40%),
    linear-gradient(145deg, rgba(156, 102, 255, 0.12), rgba(255, 255, 255, 0.015));
  text-align: center;
}

.cta-inner {
  display: grid;
  max-width: 760px;
  justify-items: center;
  gap: 22px;
  margin: auto;
}

.cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--subtle);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-hero,
.support-hero {
  padding: 86px 0 54px;
}

.legal-hero .container,
.support-hero .container {
  display: grid;
  max-width: 900px;
  gap: 20px;
}

.legal-hero h1,
.support-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.updated {
  color: var(--subtle);
  font-size: 0.9rem;
}

.legal-layout,
.support-layout {
  display: grid;
  max-width: 900px;
  gap: 18px;
}

.legal-section,
.support-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-section h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.text-link {
  color: var(--purple-bright);
  text-decoration: underline;
  text-decoration-color: rgba(185, 140, 255, 0.4);
  text-underline-offset: 3px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.support-card h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.support-card-wide {
  grid-column: 1 / -1;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  display: grid;
  max-width: 620px;
  justify-items: center;
  gap: 20px;
}

.not-found-code {
  color: var(--purple-bright);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #0b0718;
    box-shadow: var(--shadow);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links a {
    padding: 11px 10px;
  }

  .hero {
    padding-top: 64px;
  }

  .feature-grid,
  .steps-grid,
  .plans-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card-wide {
    grid-column: auto;
  }

  .section {
    padding: 78px 0;
  }

  .game-card-inner {
    min-height: 500px;
    padding: 24px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.9rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .game-mark img {
    width: 126px;
    height: 126px;
  }

  .game-card-inner {
    min-height: 460px;
  }

  .game-stat span {
    font-size: 0.55rem;
  }

  .cta,
  .legal-section,
  .support-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.check-list li::before {
  content: "\2713";
}
