:root {
  --bg: #101028;
  --bg-soft: #151532;
  --surface: #1A1A3E;
  --surface-light: #252552;
  --line: rgba(139, 92, 246, .24);
  --text: #FFF8FC;
  --muted: #C9C4DC;
  --pink: #FF6B8A;
  --pink-strong: #E95576;
  --violet: #8B5CF6;
  --violet-light: #B69BFF;
  --gold: #F6C75F;
  --coral: #FF91A8;
  --lime: var(--pink);
  --lime-strong: var(--pink-strong);
  --lavender: var(--violet);
  --shadow: 0 24px 70px rgba(5, 4, 24, .45);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
iframe { display: block; width: 100%; border: 0; }
main, section, article, aside, header, footer, nav, div { min-width: 0; }
p, h1, h2, h3, a, span { overflow-wrap: anywhere; }
section[id] { scroll-margin-top: 126px; }
code { color: var(--lime); font-size: .92em; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(3rem, 8vw, 6.75rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4.3vw, 4rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
p { color: var(--muted); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, .menu-toggle:focus-visible, .icon-button:focus-visible {
  outline: 3px solid rgba(255, 107, 138, .58);
  outline-offset: 4px;
}
.button--primary { background: var(--pink); color: #1A1A3E; box-shadow: 0 12px 34px rgba(255,107,138,.22); }
.button--primary:hover { background: #FF8EA6; box-shadow: 0 15px 40px rgba(255,107,138,.30); }
.button--ghost { border-color: rgba(247, 244, 223, .24); background: rgba(255,255,255,.04); color: var(--text); }
.button--ghost:hover { border-color: var(--lime); background: rgba(255,107,138,.11); }
.button--small { min-height: 42px; padding: 9px 18px; font-size: .92rem; }
.text-link { color: var(--lime); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.noscript { padding: 12px; background: #7e281c; color: white; text-align: center; font-weight: 700; }
.top-notice { background: var(--pink); color: #1A1A3E; font-size: .84rem; }
.top-notice__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18, 17, 48, .86);
  border-bottom: 1px solid rgba(247,244,223,.08);
  backdrop-filter: blur(18px);
}
.header__inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; color: var(--text); text-decoration: none; }
.brand__logo { width: clamp(168px, 18vw, 218px); height: auto; object-fit: contain; filter: drop-shadow(0 8px 22px rgba(7, 4, 28, .34)); }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.primary-nav a { color: #E8E2F4; text-decoration: none; font-size: .92rem; font-weight: 700; }
.primary-nav a:hover { color: var(--lime); }
.header__cta { margin-left: 2px; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line); border-radius: 12px; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12, 11, 38, .95) 0%, rgba(16, 15, 49, .80) 45%, rgba(16, 15, 49, .24) 100%),
    linear-gradient(180deg, rgba(16, 15, 49, .08), rgba(10, 9, 32, .68)),
    url("../assets/images/banner-horizon.webp");
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 24%, rgba(139,92,246,.25), transparent 28%),
    linear-gradient(180deg, transparent 72%, var(--bg));
}
.hero__content { padding: 110px 0 140px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 72px; align-items: end; }
.hero__copy { position: relative; z-index: 2; }
.hero__lead { max-width: 680px; margin-bottom: 32px; color: #EEE9F7; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 34px; margin: 46px 0 0; padding: 0; list-style: none; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { color: var(--pink); font-size: 1.45rem; line-height: 1; }
.hero__facts span { margin-top: 7px; color: var(--muted); font-size: .82rem; }
.hero-card { position: relative; overflow: hidden; border: 1px solid rgba(247,244,223,.15); border-radius: var(--radius-lg); padding: 34px; background: linear-gradient(145deg, rgba(34, 31, 78, .88), rgba(18, 17, 48, .72)); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.hero-card::before { content: ""; position: absolute; inset: auto -50px -65px auto; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,107,138,.16); filter: blur(8px); }
.hero-card__number { position: absolute; top: 22px; right: 26px; color: rgba(247,244,223,.18); font-size: 2.4rem; font-weight: 900; }
.hero-card h2 { max-width: 310px; font-size: 2rem; }
.hero-card__meter { height: 8px; margin-top: 28px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.hero-card__meter span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--violet)); }
.progress-68 { width: 68%; }
.hero-card__footer { display: flex; justify-content: space-between; margin-top: 12px; color: var(--muted); font-size: .82rem; }
.hero-card__footer strong { color: var(--text); }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--muted); text-decoration: none; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(20px); opacity: .42; }
.hero__glow--one { width: 230px; height: 230px; top: 10%; left: -100px; background: var(--pink); }
.hero__glow--two { width: 180px; height: 180px; right: 20%; bottom: 8%; background: var(--violet); }

.section-heading { margin-bottom: 52px; }

.section-heading--split > p { margin-bottom: 8px; }
.section-heading--centred { max-width: 760px; margin-inline: auto; text-align: center; }

.game-section {
  background:
    linear-gradient(180deg, rgba(16,16,40,.96), rgba(26,26,62,.80) 48%, rgba(16,16,40,.97)),
    url("../assets/images/background.webp") center / cover no-repeat;
}
.game-shell { overflow: hidden; border: 1px solid rgba(247,244,223,.16); border-radius: 28px; background: #0D0C25; box-shadow: 0 30px 100px rgba(0,0,0,.44); }
.game-shell__bar { min-height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(247,244,223,.1); background: #171533; }
.game-shell__lights { display: flex; gap: 7px; }
.game-shell__lights span { width: 10px; height: 10px; border-radius: 50%; background: #77708F; }
.game-shell__lights span:first-child { background: var(--coral); }
.game-shell__lights span:nth-child(2) { background: var(--gold); }
.game-shell__lights span:nth-child(3) { background: var(--lime); }
.game-shell__label { color: #AAA3BE; font-size: .8rem; }
.icon-button { justify-self: end; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; }
.icon-button:hover { background: rgba(255,255,255,.07); color: var(--text); }
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.game-shell__viewport { width: 100%; aspect-ratio: 4 / 3; min-height: 460px; background: #0B0A22; }
.game-shell iframe { width: 100%; height: 100%; display: block; border: 0; background: #0B0A22; }
.game-note { max-width: 920px; margin: 22px auto 0; text-align: center; font-size: .88rem; }
.game-note strong { color: var(--gold); }

.adventure { background: #151331; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; background: var(--surface); }
.feature-card--featured { background: linear-gradient(145deg, var(--pink), #FF8EA6); color: #1A1A3E; transform: translateY(22px); box-shadow: 0 24px 60px rgba(255,107,138,.18); }
.feature-card--featured p, .feature-card--featured .feature-card__index { color: rgba(26,26,62,.78); }
.feature-card__index { position: absolute; top: 25px; right: 28px; color: #857D9B; font-weight: 900; }
.feature-card__icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 20px; background: rgba(255,107,138,.13); color: var(--lime); font-size: 1.8rem; }
.feature-card--featured .feature-card__icon { background: rgba(26,26,62,.14); color: #1A1A3E; }
.feature-card h3 { font-size: 1.75rem; }

.steps-section { background: var(--bg); }
.steps-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.steps-intro { position: sticky; top: 120px; }
.steps-intro > p { max-width: 520px; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps-list li { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.steps-list > li > span { color: var(--lime); font-weight: 900; }
.steps-list h3 { margin-bottom: 6px; }
.steps-list p { margin-bottom: 0; }

.balance-section { background: linear-gradient(135deg, #201D4B, #11102A); }
.balance-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.balance-card { min-height: 430px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative; border-radius: var(--radius-lg); padding: 52px; background: linear-gradient(145deg, var(--violet), #6E42D8); color: #FFF8FC; box-shadow: 0 30px 80px rgba(139,92,246,.22); }
.balance-card::after { content: "◆"; position: absolute; right: -44px; bottom: -90px; color: rgba(255,255,255,.10); font-size: 16rem; line-height: 1; }
.balance-card .eyebrow, .balance-card p { color: rgba(255,255,255,.78); }
.balance-card__value { position: relative; z-index: 1; margin: 12px 0 28px; font-size: clamp(3rem, 7vw, 6rem); font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.balance-card__value span { font-size: .55em; }
.balance-copy { max-width: 620px; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: #E7E1F2; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 900; }

.wins-section { background: #12102D; }
.win-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.win-card { min-height: 310px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: #1A1A3E; }
.win-card__multiplier { color: var(--gold); font-size: 3.2rem; font-weight: 950; letter-spacing: -.06em; }
.win-card__label { margin: auto 0 14px; color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.win-card p:last-child { margin-bottom: 0; font-size: .92rem; }
.win-card--bright { background: #292454; }
.win-card--premium { background: linear-gradient(145deg, #512F80, #171331); border-color: rgba(139,92,246,.48); }
.win-card--premium .win-card__multiplier, .win-card--premium .win-card__label { color: var(--lavender); }
.odds-panel { margin-top: 28px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; background: rgba(255,255,255,.025); }
.odds-panel h3 { font-size: 1.8rem; }
.odds-bars { display: grid; gap: 15px; }
.odds-row { display: grid; grid-template-columns: 60px 1fr 46px; gap: 12px; align-items: center; font-size: .78rem; }
.odds-row > div { height: 9px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.odds-row i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--violet)); }
.bar-65 { width: 65%; }
.bar-25 { width: 25%; }
.bar-8 { width: 8%; }
.bar-2 { width: 2%; }
.odds-row strong { text-align: right; color: var(--text); }
.odds-panel__note { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: .82rem; }

.auto-section { overflow: hidden; background: var(--bg); }
.auto-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.auto-visual { min-height: 420px; display: grid; place-items: center; position: relative; }
.auto-visual__ring { width: 285px; height: 285px; display: grid; place-items: center; border: 2px solid rgba(255,107,138,.48); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,107,138,.055), 0 0 0 70px rgba(139,92,246,.04); }
.auto-visual__ring::before, .auto-visual__ring::after { content: ""; position: absolute; border-radius: 50%; }
.auto-visual__ring::before { width: 210px; height: 210px; border: 1px dashed rgba(139,92,246,.60); }
.auto-visual__ring::after { width: 120px; height: 120px; background: linear-gradient(145deg, var(--pink), var(--violet)); box-shadow: 0 20px 60px rgba(255,107,138,.28); }
.auto-visual__ring span { z-index: 1; color: #FFF8FC; font-weight: 950; letter-spacing: .08em; }
.auto-visual__spark { position: absolute; color: var(--gold); font-size: 1.4rem; }
.auto-visual__spark--one { top: 18%; left: 16%; }
.auto-visual__spark--two { right: 11%; bottom: 27%; color: var(--lavender); }
.auto-visual__spark--three { right: 19%; top: 15%; color: var(--lime); }
.fine-print { font-size: .82rem; }

.faq-section { background: #151331; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 26px 0; color: var(--text); cursor: pointer; list-style: none; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--lime); }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { max-width: 760px; margin-bottom: 24px; padding-right: 46px; }

.safety-section { background: var(--bg); }
.safety-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; border: 1px solid rgba(255,107,138,.30); border-radius: var(--radius-lg); padding: 46px; background: linear-gradient(120deg, rgba(255,107,138,.11), rgba(139,92,246,.10)); }
.safety-panel__badge { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--pink), var(--violet)); color: #FFF8FC; font-size: 1.7rem; font-weight: 950; }
.safety-panel h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.9rem); }
.safety-panel p { margin-bottom: 0; }

.legal-strip { padding: 70px 0; border-top: 1px solid var(--line); background: #0D0C23; }
.legal-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.legal-strip h2 { font-size: 1rem; letter-spacing: 0; }
.legal-strip h2 a { color: var(--text); text-decoration: none; }
.legal-strip h2 a:hover { color: var(--pink); text-decoration: underline; }
.legal-strip p { margin-bottom: 0; font-size: .82rem; }

.site-footer { background: #09081D; }
.footer__top { display: grid; grid-template-columns: .8fr 1.05fr 1.1fr 1fr auto; gap: 30px; align-items: start; padding: 46px 0; }
.brand--footer { align-self: start; }
.brand--footer .brand__logo { width: 250px; }
.footer__top p { max-width: 360px; margin: 0; font-size: .88rem; }
.footer__operator { display: grid; gap: 4px; color: var(--muted); font-size: .78rem; }
.footer__operator strong { color: var(--text); font-size: .82rem; }
.footer__support { display: grid; gap: 10px; }
.footer__support strong { color: var(--text); font-size: .82rem; }
.support-badge {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 244, 223, .12);
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .03em;
}
.support-badge:hover {
  border-color: rgba(255, 107, 138, .42);
  background: rgba(255, 107, 138, .08);
  color: var(--text);
}
.footer__top nav { display: grid; gap: 10px; }
.footer__top nav a, .footer-link-button { color: var(--muted); text-decoration: none; font-size: .86rem; }
.footer-link-button { width: fit-content; border: 0; padding: 0; background: transparent; font-family: inherit; cursor: pointer; }
.footer__top nav a:hover, .footer-link-button:hover { color: var(--lime); }
.footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(247,244,223,.08); }
.footer__bottom p { margin: 0; font-size: .78rem; }

.age-gate, .cookie-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; overflow-y: auto; padding: 20px; background: rgba(8,7,28,.92); backdrop-filter: blur(18px); }
.age-gate[hidden], .cookie-modal[hidden] { display: none; }
.age-gate__panel, .cookie-modal__panel { width: min(580px, 100%); border: 1px solid rgba(247,244,223,.15); border-radius: 32px; padding: 44px; background: #1A173C; box-shadow: var(--shadow); text-align: center; }
.age-gate__badge { width: 90px; height: 90px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: linear-gradient(145deg, var(--pink), var(--violet)); color: #FFF8FC; font-size: 1.8rem; font-weight: 950; }
.age-gate__panel h2, .cookie-modal__panel h2 { font-size: clamp(1.85rem, 5vw, 2.4rem); }
.age-gate__actions, .cookie-modal__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.cookie-modal { z-index: 90; }
.cookie-modal__panel { width: min(680px, 100%); }
.cookie-modal__panel a { color: #FFD0DA; font-weight: 800; }
.cookie-modal__panel a:hover { color: #FFFFFF; }


@media (max-width: 1020px) {
  .primary-nav { position: fixed; top: 114px; left: 20px; right: 20px; margin: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 20px; padding: 12px; background: #1A173C; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 14px; border-radius: 10px; }
  .primary-nav a:hover { background: rgba(255,255,255,.05); }
  .menu-toggle { display: block; }
  .header__cta { display: none; }
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 520px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--featured { min-height: 260px; transform: none; }
  .steps-layout, .balance-layout, .auto-layout, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .steps-intro { position: static; }
  .win-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__operator, .footer__support { grid-column: 1 / -1; }
  .footer__top nav { grid-column: 1 / -1; grid-template-columns: repeat(3, auto); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 82px 0; }
  .top-notice__inner { padding: 8px 0; flex-direction: column; gap: 0; line-height: 1.35; }
  .header__inner { min-height: 70px; }
  .brand__logo { width: 158px; }
  .primary-nav { top: 121px; left: 14px; right: 14px; }
  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(12,11,38,.82) 0%, rgba(14,13,43,.64) 46%, rgba(10,9,32,.86) 100%),
      url("../assets/images/banner-vertical.webp");
    background-position: center top;
  }
  .hero__content { padding: 88px 0 120px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.85rem, 8.6vw, 2.8rem); }
  h3 { font-size: 1.18rem; }
  .hero__lead { font-size: 1rem; }
  .hero__facts { gap: 20px 30px; }
  .hero-card { padding: 28px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 10px; }
  .game-shell { border-radius: 18px; }
  .game-shell__label { display: none; }
  .game-shell__bar { grid-template-columns: 1fr 1fr; }
  .game-shell__viewport { min-height: 0; aspect-ratio: 4 / 3; }
  .balance-card { min-height: 350px; padding: 36px 28px; }
  .win-grid { grid-template-columns: 1fr; }
  .odds-panel { grid-template-columns: 1fr; gap: 30px; padding: 28px; }
  .odds-panel__note { grid-column: auto; }
  .auto-visual { min-height: 330px; }
  .auto-visual__ring { width: 220px; height: 220px; }
  .auto-visual__ring::before { width: 165px; height: 165px; }
  .auto-visual__ring::after { width: 96px; height: 96px; }
  .safety-panel { grid-template-columns: 1fr; text-align: left; padding: 30px; }
  .legal-strip__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__top nav { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
  .age-gate, .cookie-modal { padding: 14px; }
  .age-gate__panel, .cookie-modal__panel { padding: 34px 24px; }
  .age-gate__actions, .cookie-modal__actions { flex-direction: column; }
  .age-gate__actions .button, .cookie-modal__actions .button { width: 100%; }
}

@media (max-width: 460px) {
  .brand__logo { width: 142px; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero__facts strong { font-size: 1.15rem; }
  .hero__facts span { font-size: .7rem; }
  .steps-list li { grid-template-columns: 48px 1fr; }
  .feature-card { padding: 28px; }
  .win-card { min-height: 260px; }
  .footer__top nav { grid-template-columns: 1fr; }
}

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


@media (max-width: 390px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 72px 0; }
  .hero__content { padding-top: 74px; }
  .hero-card, .balance-card, .odds-panel, .safety-panel { padding-left: 22px; padding-right: 22px; }
  .button { padding-inline: 18px; }
}

@supports (content-visibility: auto) {
  .section:not(.game-section), .legal-strip { content-visibility: auto; contain-intrinsic-size: 1px 720px; }
}
.game-reviews {
  width: 100%;
  padding: 88px 24px;
  overflow: hidden;
}

.game-reviews-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.game-reviews-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.game-reviews-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b8a;
}

.game-reviews-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.game-reviews-subtitle {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

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

.game-review-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.game-review-rating {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #ffcf5c;
}

.game-review-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.game-review-author {
  margin: auto 0 0;
  padding-top: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ff9bb0;
}

@media (hover: hover) and (pointer: fine) {
  .game-review-card {
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .game-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 138, 0.45);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 767px) {
  .game-reviews {
    padding: 64px 18px;
  }

  .game-reviews-header {
    margin-bottom: 30px;
  }

  .game-reviews-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .game-reviews-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .game-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-review-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .game-review-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .game-review-author {
    padding-top: 18px;
  }
}

@media (max-width: 374px) {
  .game-reviews {
    padding-inline: 14px;
  }

  .game-review-card {
    padding: 22px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-review-card {
    transition: none;
  }

  .game-review-card:hover {
    transform: none;
  }
}
