:root {
  --ink: #f8f5ff;
  --ink-soft: #c6bdd8;
  --ink-dim: #9186a8;
  --night: #090611;
  --night-2: #120a20;
  --panel: #1a1029;
  --panel-2: #231438;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #ffc84a;
  --gold-deep: #d88b0c;
  --rose: #f44f9a;
  --violet: #9254ff;
  --emerald: #34d399;
  --saffron: #ff9a3d;
  --green: #28b36b;
  --text: var(--ink);
  --muted: var(--ink-soft);
  --bg: var(--night);
  --card: var(--panel);
  --border: var(--line);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 4%, rgba(146, 84, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(244, 79, 154, 0.12), transparent 27rem),
    var(--night);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.font-head, h1, h2, h3, .display { font-family: var(--display); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; color: #120a20; background: var(--gold); border-radius: 10px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.age-strip {
  height: 32px;
  color: #d8d0e5;
  background: #08050e;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.age-strip .container { height: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; }
.age-strip span { white-space: nowrap; }
.age-strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 6, 17, 0.86);
  border-bottom: 1px solid rgba(255, 200, 74, 0.15);
  backdrop-filter: blur(18px);
}
.site-header::after { content: ""; display: block; height: 2px; background: linear-gradient(90deg, var(--saffron) 0 32%, rgba(255,255,255,.75) 32% 66%, var(--green) 66%); opacity: .65; }
.site-header__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand__mark { width: 76px; height: 48px; object-fit: contain; filter: drop-shadow(0 5px 13px rgba(130, 67, 255, .3)); }
.brand__copy { display: grid; line-height: 1; }
.brand__copy strong { font-family: var(--display); color: #fff; font-size: 22px; letter-spacing: .035em; text-transform: uppercase; }
.brand__copy small { margin-top: 5px; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav > a:not(.nav-cta) { color: #d7cfe4; font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a[aria-current="page"] { color: #fff; }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 19px; color: #1b0d12; background: linear-gradient(180deg, #ffe37e, var(--gold)); border: 1px solid #fff0a3; border-radius: 12px; box-shadow: 0 9px 24px rgba(255, 174, 38, .19), inset 0 -2px 0 rgba(133, 74, 0, .25); font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.menu-toggle { display: none; width: 44px; height: 42px; place-items: center; background: #1b102b; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 20px; height: 2px; display: block; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle span { margin: 4px 0; }
.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); }
.mobile-nav { display: none; }

.site-main { min-height: 60vh; overflow: hidden; }
.section { position: relative; padding: 96px 0; }
.section--tight { padding: 66px 0; }
.section--panel { background: linear-gradient(180deg, rgba(31, 17, 48, .7), rgba(16, 9, 26, .86)); border-block: 1px solid var(--line); }
.section-kicker, .eyebrow { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.section-kicker::before { content: ""; width: 25px; height: 2px; background: var(--gold); }
.section-title { max-width: 760px; margin-bottom: 16px; font-size: clamp(38px, 5vw, 64px); line-height: .98; letter-spacing: -.02em; text-transform: uppercase; }
.section-title em { color: var(--gold); font-style: normal; }
.section-lead { max-width: 700px; margin-bottom: 42px; color: var(--ink-soft); font-size: 17px; }
.section-head--center { display: grid; justify-items: center; text-align: center; }

.hero { position: relative; isolation: isolate; padding: 94px 0 78px; }
.hero::before { content: ""; position: absolute; z-index: -2; width: 690px; height: 690px; top: -180px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(146, 84, 255, .33), rgba(244, 79, 154, .08) 48%, transparent 70%); filter: blur(4px); }
.hero::after { content: ""; position: absolute; z-index: -1; left: -5%; right: -5%; bottom: -240px; height: 400px; border: 1px solid rgba(255, 200, 74, .14); border-radius: 50% 50% 0 0; background: radial-gradient(ellipse at 50% 0, rgba(87, 41, 143, .4), transparent 63%); transform: perspective(850px) rotateX(56deg); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(410px, .8fr); align-items: center; gap: 78px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 19px; padding: 9px 13px; color: #ffe9a4; background: rgba(255, 200, 74, .08); border: 1px solid rgba(255, 200, 74, .2); border-radius: 99px; }
.eyebrow__live { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(52, 211, 153, .12), 0 0 18px rgba(52, 211, 153, .7); }
.hero h1 { margin-bottom: 18px; font-size: clamp(58px, 7.3vw, 104px); line-height: .82; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 span { display: block; color: var(--gold); text-shadow: 0 6px 34px rgba(255, 184, 49, .24); }
.hero__subtitle { max-width: 660px; margin-bottom: 27px; color: #d3c8e2; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.7; }
.hero__subtitle strong { color: #fff; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.primary-cta, .btn-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 26px;
  color: #190e10;
  background: linear-gradient(180deg, #ffe680, #ffc039 66%, #e29a13);
  border: 1px solid #fff0ad;
  border-radius: 14px;
  box-shadow: 0 15px 34px rgba(255, 171, 35, .22), inset 0 -3px 0 rgba(139, 72, 0, .22);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.primary-cta:hover, .btn-cta:hover, .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 19px 40px rgba(255, 171, 35, .29), inset 0 -3px 0 rgba(139, 72, 0, .22); }
.primary-cta svg { width: 20px; height: 20px; }
.secondary-link { min-height: 54px; display: inline-flex; align-items: center; gap: 8px; padding: 0 8px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.26); font-size: 13px; font-weight: 800; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 23px; color: #a99dbb; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust i { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--emerald); background: rgba(52, 211, 153, .1); border-radius: 50%; font-style: normal; }

.hero__visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero__halo { position: absolute; width: 470px; height: 470px; border-radius: 50%; border: 1px solid rgba(255, 200, 74, .23); box-shadow: inset 0 0 80px rgba(146, 84, 255, .22), 0 0 80px rgba(88, 46, 141, .2); }
.hero__halo::before, .hero__halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.11); }
.hero__halo::before { inset: 28px; }
.hero__halo::after { inset: 68px; }
.phone { position: relative; z-index: 3; width: 284px; padding: 10px; background: linear-gradient(150deg, #3a2851, #08050e 53%, #311e46); border: 1px solid rgba(255,255,255,.27); border-radius: 42px; box-shadow: 0 42px 100px rgba(0,0,0,.63), 0 0 0 7px rgba(255,255,255,.025); transform: rotate(2.5deg); animation: phoneFloat 5.5s ease-in-out infinite; }
.phone::before { content: ""; position: absolute; z-index: 2; top: 16px; left: 50%; width: 64px; height: 8px; transform: translateX(-50%); background: #0b0710; border-radius: 99px; }
.phone img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 32px; }
.official-seal { position: absolute; z-index: 5; top: 54px; right: 6px; width: 112px; height: 112px; display: grid; place-items: center; text-align: center; color: #2a1401; background: radial-gradient(circle at 35% 30%, #fff1a8, var(--gold) 52%, #cb7c00); border: 3px solid #fff0a0; border-radius: 50%; box-shadow: 0 14px 36px rgba(255, 180, 36, .3); font-family: var(--display); font-size: 15px; font-weight: 900; line-height: .95; letter-spacing: .04em; text-transform: uppercase; transform: rotate(9deg); }
.official-seal span { display: block; font-size: 29px; }
.float-card { position: absolute; z-index: 2; width: 86px; height: 122px; display: grid; padding: 12px; color: #17101f; background: linear-gradient(145deg, #fff, #e8e1f3); border: 1px solid #fff; border-radius: 13px; box-shadow: 0 24px 50px rgba(0,0,0,.38); font-family: Georgia, serif; font-size: 28px; font-weight: 900; line-height: .8; }
.float-card::after { align-self: end; justify-self: end; font-size: 40px; }
.float-card--ace { left: 8px; top: 128px; transform: rotate(-16deg); }
.float-card--ace::after { content: "♠"; }
.float-card--king { right: 22px; bottom: 92px; color: #bd224d; transform: rotate(13deg); }
.float-card--king::after { content: "♥"; }
.poker-chip { position: absolute; z-index: 4; width: 58px; height: 58px; border: 8px dashed rgba(255,255,255,.75); border-radius: 50%; box-shadow: 0 13px 24px rgba(0,0,0,.35); }
.poker-chip::before { content: ""; position: absolute; inset: 8px; border: 2px solid rgba(255,255,255,.74); border-radius: 50%; }
.poker-chip--pink { left: 68px; bottom: 82px; background: var(--rose); transform: rotate(22deg); }
.poker-chip--gold { right: 77px; top: 174px; background: var(--gold-deep); transform: rotate(-12deg); }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(2.5deg); } 50% { transform: translateY(-12px) rotate(1.2deg); } }

.proof-rail { position: relative; z-index: 5; border-block: 1px solid var(--line); background: rgba(13, 8, 22, .82); }
.proof-rail__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 88px; display: flex; align-items: center; gap: 13px; padding: 18px 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item__icon { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; color: var(--gold); background: rgba(255, 200, 74, .08); border: 1px solid rgba(255,200,74,.18); border-radius: 11px; font-size: 18px; }
.proof-item strong { display: block; font-family: var(--display); font-size: 18px; line-height: 1; text-transform: uppercase; }
.proof-item span { display: block; margin-top: 5px; color: var(--ink-dim); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.game-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.game-shot { position: relative; min-height: 292px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(146, 84, 255, .16), transparent 60%), #100919; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.game-shot:first-child { grid-row: span 2; min-height: 604px; }
.game-shot img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.game-shot:hover img { transform: scale(1.035); }
.game-shot::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(8,5,14,.92)); }
.game-shot__label { position: absolute; z-index: 2; inset: auto 20px 18px; }
.game-shot__label strong { display: block; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.game-shot__label span { color: #bfb4cf; font-size: 12px; }
.game-shot--poster img { object-position: center 15%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .card { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(145deg, rgba(36, 21, 55, .92), rgba(20, 12, 31, .96)); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card { min-height: 242px; padding: 28px; }
.feature-card::before { content: ""; position: absolute; width: 100px; height: 100px; top: -58px; right: -40px; background: var(--card-accent, var(--violet)); border-radius: 50%; filter: blur(45px); opacity: .55; }
.feature-card__num { display: block; margin-bottom: 27px; color: var(--gold); font-family: var(--display); font-size: 14px; font-weight: 800; letter-spacing: .12em; }
.feature-card h3 { margin-bottom: 10px; font-size: 27px; line-height: 1; text-transform: uppercase; }
.feature-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }
.feature-card--rose { --card-accent: var(--rose); }
.feature-card--gold { --card-accent: var(--gold); }
.feature-card--green { --card-accent: var(--emerald); }

.download-panel { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; padding: 46px; background: linear-gradient(135deg, rgba(48, 25, 73, .96), rgba(20, 11, 31, .98)); border: 1px solid rgba(255, 200, 74, .23); border-radius: 30px; box-shadow: var(--shadow); }
.download-panel__art { position: relative; display: grid; place-items: center; }
.download-panel__art::before { content: ""; position: absolute; width: 92%; aspect-ratio: 1; background: radial-gradient(circle, rgba(146,84,255,.42), transparent 66%); }
.download-panel__art img { position: relative; width: min(330px, 100%); height: auto; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 32px; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.download-panel h2 { margin-bottom: 13px; font-size: clamp(42px, 5vw, 67px); line-height: .94; text-transform: uppercase; }
.download-panel h2 span { color: var(--gold); }
.download-panel p { color: var(--ink-soft); }
.file-meta { display: grid; grid-template-columns: repeat(3, 1fr); margin: 25px 0 28px; border-block: 1px solid var(--line); }
.file-meta div { padding: 15px 12px; border-right: 1px solid var(--line); }
.file-meta div:first-child { padding-left: 0; }
.file-meta div:last-child { border-right: 0; }
.file-meta small { display: block; color: var(--ink-dim); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.file-meta strong { display: block; margin-top: 4px; color: #fff; font-size: 12px; }
.file-name { overflow-wrap: anywhere; }
.download-note { margin-top: 15px; color: var(--ink-dim) !important; font-size: 11px; }
.package-proof { max-width: 660px; display: grid; gap: 6px; margin-top: 20px; padding: 15px 17px; color: var(--ink-soft); background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 13px; font-size: 12px; line-height: 1.5; }
.package-proof strong { color: #fff; }
.package-proof span { color: var(--ink-dim); }
.package-proof code { color: #ffe7a2; font: 600 10px/1.55 ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; min-height: 230px; padding: 29px; background: rgba(27, 16, 42, .78); border: 1px solid var(--line); border-radius: 18px; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 35px; color: var(--gold); font-family: var(--display); font-size: 42px; font-weight: 800; line-height: 1; }
.step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -17px; top: 46%; width: 34px; height: 34px; display: grid; place-items: center; color: #20112c; background: var(--gold); border-radius: 50%; font-weight: 900; }
.step h3 { margin-bottom: 8px; font-size: 25px; line-height: 1; text-transform: uppercase; }
.step p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.seo-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.seo-copy__aside { position: sticky; top: 125px; }
.seo-copy__aside img { width: 100%; border-radius: 23px; box-shadow: var(--shadow); }
.seo-copy__body h2 { font-size: clamp(39px, 4vw, 56px); line-height: 1; text-transform: uppercase; }
.seo-copy__body h3 { margin-top: 30px; margin-bottom: 9px; color: var(--gold); font-size: 26px; text-transform: uppercase; }
.seo-copy__body p, .seo-copy__body li { color: var(--ink-soft); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--emerald); font-weight: 900; }

.faq-list { width: min(820px, 100%); display: grid; gap: 12px; }
.faq-item { background: rgba(28, 16, 43, .8); border: 1px solid var(--line); border-radius: 15px; }
.faq-item[open] { border-color: rgba(255, 200, 74, .3); background: rgba(37, 21, 56, .9); }
.faq-item summary { position: relative; padding: 21px 56px 21px 22px; list-style: none; font-family: var(--display); font-size: 21px; font-weight: 700; line-height: 1.2; cursor: pointer; text-transform: uppercase; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; width: 26px; height: 26px; display: grid; place-items: center; transform: translateY(-50%); color: #281609; background: var(--gold); border-radius: 50%; font-family: var(--body); font-size: 17px; font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 22px; margin: 0; color: var(--ink-soft); font-size: 14px; }

.closing-cta { padding: 58px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(146,84,255,.4), transparent 55%), linear-gradient(135deg, #25113d, #140b20); border: 1px solid rgba(255, 200, 74, .2); border-radius: 28px; box-shadow: var(--shadow); }
.closing-cta h2 { margin-bottom: 12px; font-size: clamp(42px, 5vw, 70px); line-height: .92; text-transform: uppercase; }
.closing-cta p { max-width: 650px; margin: 0 auto 25px; color: var(--ink-soft); }

.download-hero { padding: 78px 0 42px; }
.download-hero__grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 60px; }
.download-hero h1 { font-size: clamp(55px, 7vw, 92px); line-height: .87; text-transform: uppercase; }
.download-hero h1 span { color: var(--gold); }
.download-hero__art { position: relative; }
.download-hero__art img { width: min(390px, 100%); height: auto; aspect-ratio: 1 / 1; object-fit: contain; margin-inline: auto; border-radius: 28px; box-shadow: var(--shadow); }
.download-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 27px; }
.download-check { padding: 18px; background: rgba(33, 19, 50, .78); border: 1px solid var(--line); border-radius: 14px; }
.download-check strong { display: block; font-family: var(--display); font-size: 20px; text-transform: uppercase; }
.download-check span { color: var(--ink-dim); font-size: 11px; }

.legal-shell, .blog-shell { padding: 72px 0; }
.legal-shell h1, .blog-shell h1 { font-size: clamp(46px, 6vw, 72px); line-height: .95; text-transform: uppercase; }
.legal-stack { display: grid; gap: 14px; }
.legal-stack .card { padding: 25px; }
.legal-stack .card h2 { color: var(--gold) !important; }
.card { transition: border-color .2s ease, transform .2s ease; }
.card:hover { border-color: rgba(255, 200, 74, .28); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border-radius: 12px; }

.article-content { color: #e7dfef; }
.article-content h2 { margin: 2rem 0 .8rem; color: var(--gold) !important; font-family: var(--display); font-size: 30px !important; line-height: 1.1; text-transform: uppercase; }
.article-content h3 { color: #fff !important; font-family: var(--display); font-size: 24px !important; }
.article-content p, .article-content li { color: #c9bfd7; }
.article-content a { color: var(--gold) !important; text-decoration: underline; }

.site-footer { position: relative; padding: 60px 0 28px; background: #08050d; border-top: 1px solid rgba(255,200,74,.15); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 70px; }
.footer-brand img { width: 110px; margin-bottom: 15px; }
.footer-brand p { max-width: 440px; color: var(--ink-dim); font-size: 13px; }
.footer-title { margin-bottom: 16px; color: #fff; font-family: var(--display); font-size: 18px; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--ink-dim); font-size: 13px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; color: #756b85; border-top: 1px solid var(--line); font-size: 10px; }
.footer-bottom strong { color: #a99eb9; }
.mobile-download { display: none; }

@media (max-width: 1020px) {
  .site-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav { position: absolute; top: 106px; left: 20px; right: 20px; display: grid; gap: 5px; padding: 14px; transform: translateY(-10px); opacity: 0; visibility: hidden; background: rgba(18,10,32,.98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); transition: .2s ease; }
  .mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav a { padding: 12px 14px; border-radius: 10px; font-weight: 800; }
  .mobile-nav a:hover { background: rgba(255,255,255,.05); }
  .mobile-nav .nav-cta { margin-top: 5px; }
  .hero__grid { grid-template-columns: 1fr 410px; gap: 30px; }
  .hero h1 { font-size: clamp(58px, 8vw, 84px); }
  .proof-rail__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .game-shot:first-child { grid-row: auto; min-height: 390px; grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .download-panel { grid-template-columns: .8fr 1.2fr; gap: 35px; padding: 34px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 102px; }
  body { padding-bottom: 72px; }
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .age-strip { height: 28px; }
  .age-strip .container { gap: 6px; font-size: 8px; letter-spacing: .06em; }
  .site-header__inner { min-height: 68px; }
  .brand__mark { width: 61px; height: 41px; }
  .brand__copy strong { font-size: 18px; }
  .brand__copy small { font-size: 8px; }
  .mobile-nav { top: 96px; left: 14px; right: 14px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 50px 0; }
  .section-title { font-size: 43px; }
  .section-lead { margin-bottom: 30px; font-size: 15px; }
  .hero { padding: 58px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__copy { width: min(100%, 360px); min-width: 0; margin-inline: auto; }
  .hero h1 { max-width: 100%; font-size: clamp(50px, 15vw, 62px); line-height: .9; overflow-wrap: anywhere; }
  .hero__subtitle { max-width: 360px; font-size: 15px; overflow-wrap: anywhere; }
  .primary-cta, .btn-cta { width: 100%; padding-inline: 16px; gap: 8px; font-size: 18px; letter-spacing: .015em; text-align: center; }
  .secondary-link { display: none; }
  .hero__visual { min-height: 460px; margin-top: 5px; }
  .hero__halo { width: 345px; height: 345px; }
  .phone { width: 222px; border-radius: 33px; }
  .phone img { border-radius: 25px; }
  .official-seal { width: 86px; height: 86px; top: 40px; right: 10px; font-size: 11px; }
  .official-seal span { font-size: 22px; }
  .float-card { width: 65px; height: 92px; font-size: 21px; }
  .float-card::after { font-size: 30px; }
  .float-card--ace { left: 3px; top: 90px; }
  .float-card--king { right: 2px; bottom: 76px; }
  .poker-chip--pink { left: 45px; bottom: 51px; }
  .poker-chip--gold { right: 55px; top: 128px; }
  .proof-rail__grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 82px; padding: 14px 12px; }
  .proof-item__icon { display: none; }
  .proof-item strong { font-size: 16px; }
  .proof-item span { font-size: 8px; }
  .game-grid { grid-template-columns: 1fr; }
  .game-shot, .game-shot:first-child { grid-column: auto; min-height: 260px; }
  .game-shot:first-child { min-height: 430px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 205px; }
  .download-panel { grid-template-columns: 1fr; gap: 34px; padding: 25px 18px; border-radius: 23px; }
  .download-panel__art img { width: 250px; }
  .file-meta { grid-template-columns: 1fr; }
  .file-meta div, .file-meta div:first-child { padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .file-meta div:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .step:not(:last-child)::after { content: "↓"; top: auto; right: 22px; bottom: -17px; }
  .seo-copy { grid-template-columns: 1fr; gap: 35px; }
  .seo-copy__aside { position: static; }
  .seo-copy__aside img { max-height: 500px; object-fit: cover; object-position: top; }
  .closing-cta { padding: 40px 18px; }
  .download-hero { padding: 58px 0 22px; }
  .download-hero__grid { grid-template-columns: 1fr; gap: 35px; }
  .download-hero h1 { font-size: 60px; }
  .download-hero__art img { width: 270px; }
  .download-checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { display: grid; }
  .mobile-download { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 8px 13px; background: rgba(12,7,19,.96); border-top: 1px solid rgba(255,200,74,.24); backdrop-filter: blur(15px); }
  .mobile-download__copy { min-width: 0; }
  .mobile-download__copy strong { display: block; font-family: var(--display); font-size: 17px; line-height: 1; text-transform: uppercase; }
  .mobile-download__copy span { display: block; margin-top: 3px; color: var(--ink-dim); font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
  .mobile-download .nav-cta { flex: 0 0 auto; min-height: 44px; padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
