:root {
  --background: #0b0e20;
  --surface: #141a34;
  --elevated: #20284b;
  --overlay: rgba(5, 7, 18, .88);
  --text: #f8f3e8;
  --muted: #bcc4d9;
  --subtle: #9aa5c2;
  --border: #3b466b;
  --accent: #ff5a47;
  --accent-secondary: #43d7e6;
  --accent-hover: #ff7767;
  --cta: #ff5a47;
  --cta-text: #160d15;
  --link: #72e3ee;
  --focus: #ffe06a;
  --success: #58d68d;
  --warning: #f5c45e;
  --error: #ff7d88;
  --header: rgba(10, 13, 31, .94);
  --footer: #080a17;
  --form: #10152c;
  --compliance-strip: #1b2443;
  --legal-background: #f5f0e6;
  --legal-text: #22263a;
  --max: 1180px;
  --reading: 72ch;
  --radius-small: 6px;
  --radius-media: 14px;
  --shadow: 0 22px 55px rgba(0, 0, 0, .35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--text); font: 17px/1.62 Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .16; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-underline-offset: .2em; }
a:hover { color: #a7f3f7; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
h1, h2, h3 { font-family: "Arial Narrow", "Roboto Condensed", Impact, ui-sans-serif, system-ui, sans-serif; margin: 0 0 .55em; line-height: 1.03; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.8vw, 5.3rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.2vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.15; }
p { margin: 0 0 1.15em; }
ul, ol { padding-left: 1.3em; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.reading { max-width: var(--reading); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1200; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; background: var(--focus); color: #111; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: inline-block; color: var(--accent-secondary); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.lede { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.section-tight { padding-top: 20px; }
.section-tight-30 { padding-top: 30px; }
.cta-note { margin-top: 14px; font-size: .82rem; }
.centered { margin-inline: auto; }
.center-actions { justify-content: center; }
.space-top { margin-top: 28px; }
.icon-showcase { max-width: 360px; margin-inline: auto; transform: rotate(-2deg); }

.site-header { position: sticky; top: 0; z-index: 800; background: var(--header); border-bottom: 1px solid rgba(114,227,238,.24); backdrop-filter: blur(14px); }
.header-inner { width: min(calc(100% - 32px), 1280px); min-height: 78px; margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.brand { color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { border-radius: 12px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: .98rem; letter-spacing: -.015em; }
.brand small { color: var(--muted); font-size: .7rem; margin-top: 4px; }
.main-nav { display: flex; justify-content: center; gap: 22px; }
.main-nav a { color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 720; border-bottom: 2px solid transparent; padding-block: 26px 24px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); border-color: var(--accent-secondary); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); width: 46px; height: 46px; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 5px 0; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid transparent; border-radius: var(--radius-small); font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cta); color: var(--cta-text); border-color: var(--cta); }
.button-primary:hover { background: var(--accent-hover); color: var(--cta-text); }
.button-secondary { background: transparent; border-color: var(--border); color: var(--text); }
.button-secondary:hover { border-color: var(--accent-secondary); color: var(--text); }
.button-header { color: var(--text); border: 1px solid var(--accent); min-height: 42px; padding: 9px 14px; font-size: .78rem; text-decoration: none; font-weight: 850; border-radius: var(--radius-small); }
.button-header:hover { background: var(--accent); color: var(--cta-text); }
.button.is-opening span:first-child::after { content: " ✓"; }
.text-link { font-weight: 800; }
.external-link span:last-child { font-size: .9em; }
.action-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }

.google-play-badge { min-height: 58px; display: inline-flex; align-items: center; gap: 12px; padding: 8px 18px 8px 13px; border: 1px solid #aeb5c7; border-radius: 9px; background: #050505; color: #fff; text-decoration: none; box-shadow: 0 7px 18px rgba(0,0,0,.24); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.google-play-badge:hover { transform: translateY(-2px); border-color: #fff; background: #151515; color: #fff; }
.google-play-badge:focus-visible { outline-color: var(--focus); }
.google-play-icon { width: 31px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; }
.google-play-icon svg { width: 100%; height: 100%; display: block; }
.google-play-copy { display: grid; line-height: 1; text-align: left; white-space: nowrap; }
.google-play-copy small { color: #f2f2f2; font: 650 .58rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .08em; }
.google-play-copy strong { color: #fff; font: 500 1.28rem/1.15 ui-sans-serif, system-ui, sans-serif; letter-spacing: -.025em; }
.google-play-badge.is-opening .google-play-copy::after { content: "Megnyitás..."; color: #c7f5df; font-size: .62rem; margin-top: 3px; }
.google-play-badge-compact { min-height: 46px; gap: 8px; padding: 6px 12px 6px 9px; border-color: #747d96; box-shadow: none; }
.google-play-badge-compact .google-play-icon { width: 23px; height: 27px; }
.google-play-badge-compact .google-play-copy small { font-size: .46rem; }
.google-play-badge-compact .google-play-copy strong { font-size: .92rem; }

.breadcrumbs { padding-top: 30px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; font-size: .82rem; color: var(--subtle); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--border); }
.breadcrumbs a { color: var(--muted); }

.hero { min-height: calc(100svh - 78px); display: grid; align-items: center; padding: 78px 0 62px; position: relative; }
.hero::after { content: "VEGAS / VIRTUAL / 18+"; position: absolute; right: -38px; top: 50%; transform: rotate(90deg) translateX(50%); transform-origin: right center; color: rgba(255,255,255,.23); font-size: .7rem; letter-spacing: .3em; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: clamp(38px, 7vw, 90px); align-items: center; }
.hero h1 span { display: block; color: var(--accent); }
.hero-copy { position: relative; z-index: 2; }
.hero-mark { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; color: var(--muted); font-size: .88rem; }
.hero-mark img { width: 78px; border-radius: 18px; }
.hero-mark strong { display: block; color: var(--text); font-size: 1rem; }
.hero-disclosure { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; max-width: 590px; margin-top: 28px; padding: 15px 0; border-block: 1px solid var(--border); color: var(--muted); font-size: .86rem; }
.age-mark { font: 900 1.1rem/1 "Arial Narrow", Impact, sans-serif; color: var(--warning); padding-right: 14px; border-right: 1px solid var(--border); }
.hero-media { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-media::before { content: ""; position: absolute; width: 82%; aspect-ratio: 1; border: 1px solid rgba(67,215,230,.35); transform: rotate(7deg); }
.hero-poster { width: min(100%, 720px); position: relative; transform: rotate(-2.2deg); border: 1px solid var(--accent-secondary); padding: 9px; background: var(--surface); box-shadow: var(--shadow); }
.hero-poster img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.poster-tag { position: absolute; right: -12px; bottom: -18px; background: var(--accent); color: var(--cta-text); padding: 10px 15px; font-weight: 900; font-size: .78rem; letter-spacing: .08em; transform: rotate(2deg); }
.hero-icon-float { position: absolute; width: 108px; right: 2%; top: 5%; border-radius: 24px; transform: rotate(8deg); box-shadow: var(--shadow); }

.fact-strip { border-block: 1px solid var(--border); background: #0e1328; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-item { padding: 24px 26px; border-right: 1px solid var(--border); }
.fact-item:last-child { border-right: 0; }
.fact-item span { display: block; color: var(--subtle); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.fact-item strong { display: block; margin-top: 7px; font-size: .98rem; }

.section { padding: clamp(78px, 10vw, 132px) 0; }
.section-light { background: var(--legal-background); color: var(--legal-text); }
.section-light .muted, .section-light .lede { color: #596079; }
.section-light a:not(.button):not(.google-play-badge) { color: #075e75; }
.section-light a:not(.button):not(.google-play-badge):hover { color: #043e4d; }
.section-light .eyebrow { color: #075e75; }
.section-light .button-secondary { border-color: #596079; color: #22263a; }
.section-light .button-secondary:hover { border-color: #075e75; background: rgba(7,94,117,.08); color: #111526; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 50px; align-items: end; margin-bottom: 55px; }
.section-head p { color: var(--muted); }
.section-light .section-head p { color: #596079; }
.chapter-list { border-top: 1px solid var(--border); }
.chapter { display: grid; grid-template-columns: 90px 1fr minmax(300px, .72fr); gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--border); align-items: start; }
.chapter-number { font: 900 2.6rem/1 "Arial Narrow", Impact, sans-serif; color: var(--accent); }
.chapter p { color: var(--muted); max-width: 62ch; }
.chapter-note { color: var(--accent-secondary); font-size: .86rem; border-left: 2px solid var(--accent-secondary); padding-left: 18px; }
.section-light .chapter p { color: #4f566b; }
.section-light .chapter-number { color: #c9362a; }
.section-light .chapter-note { color: #075e75; border-left-color: #075e75; }
.media-band { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .75fr); gap: 0; align-items: stretch; margin-top: 72px; }
.media-band.reverse { grid-template-columns: minmax(300px, .75fr) minmax(0, 1.15fr); }
.media-band img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.media-copy { padding: clamp(34px, 6vw, 74px); background: var(--elevated); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.section-light .media-copy { color: var(--text); }
.section-light .media-copy p { color: var(--muted); }
.section-light .media-copy .eyebrow { color: var(--accent-secondary); }
.section-light .media-copy a:not(.button):not(.google-play-badge) { color: var(--link); }
.media-band.reverse .media-copy { order: -1; }

.screenshot-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 48%); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 0 22px; }
.screenshot-rail figure { margin: 0; scroll-snap-align: start; }
.screenshot-rail img { border: 1px solid var(--border); border-radius: var(--radius-media); aspect-ratio: 16/9; object-fit: cover; }
.screenshot-rail figcaption { color: var(--muted); font-size: .84rem; margin-top: 12px; max-width: 54ch; }
.section-light .screenshot-rail figcaption { color: #4f566b; }

.facts-table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.facts-table th, .facts-table td { text-align: left; padding: 17px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.section-light .facts-table th, .section-light .facts-table td { border-color: #c9c2b6; }
.facts-table th { width: 30%; font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; }

.split-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 100px); align-items: start; }
.sticky-note { position: sticky; top: 118px; padding: 30px; border: 1px solid var(--border); border-left: 5px solid var(--accent); background: var(--surface); }
.section-light .sticky-note { color: var(--text); }
.section-light .sticky-note p { color: var(--muted); }
.section-light .sticky-note .eyebrow { color: var(--accent-secondary); }
.section-light .sticky-note a:not(.button):not(.google-play-badge) { color: var(--link); }
.article-flow > * + h2 { margin-top: 2em; }
.article-flow > * + h3 { margin-top: 1.8em; }
.article-flow li { margin-bottom: .6em; }
.article-flow a { font-weight: 700; }
.legal-page { background: var(--legal-background); color: var(--legal-text); min-height: 70vh; padding: 45px 0 100px; }
.legal-page a { color: #075e75; }
.legal-page .eyebrow { color: #075e75; }
.legal-page .breadcrumbs { width: 100%; padding-top: 0; }
.legal-page .breadcrumbs a, .legal-page .breadcrumbs { color: #596079; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: clamp(44px, 8vw, 110px); margin-top: 48px; }
.legal-nav { position: sticky; top: 112px; align-self: start; border-left: 2px solid #b6ac9d; padding-left: 20px; }
.legal-nav a { display: block; margin: 10px 0; font-size: .86rem; }
.legal-content { max-width: 72ch; }
.legal-content h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.legal-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 1.8em; }
.legal-content h3 { margin-top: 1.5em; }
.legal-meta { padding: 18px 0; border-block: 1px solid #c9c2b6; margin: 25px 0 40px; color: #596079; }

.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 60px 24px 0; font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 12px; top: 18px; font-size: 1.7rem; color: var(--accent-secondary); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { padding: 0 60px 25px 0; color: var(--muted); max-width: 72ch; }

.operator-callout { padding: 34px 0; border-block: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr auto; gap: 38px; align-items: center; }
.operator-callout p { margin: 0; color: var(--muted); }
.section-light .operator-callout p { color: #4f566b; }
.install-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 96px 1fr auto; gap: 28px; align-items: center; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--accent); background-color: #10162e; background-image: linear-gradient(110deg, #221b42, #10162e); color: var(--text); }
.install-panel::after { content: ""; position: absolute; width: 220px; height: 220px; right: 22%; border: 1px solid rgba(67,215,230,.4); transform: rotate(45deg); pointer-events: none; }
.install-panel img { border-radius: 20px; position: relative; z-index: 1; }
.install-panel > * { position: relative; z-index: 1; }
.install-panel p { color: var(--muted); margin: 0; }
.section-light .install-panel .eyebrow { color: var(--accent-secondary); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 6; border: 0; padding: 0; background: transparent; color: var(--text); text-align: left; cursor: zoom-in; }
.gallery-item:nth-child(3n) { grid-column: 3 / span 8; }
.gallery-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border: 1px solid var(--border); border-radius: var(--radius-media); transition: transform .2s ease, border-color .2s ease; }
.gallery-item:hover img { transform: translateY(-5px); border-color: var(--accent-secondary); }
.gallery-item span { display: block; margin-top: 10px; color: var(--muted); font-size: .84rem; }
.gallery-dialog { width: min(1100px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 1px solid var(--border); background: #090c1b; color: var(--text); }
.gallery-dialog::backdrop, .cookie-dialog::backdrop { background: var(--overlay); backdrop-filter: blur(6px); }
.gallery-shell { padding: 18px; }
.gallery-shell img { width: 100%; max-height: 72svh; object-fit: contain; background: #050711; }
.gallery-controls { display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 10px; align-items: center; padding-top: 14px; }
.gallery-controls p { margin: 0; color: var(--muted); font-size: .86rem; }
.gallery-controls button { min-width: 48px; min-height: 46px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; }

.support-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .7fr); gap: clamp(42px, 8vw, 95px); }
.support-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label, .field legend { font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-small); background: var(--form); color: var(--text); }
.field textarea { min-height: 180px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox-field { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--accent); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.error-summary { border: 2px solid var(--error); padding: 22px; margin-bottom: 28px; background: rgba(255,125,136,.08); }
.error-summary h2 { font-size: 1.45rem; }
.error-summary a { color: #ffb8bf; }
.help-index { border-top: 1px solid var(--border); }
.help-index a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); }

.site-footer { background: var(--footer); border-top: 1px solid var(--border); }
.footer-main { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); padding-block: 72px; }
.footer-brand p { color: var(--muted); max-width: 48ch; margin-top: 24px; }
.brand-footer img { border-radius: 14px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav h2 { font: 800 .78rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--subtle); }
.footer-nav a, .footer-button { display: block; color: var(--muted); margin: 11px 0; font-size: .88rem; text-align: left; }
.footer-nav a:hover, .footer-button:hover { color: var(--text); }
.footer-button { border: 0; background: transparent; padding: 0; text-decoration: underline; text-underline-offset: .2em; cursor: pointer; }
.operator-strip { border-block: 1px solid var(--border); background: #0c1022; }
.operator-grid { display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: 32px; padding-block: 25px; font-size: .78rem; color: var(--muted); }
.operator-grid p { margin: 0; }
.footer-disclosure { border-left: 2px solid var(--warning); padding-left: 18px; }
.footer-disclosure strong { color: var(--warning); }
.copyright { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--subtle); font-size: .74rem; }

.cookie-banner { position: fixed; z-index: 1000; left: 18px; right: 18px; bottom: 18px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding: 24px; background: #f7f1e6; color: #22263a; border: 2px solid #22263a; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.45rem; }
.cookie-banner p { margin: 0; max-width: 82ch; font-size: .86rem; }
.cookie-banner a { color: #075e75; }
.cookie-banner .button-secondary { border-color: #596079; color: #22263a; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cookie-dialog { width: min(720px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; color: var(--text); background: var(--surface); border: 1px solid var(--border); }
.dialog-shell { padding: clamp(24px, 5vw, 42px); }
.dialog-head { display: flex; justify-content: space-between; gap: 24px; }
.dialog-close { width: 48px; height: 48px; border: 1px solid var(--border); background: transparent; color: var(--text); font-size: 1.8rem; cursor: pointer; }
.consent-option { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding: 22px 0; border-top: 1px solid var(--border); }
.consent-option h3 { font-size: 1.15rem; margin-bottom: .3em; }
.consent-option p { color: var(--muted); font-size: .86rem; margin: 0; }
.switch { display: grid; justify-items: end; gap: 5px; font-size: .72rem; color: var(--muted); }
.switch input { width: 24px; height: 24px; accent-color: var(--accent); }
.dialog-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 25px; }

.mobile-install-bar { display: none; }
.page-hero { padding: 78px 0 58px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: clamp(45px, 8vw, 100px); align-items: center; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
.page-hero-media img { border: 1px solid var(--border); border-radius: var(--radius-media); transform: rotate(1.5deg); box-shadow: var(--shadow); }
.notice-line { border-left: 4px solid var(--warning); padding: 14px 18px; background: var(--compliance-strip); color: var(--muted); font-size: .88rem; margin: 30px 0; }
.identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.identity-block { background: var(--surface); padding: clamp(30px, 5vw, 58px); }
.identity-block p { color: var(--muted); }
.empty-state { text-align: center; padding: 100px 0; }
.empty-state .code { color: var(--accent); font: 900 clamp(5rem, 16vw, 12rem)/.8 "Arial Narrow", Impact, sans-serif; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: block; justify-self: end; order: 2; }
  .button-header { justify-self: end; order: 3; }
  .google-play-badge-compact { justify-self: end; order: 3; }
  .main-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 12px 20px 25px; background: #0b0e20; border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--border); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-media { min-height: 420px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-item:nth-child(2) { border-right: 0; }
  .fact-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  body { font-size: 16px; padding-bottom: 76px; }
  body.cookie-open { padding-bottom: 0; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .site-header .button-header, .site-header .google-play-badge-compact { display: none; }
  .header-inner { grid-template-columns: 1fr auto; gap: 14px; }
  .brand small { display: none; }
  .brand img { width: 44px; height: 44px; border-radius: 10px; }
  .hero { min-height: auto; padding: 42px 0 58px; }
  .hero::after { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 0; min-height: auto; margin-bottom: 12px; }
  .hero-poster { width: 92%; transform: rotate(-1.2deg); }
  .hero-icon-float { width: 72px; right: 0; top: -16px; border-radius: 16px; }
  .poster-tag { font-size: .68rem; right: -7px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.15rem); }
  .hero-mark { display: none; }
  .hero-disclosure { align-items: start; }
  .section { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 38px; }
  .chapter { grid-template-columns: 55px 1fr; gap: 18px; }
  .chapter-note { grid-column: 2; }
  .media-band, .media-band.reverse { grid-template-columns: 1fr; }
  .media-band.reverse .media-copy { order: 0; }
  .media-band img { min-height: 0; }
  .screenshot-rail { grid-auto-columns: 86%; }
  .split-feature, .support-layout { grid-template-columns: 1fr; }
  .sticky-note, .legal-nav { position: static; }
  .operator-callout { grid-template-columns: 1fr; gap: 18px; }
  .install-panel { grid-template-columns: 72px 1fr; padding: 28px; }
  .install-panel .button, .install-panel .google-play-badge { grid-column: 1 / -1; justify-self: start; }
  .install-panel::after { display: none; }
  .gallery-item, .gallery-item:nth-child(3n) { grid-column: 1 / -1; }
  .gallery-controls { grid-template-columns: 1fr auto auto auto; }
  .gallery-controls p { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { display: flex; gap: 12px; overflow-x: auto; border-left: 0; border-bottom: 1px solid #b6ac9d; padding: 0 0 14px; }
  .legal-nav a { white-space: nowrap; }
  .identity-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .operator-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 20px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; grid-template-columns: 1fr; gap: 16px; max-height: calc(100svh - 16px); overflow-y: auto; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button:last-child { grid-column: 1 / -1; }
  .dialog-actions { flex-direction: column-reverse; }
  .mobile-install-bar { position: fixed; z-index: 700; left: 0; right: 0; bottom: 0; min-height: 70px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; padding: 8px 12px; background: #0a0d1e; border-top: 1px solid var(--border); transition: transform .2s ease; }
  .mobile-install-bar.is-hidden, body.cookie-open .mobile-install-bar { transform: translateY(110%); }
  .mobile-install-bar img { border-radius: 10px; }
  .mobile-install-bar span { line-height: 1.1; min-width: 0; }
  .mobile-install-bar strong, .mobile-install-bar small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .mobile-install-bar strong { font-size: .78rem; }
  .mobile-install-bar small { font-size: .65rem; color: var(--muted); margin-top: 3px; }
  .mobile-install-bar .button { min-height: 44px; padding: 9px 12px; font-size: .78rem; }
  .google-play-badge-mobile { min-height: 44px; gap: 7px; padding: 6px 10px 6px 8px; border-color: #747d96; box-shadow: none; }
  .google-play-badge-mobile .google-play-icon { width: 21px; height: 25px; }
  .google-play-badge-mobile .google-play-copy small { display: none; }
  .google-play-badge-mobile .google-play-copy strong { font-size: .78rem; }
}

@media (max-width: 520px) {
  .fact-grid { grid-template-columns: 1fr; }
  .fact-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .fact-item:last-child { border-bottom: 0; }
  .footer-nav { grid-template-columns: 1fr; }
  .consent-option { grid-template-columns: 1fr; }
  .switch { justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .button:hover, .gallery-item:hover img { transform: none; }
  .icon-showcase { transform: none; }
}
