:root {
  color-scheme: dark;
  --bg: #090507;
  --bg-soft: #12070a;
  --panel: #190b10;
  --panel-strong: #241017;
  --ink: #fff8f4;
  --muted: #d8bcc2;
  --muted-2: #a88991;
  --red: #e6274f;
  --red-dark: #a90d2f;
  --gold: #f7bd63;
  --green: #79d6a2;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 64px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 5, 7, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-link { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }
.brand-logo { display: block; width: 170px; height: auto; }
.desktop-nav { display: none; align-items: center; gap: 4px; }
.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: rgba(255, 255, 255, 0.06); color: #fff; }
.desktop-nav .nav-cta { margin-left: 6px; background: var(--red); color: #fff; }
.desktop-nav .nav-cta:hover { background: #f23760; }
.menu-toggle {
  flex: 0 0 44px;
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #1a0b10;
  color: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 9px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle span { margin-block: 4px; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.menu-scrim { position: fixed; z-index: 109; inset: 64px 0 0; display: none; background: rgba(0, 0, 0, 0.64); }
.menu-scrim[data-open="true"] { display: block; }
.mobile-menu {
  position: fixed;
  z-index: 110;
  top: 64px;
  right: 0;
  bottom: 0;
  width: min(88vw, 390px);
  overflow-y: auto;
  transform: translateX(105%);
  border-left: 1px solid var(--line);
  background: #10070a;
  padding: 18px 18px calc(26px + env(safe-area-inset-bottom));
  transition: transform 220ms ease;
}
.mobile-menu[data-open="true"] { transform: none; }
.mobile-menu nav { display: grid; gap: 7px; }
.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 760;
  text-decoration: none;
}
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { border-color: var(--line); background: rgba(255, 255, 255, 0.04); color: #fff; }
.mobile-menu .menu-download { margin-top: 10px; justify-content: center; background: var(--red); color: #fff; }

.hero {
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  padding-block: 16px 24px;
  background:
    radial-gradient(circle at 84% 5%, rgba(230, 39, 79, 0.24), transparent 33%),
    radial-gradient(circle at 8% 84%, rgba(247, 189, 99, 0.09), transparent 26%);
}
.hero-grid { display: grid; gap: 14px; align-items: center; }
.hero-copy { min-width: 0; text-align: center; }
.eyebrow {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; text-wrap: balance; }
h1 { margin: 0; font-size: clamp(36px, 9.4vw, 68px); letter-spacing: -0.048em; }
h2 { margin: 0 0 16px; font-size: clamp(28px, 7vw, 45px); letter-spacing: -0.035em; }
h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.02em; }
.hero-lead { max-width: 640px; margin: 10px auto 14px; color: var(--muted); font-size: 14px; line-height: 1.48; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0 22px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(180deg, #f3355e, var(--red-dark)); box-shadow: 0 13px 30px rgba(230, 39, 79, 0.24); color: #fff; }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.04); color: #fff; }
.button-small { min-height: 44px; padding-inline: 18px; border-radius: 13px; }
.hero-proof { display: block; margin-top: 7px; color: var(--muted-2); font-size: 11px; line-height: 1.35; }
.screens { display: flex; justify-content: center; align-items: flex-start; gap: 10px; }
.screen-card {
  width: clamp(120px, 36vw, 148px);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(247, 189, 99, 0.42);
  border-radius: 17px;
  background: #14090c;
  box-shadow: var(--shadow);
}
.screen-card:nth-child(2) { margin-top: 17px; }
.screen-card img { display: block; width: 100%; height: auto; }
.interface-note { max-width: 430px; margin: 11px auto 0; color: var(--muted-2); font-size: 11px; text-align: center; }

.status-band { border-block: 1px solid var(--line); background: #100709; }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.status-item { min-width: 0; padding: 15px 8px; text-align: center; }
.status-item + .status-item { border-left: 1px solid var(--line); }
.status-label { display: block; color: var(--muted-2); font-size: 10px; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; }
.status-value { display: block; margin-top: 2px; color: #fff; font-size: 13px; font-weight: 820; }

.section { padding-block: 68px; }
.section-dark { border-block: 1px solid rgba(255, 255, 255, 0.06); background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 26px; }
.section-head p, .lead, .body-copy p, .card p, .policy-copy p, .policy-copy li { color: var(--muted); }
.section-head p, .lead { margin: 0; font-size: 17px; }
.grid-2, .grid-3, .steps, .game-grid, .link-grid { display: grid; gap: 14px; }
.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  padding: 22px;
}
.card p { margin: 0; }
.card-link { display: block; text-decoration: none; }
.card-link:hover { border-color: rgba(230, 39, 79, 0.64); background: rgba(230, 39, 79, 0.06); }
.text-link { color: var(--gold); font-weight: 790; text-underline-offset: 4px; }
.icon-dot { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 11px; background: rgba(230, 39, 79, 0.15); color: #ff6c8b; font-weight: 900; }
.step { position: relative; padding-top: 54px; }
.step-number { position: absolute; top: 20px; left: 22px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; }
.split { display: grid; gap: 22px; align-items: center; }
.check-list, .plain-list { margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding: 9px 0 9px 30px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plain-list li::before { content: "•"; position: absolute; left: 5px; color: var(--red); font-weight: 900; }
.notice { border-left: 3px solid var(--gold); border-radius: 0 15px 15px 0; background: rgba(247, 189, 99, 0.08); padding: 16px 18px; color: var(--muted); }

.game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.game-card { overflow: hidden; padding: 0; }
.game-card picture, .game-card img { display: block; width: 100%; }
.game-card img { aspect-ratio: 534 / 466; object-fit: cover; }
.game-copy { padding: 15px; }
.game-copy h3 { font-size: 17px; }
.game-copy p { font-size: 13px; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.faq-list summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 17px; cursor: pointer; font-weight: 790; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; color: var(--gold); font-size: 24px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 17px 17px; color: var(--muted); }
.faq-answer p { margin: 0; }

.cta-panel { border: 1px solid rgba(230, 39, 79, 0.35); border-radius: 28px; background: radial-gradient(circle at 85% 0, rgba(230, 39, 79, 0.2), transparent 38%), #15090d; padding: 30px; text-align: center; }
.cta-panel p { max-width: 650px; margin: 0 auto 20px; color: var(--muted); }
.cta-panel h2 { margin-bottom: 10px; }

.breadcrumbs { padding-block: 18px 4px; color: var(--muted-2); font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 7px; color: #71555c; }
.breadcrumbs a { color: var(--muted); text-underline-offset: 3px; }
.page-hero { padding-block: 50px 62px; background: radial-gradient(circle at 88% 0, rgba(230, 39, 79, 0.18), transparent 35%); }
.page-hero .lead { max-width: 760px; margin: 16px 0 24px; }
.page-hero h1 { max-width: 900px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.body-copy { max-width: 790px; }
.body-copy h2 { margin-top: 44px; }
.body-copy h2:first-child { margin-top: 0; }
.body-copy h3 { margin-top: 28px; }
.body-copy p { margin: 0 0 16px; }
.body-copy a { color: var(--gold); }
.policy-copy { max-width: 820px; }
.policy-copy h2 { margin-top: 45px; }
.policy-copy h2:first-child { margin-top: 0; }
.policy-copy h3 { margin-top: 28px; }
.policy-copy ul { padding-left: 22px; }

.site-footer { border-top: 1px solid var(--line); background: #080405; padding: 48px 0 104px; }
.footer-grid { display: grid; gap: 30px; }
.footer-brand p { max-width: 360px; margin: 14px 0 0; color: var(--muted-2); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.footer-links h2 { margin: 0 0 12px; color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a { min-height: 36px; display: flex; align-items: center; color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 12px; }

.sticky-download {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(calc(130% + 30px));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(20, 8, 12, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  padding: 9px;
  backdrop-filter: blur(18px);
  transition: transform 220ms ease;
}
.sticky-download[data-visible="true"] { transform: none; }
.sticky-copy { min-width: 0; padding-left: 5px; }
.sticky-copy strong, .sticky-copy span { display: block; }
.sticky-copy strong { font-size: 13px; }
.sticky-copy span { color: var(--muted-2); font-size: 10px; }
.sticky-download .button { flex: 0 0 auto; }

:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }

@media (min-width: 700px) {
  .shell { width: min(100% - 48px, var(--max)); }
  .grid-2, .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.1fr 1.4fr; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sticky-download { right: 22px; left: auto; width: 390px; }
}

@media (min-width: 920px) {
  .site-header { height: 72px; }
  .desktop-nav { display: flex; }
  .menu-toggle, .menu-scrim, .mobile-menu { display: none !important; }
  .hero { min-height: calc(100svh - 72px); padding-block: 40px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 410px; gap: 44px; }
  .hero-copy { text-align: left; }
  .hero-lead { margin-left: 0; }
  .screens { gap: 18px; }
  .screen-card { width: 188px; border-radius: 22px; }
  .interface-note { margin-left: auto; margin-right: auto; }
  .section { padding-block: 92px; }
  .page-hero { padding-block: 72px 84px; }
  .site-footer { padding-bottom: 72px; }
}

@media (min-width: 1180px) {
  .game-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
