:root {
  color-scheme: dark;
  --bg: #030417;
  --card: rgba(5, 8, 31, 0.82);
  --line: rgba(72, 242, 255, 0.24);
  --ink: #f6fbff;
  --muted: rgba(246, 251, 255, 0.7);
  --cyan: #4df3ff;
  --pink: #ff3fcb;
  --violet: #7a5cff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(90deg, rgba(77, 243, 255, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(77, 243, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(62deg) scale(1.6) translateY(18%);
  transform-origin: 50% 100%;
  opacity: 0.35;
}

body::after {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 63, 203, 0.28), transparent 24rem),
    radial-gradient(circle at 80% 20%, rgba(77, 243, 255, 0.2), transparent 26rem),
    radial-gradient(ellipse at 50% 100%, rgba(122, 92, 255, 0.18), transparent 32rem),
    linear-gradient(rgba(3, 4, 23, 0.2), rgba(3, 4, 23, 0.92));
}

a { color: inherit; }
.container { position: relative; z-index: 1; width: min(720px, calc(100% - 32px)); margin: 0 auto; }

.nav,
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav { padding: 18px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 900; letter-spacing: 0.04em; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 10px; box-shadow: 0 0 18px rgba(77, 243, 255, 0.42); }
.links { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.94rem; }
.links a { text-decoration: none; }
.links a:hover { color: var(--ink); }

.hero,
.page { padding: clamp(44px, 10vw, 92px) 0; }
.hero { text-align: center; }
.icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 36px rgba(255, 63, 203, 0.5),
    0 0 52px rgba(77, 243, 255, 0.26);
}
h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 22px rgba(77, 243, 255, 0.68),
    0 0 42px rgba(255, 63, 203, 0.52);
}
.page h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.lede { max-width: 580px; margin: 18px auto 0; color: var(--muted); font-size: 1.12rem; }
.page > .lede { max-width: none; margin: 10px 0 0; font-size: 0.95rem; }
.store-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.store-actions a { display: inline-flex; width: 135px; transition: opacity 140ms ease, transform 140ms ease, filter 140ms ease; }
.store-actions a:first-child { width: 120px; }
.store-actions a:hover { opacity: 0.94; transform: translateY(-1px); filter: drop-shadow(0 0 14px rgba(77, 243, 255, 0.35)); }
.store-actions img { display: block; width: 100%; height: auto; }
.note { margin-top: 16px; color: var(--muted); font-size: 0.92rem; }

.card {
  margin-top: 26px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), inset 0 0 28px rgba(77, 243, 255, 0.05);
  backdrop-filter: blur(10px);
}
h2 { margin: 28px 0 8px; color: var(--cyan); font-size: 1.25rem; text-shadow: 0 0 12px rgba(77, 243, 255, 0.42); }
h2:first-child { margin-top: 0; }
p,
li { color: var(--muted); }
ul { padding-left: 1.2rem; }
.card a { color: var(--ink); font-weight: 800; }

.footer { padding: 28px 0 38px; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 560px) { .nav, .footer-inner { flex-direction: column; text-align: center; } }
