/* ==========================================================================
   u7777 Game — main.css
   Vanilla CSS3. Mobile-first. BEM-lite. Depends on tokens.css.
   Order: base > layout > decor > atoms > chrome > sections > pages > motion > rtl
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: var(--lh-snug);
  margin: 0 0 var(--s-4);
  color: #fff;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); line-height: 1.16; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--s-4); color: var(--c-text-2); }

a { color: var(--c-gold); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-gold-hi); }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

ul, ol { margin: 0 0 var(--s-4); padding-inline-start: 1.25em; color: var(--c-text-2); }
li { margin-bottom: var(--s-2); }

strong, b { color: var(--c-text); font-weight: 600; }

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line), transparent);
  margin: var(--s-7) 0;
}

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

:focus-visible {
  outline: 2px solid var(--c-gold-hi);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 50%;
  top: -80px;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-ink);
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  z-index: 200;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; color: var(--c-ink); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   2. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: calc(var(--container-narrow) + var(--gutter) * 2); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--alt { background: linear-gradient(180deg, rgba(30, 41, 59, 0) 0%, rgba(30, 41, 59, 0.34) 50%, rgba(30, 41, 59, 0) 100%); }

.section__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section__head--start { text-align: start; margin-inline: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 7px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  background: var(--c-gold-soft);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold-hi);
  box-shadow: 0 0 10px var(--c-gold-hi);
}

.section__lead {
  font-size: var(--fs-lead);
  color: var(--c-muted);
  margin-bottom: 0;
}

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

.text-gold {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider-gem {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 12px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, transparent, var(--c-line-strong) 30%, var(--c-line-strong) 70%, transparent) center / 100% 1px no-repeat;
  position: relative;
}
.divider-gem::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 10px; height: 10px;
  margin-inline-start: -5px;
  margin-top: -5px;
  background: var(--c-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
}

/* --------------------------------------------------------------------------
   3. AMBIENT DECOR (glow orbs + faceted gem grid)
   -------------------------------------------------------------------------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  contain: strict;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(59, 130, 246, 0.13), transparent 62%),
    radial-gradient(900px 620px at 6% 12%, rgba(212, 175, 55, 0.09), transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #0f1420 45%, #0a0e1a 100%);
}

.bg-decor::after {
  content: "";
  position: absolute;
  inset: -10%;
  opacity: 0.055;
  background-image:
    linear-gradient(60deg, rgba(212, 175, 55, 0.9) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(212, 175, 55, 0.9) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.6) 1px, transparent 1px);
  background-size: 128px 74px, 128px 74px, 128px 74px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, #000 35%, transparent 78%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.orb--1 { width: 520px; height: 520px; top: -140px; inset-inline-end: -120px; background: rgba(59, 130, 246, 0.2); animation: orbDrift 24s var(--ease) infinite alternate; }
.orb--2 { width: 460px; height: 460px; top: 44%; inset-inline-start: -160px; background: rgba(212, 175, 55, 0.13); animation: orbDrift 31s var(--ease) infinite alternate-reverse; }
.orb--3 { width: 380px; height: 380px; bottom: -120px; inset-inline-end: 22%; background: rgba(59, 130, 246, 0.12); animation: orbDrift 27s var(--ease) infinite alternate; }

@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-42px, 56px, 0) scale(1.14); }
}

/* --------------------------------------------------------------------------
   4. ATOMS — buttons, chips, badges, cards
   -------------------------------------------------------------------------- */
.btn {
  --btn-py: 14px;
  --btn-px: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.15;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              background-color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--gold {
  background: var(--grad-gold);
  color: #1a1405;
  box-shadow: var(--glow-gold-sm), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--gold:hover { color: #140f02; box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.62) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-out);
}
.btn--gold:hover::before, .btn--gold:focus-visible::before { transform: translateX(120%); }

.btn--ghost {
  background: rgba(232, 234, 240, 0.04);
  border-color: var(--c-line-strong);
  color: var(--c-text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--c-gold-hi);
  color: #fff;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: var(--glow-gold-sm);
}

.btn--tg {
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(41, 162, 225, 0.32);
}
.btn--tg:hover { color: #fff; box-shadow: 0 14px 34px rgba(41, 162, 225, 0.45); }

.btn--tg-outline {
  background: rgba(41, 162, 225, 0.1);
  border-color: rgba(41, 162, 225, 0.55);
  color: #9bd8f7;
}
.btn--tg-outline:hover { background: rgba(41, 162, 225, 0.2); border-color: #2aabee; color: #fff; }

.btn--sm { --btn-py: 10px; --btn-px: 18px; font-size: 0.86rem; }
.btn--lg { --btn-py: 17px; --btn-px: 34px; font-size: 1.04rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-pill);
}
.chip svg { color: var(--c-gold); }

.badge {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 2;
  padding: 4px 10px;
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  color: #fff;
}
.badge--hot { background: linear-gradient(135deg, #f97316, #ef4444); animation: breathe 2.8s var(--ease) infinite; }
.badge--new { background: linear-gradient(135deg, #16a34a, #22c55e); }
.badge--jackpot { background: var(--grad-gold); color: #1a1405; }

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.card {
  position: relative;
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.78) 0%, rgba(15, 20, 32, 0.9) 100%);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 30px);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: var(--sh-md), var(--glow-gold-sm);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: var(--s-4);
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.18), rgba(59, 130, 246, 0.12));
  border: 1px solid var(--c-line);
  color: var(--c-gold-hi);
}
.card__icon svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: var(--c-surface-glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--c-line);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
}

/* -- Logo : cropped to the artwork so it always reads at the right size -- */
.logo {
  display: block;
  flex: none;
  width: 152px;
  height: 29px;
  overflow: hidden;
  border-radius: 4px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: filter var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.logo:hover img { filter: drop-shadow(0 4px 16px rgba(244, 208, 63, 0.6)); transform: scale(1.06); }

.logo--lg { width: 240px; height: 46px; }
.logo--footer { width: 210px; height: 40px; margin-bottom: var(--s-4); }

.nav { display: none; margin-inline-start: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  display: block;
  padding: 9px 14px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(232, 234, 240, 0.06); }
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  inset-inline-start: 50%;
  width: 0; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--t-med) var(--ease);
}
.nav__link:hover::after { width: 24px; }
.nav__link.is-active { color: var(--c-gold-hi); }
.nav__link.is-active::after { width: 24px; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}
.nav + .header__actions { margin-inline-start: var(--s-4); }

/* -- Language switcher -- */
.lang {
  position: relative;
  flex: none;
}
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang__toggle:hover { border-color: var(--c-line-strong); color: #fff; }
.lang__toggle svg { width: 15px; height: 15px; }
.lang__caret { transition: transform var(--t-med) var(--ease); }
.lang.is-open .lang__caret { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 172px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(15, 20, 32, 0.97);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 13px;
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--c-text-2);
  background: none;
  border: 0;
  border-radius: var(--r-xs);
  cursor: pointer;
  text-align: start;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang__item:hover { background: rgba(212, 175, 55, 0.1); color: #fff; }
.lang__item[aria-checked="true"] { color: var(--c-gold-hi); font-weight: 600; }
.lang__item[aria-checked="true"]::after { content: "✓"; }

/* -- Hamburger -- */
.burger {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid var(--c-line-cool);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -- Drawer -- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
}
.drawer.is-open { visibility: visible; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(340px, 88vw);
  padding: 22px 22px calc(22px + var(--bottombar-h));
  overflow-y: auto;
  background: linear-gradient(180deg, #101524 0%, #0a0e1a 100%);
  border-inline-start: 1px solid var(--c-line);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
[dir="rtl"] .drawer__panel { transform: translateX(-100%); }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-6); }
.drawer__close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--c-line-cool);
  border-radius: 12px;
  cursor: pointer;
}
.drawer__close:hover { color: #fff; border-color: var(--c-line-strong); }
.drawer__list { list-style: none; margin: 0 0 var(--s-6); padding: 0; }
.drawer__list li { margin: 0; }
.drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid rgba(139, 147, 167, 0.1);
  transition: color var(--t-fast) var(--ease), padding-inline-start var(--t-fast) var(--ease);
}
.drawer__link:hover, .drawer__link.is-active { color: var(--c-gold-hi); padding-inline-start: 20px; }
.drawer__note {
  margin-top: var(--s-5);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  line-height: 1.6;
}

.drawer__lang {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(139, 147, 167, 0.12);
}
.drawer__lang p {
  font-family: var(--f-display);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.drawer__lang-row { display: flex; gap: 8px; flex-wrap: wrap; }
.drawer__lang .lang__item {
  flex: 1;
  min-width: 84px;
  justify-content: center;
  padding: 11px 10px;
  border: 1px solid var(--c-line-cool);
  background: rgba(30, 41, 59, 0.6);
}
.drawer__lang .lang__item[aria-checked="true"] {
  border-color: var(--c-line-strong);
  background: rgba(212, 175, 55, 0.12);
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(34px, 5vw, 64px));
  padding-bottom: clamp(48px, 6vw, 96px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(30px, 5vw, 48px);
  align-items: center;
  grid-template-areas:
    "intro"
    "stage"
    "actions"
    "stats";
}
.hero__intro { grid-area: intro; }
.hero__stage { grid-area: stage; }
.hero__actions { grid-area: actions; }

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.hero__title .text-gold { display: inline-block; }

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--c-muted);
  max-width: 58ch;
  margin-bottom: var(--s-6);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 var(--s-6);
  padding: 0;
  list-style: none;
}
.hero__trust li { margin: 0; }

.hero__cta { margin-bottom: var(--s-5); }

.hero__tg-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin: 0;
}

.hero__stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-line-cool);
}
.hero__stat b {
  display: block;
  font-family: var(--f-num);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--c-gold-hi);
}
.hero__stat span { font-size: var(--fs-xs); color: var(--c-muted); }

/* -- Stage: floating phone showcase -- */
.hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  perspective: 1400px;
}
.hero__stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  pointer-events: none;
}
.hero__stage-glow--a { width: 330px; height: 330px; background: rgba(212, 175, 55, 0.24); top: 6%; inset-inline-start: 4%; animation: orbDrift 18s var(--ease) infinite alternate; }
.hero__stage-glow--b { width: 290px; height: 290px; background: rgba(59, 130, 246, 0.26); bottom: 4%; inset-inline-end: 2%; animation: orbDrift 22s var(--ease) infinite alternate-reverse; }
.hero__stage-glow--c { width: 200px; height: 200px; background: rgba(244, 208, 63, 0.14); top: 44%; inset-inline-end: 26%; animation: orbDrift 15s var(--ease) infinite alternate; }

/* -- Floating info chips around the phone -- */
.float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: rgba(15, 20, 32, 0.9);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  box-shadow: var(--sh-md);
  backdrop-filter: blur(10px);
  font-size: var(--fs-xs);
  line-height: 1.35;
  max-width: 205px;
  animation: chipFloat 6s var(--ease) infinite;
}
.float-chip b { display: block; color: #fff; font-size: 0.84rem; font-family: var(--f-display); }
.float-chip span { color: var(--c-muted); }
.float-chip__ico {
  width: 32px; height: 32px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--c-gold-soft);
  border: 1px solid var(--c-line);
  font-size: 15px;
}
.float-chip--a { top: 8%; inset-inline-start: -2%; }
.float-chip--b { bottom: 16%; inset-inline-end: -3%; animation-delay: -3s; }
.float-chip--c { top: 46%; inset-inline-start: -6%; animation-delay: -1.5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* --------------------------------------------------------------------------
   7. PHONE MOCKUP (shared: hero + download)
   -------------------------------------------------------------------------- */
.phone {
  position: relative;
  z-index: 3;
  width: clamp(252px, 27vw, 316px);
  aspect-ratio: 9 / 19.3;
  padding: 11px;
  border-radius: 44px;
  background: linear-gradient(150deg, #4a5570 0%, #171d2c 26%, #0c111c 52%, #333c52 78%, #10141f 100%);
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(212, 175, 55, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 0 70px rgba(59, 130, 246, 0.14);
  transform-style: preserve-3d;
  animation: phoneBob 6s ease-in-out infinite;
  will-change: transform;
}
.phone--tilt { transform: rotateY(-11deg) rotateX(3deg) rotateZ(-1.2deg); }
.phone--tilt-r { transform: rotateY(9deg) rotateX(3deg) rotateZ(1deg); }

@keyframes phoneBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #050810;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.phone__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 6s linear;
}
.phone__slide.is-active { opacity: 1; transform: scale(1); }

.phone__notch {
  position: absolute;
  top: 12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 26px;
  background: #05070d;
  border-radius: var(--r-pill);
  z-index: 3;
}
.phone__notch::after {
  content: "";
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #2b4a7a, #0a1120);
}
.phone__gloss {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 28%, transparent 46%);
  border-radius: 34px;
}
.phone__btn {
  position: absolute;
  inset-inline-end: -3px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #3c465e, #1a2032);
}
.phone__btn--power { top: 22%; height: 62px; }
.phone__btn--vol { top: 14%; height: 34px; inset-inline-start: -3px; inset-inline-end: auto; }
.phone__btn--vol2 { top: 20%; height: 34px; inset-inline-start: -3px; inset-inline-end: auto; }

.phone__shadow {
  position: absolute;
  bottom: -6%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: 34px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), transparent 70%);
  filter: blur(9px);
  z-index: 1;
}

.phone__pill {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   8. STATS STRIP
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line-cool);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats__item {
  padding: clamp(22px, 3vw, 34px) var(--s-4);
  text-align: center;
  background: linear-gradient(170deg, rgba(30, 41, 59, 0.62), rgba(10, 14, 26, 0.86));
  transition: background-color var(--t-med) var(--ease);
}
.stats__item:hover { background: rgba(212, 175, 55, 0.07); }
.stats__num {
  display: block;
  font-family: var(--f-num);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stats__label {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. GAME CARDS / GRID / FILTERS
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.filters__btn {
  padding: 10px 20px;
  font-family: var(--f-display);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
}
.filters__btn:hover { color: #fff; border-color: var(--c-line-strong); }
.filters__btn.is-active {
  background: var(--grad-gold);
  border-color: transparent;
  color: #1a1405;
  box-shadow: var(--glow-gold-sm);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(134px, 1fr));
  gap: clamp(10px, 3vw, 20px);
}

.game-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-line-cool);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  animation: cardIn 0.45s var(--ease-out) backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.game-card.is-hidden { display: none; }
.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-line-strong);
  box-shadow: var(--sh-md), var(--glow-gold-sm);
}
.game-card__media {
  display: block;
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: #0d1220;
}
.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.game-card:hover .game-card__media img { transform: scale(1.08); }
.game-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.1) 0%, rgba(10, 14, 26, 0.86) 100%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.game-card:hover .game-card__overlay, .game-card:focus-visible .game-card__overlay { opacity: 1; }
.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1405;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  transform: translateY(10px);
  transition: transform var(--t-med) var(--ease-out);
}
.game-card:hover .game-card__play { transform: translateY(0); }
.game-card__body { display: block; padding: clamp(9px, 2.4vw, 13px) clamp(10px, 2.6vw, 13px) clamp(10px, 2.6vw, 13px); }
.game-card__name {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(0.78rem, 0.7rem + 0.35vw, 0.86rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: clamp(0.68rem, 0.64rem + 0.15vw, 0.7rem);
  color: var(--c-muted);
}
.game-card__meta > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.game-card__rtp { flex: none; color: var(--c-gold); font-variant-numeric: tabular-nums; font-weight: 600; }

/* Touch devices can't hover — keep a permanent "Play Now" affordance visible */
@media (hover: none), (max-width: 767px) {
  .game-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 56%, rgba(10, 14, 26, 0.82) 100%);
    align-items: end;
    justify-items: center;
    padding-bottom: 10px;
  }
  .game-card__play {
    transform: none;
    padding: 7px 15px;
    font-size: 0.7rem;
  }
  .game-card:hover .game-card__media img { transform: none; }
}

.games-empty {
  display: none;
  text-align: center;
  padding: var(--s-8) var(--s-4);
  color: var(--c-muted);
}
.games-empty.is-visible { display: block; }

.load-more-wrap { text-align: center; margin-top: var(--s-7); }
.load-more-wrap p { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--s-3); }

/* --------------------------------------------------------------------------
   10. HOW IT WORKS (steps)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  position: relative;
}
.step {
  position: relative;
  padding: clamp(24px, 2.6vw, 32px);
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.7), rgba(10, 14, 26, 0.85));
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-lg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--c-line-strong); box-shadow: var(--glow-gold-sm); }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: var(--s-4);
  font-family: var(--f-num);
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1405;
  background: var(--grad-gold);
  border-radius: 14px;
  transform: rotate(45deg);
  box-shadow: var(--glow-gold-sm);
}
.step__num span { transform: rotate(-45deg); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); margin-bottom: 0; }
.step__line {
  display: none;
  position: absolute;
  top: 56px;
  inset-inline-start: calc(100% + 1px);
  width: clamp(20px, 2.4vw, 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 7px, transparent 7px 14px);
  opacity: 0.5;
  animation: dashFlow 1.4s linear infinite;
}
@keyframes dashFlow {
  to { background-position-x: 14px; }
}

/* --------------------------------------------------------------------------
   11. BONUS SPOTLIGHT
   -------------------------------------------------------------------------- */
.bonus {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(30px, 4.4vw, 64px);
  background:
    radial-gradient(700px 320px at 88% 8%, rgba(244, 208, 63, 0.2), transparent 62%),
    linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(30, 41, 59, 0.9) 46%, rgba(10, 14, 26, 0.96) 100%);
  border: 1px solid var(--c-line-strong);
  box-shadow: var(--sh-lg);
}
.bonus::before {
  content: "";
  position: absolute;
  inset-inline-end: -90px;
  top: -90px;
  width: 320px; height: 320px;
  background: conic-gradient(from 45deg, rgba(212, 175, 55, 0.16), transparent 42%, rgba(59, 130, 246, 0.14), transparent 78%);
  border-radius: 40px;
  transform: rotate(24deg);
  pointer-events: none;
}
.bonus__grid { display: grid; gap: var(--s-6); align-items: center; position: relative; z-index: 1; }
.bonus__amount {
  display: block;
  font-family: var(--f-num);
  font-size: clamp(2.9rem, 1.9rem + 4.6vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  text-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}
.bonus__list { list-style: none; padding: 0; margin: 0 0 var(--s-6); }
.bonus__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  margin-bottom: 11px;
}
.bonus__list svg { flex: none; color: var(--c-gold-hi); margin-top: 3px; }
.bonus__fine { font-size: var(--fs-xs); color: var(--c-muted); margin: var(--s-4) 0 0; }

.bonus-tiers {
  display: grid;
  gap: 12px;
}
.bonus-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 15px 20px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-md);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.bonus-tier:hover { border-color: var(--c-line-strong); transform: translateX(4px); }
.bonus-tier__label { font-size: var(--fs-sm); color: var(--c-text-2); }
.bonus-tier__label b { display: block; font-family: var(--f-display); color: #fff; font-size: 0.98rem; }
.bonus-tier__value {
  font-family: var(--f-num);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--c-gold-hi);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   12. OG BANNER SECTION
   -------------------------------------------------------------------------- */
.ogbanner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line-strong);
  box-shadow: var(--sh-lg), 0 0 90px rgba(212, 175, 55, 0.1);
  background: #070b14;
}
.ogbanner__frame {
  position: relative;
  display: block;
  overflow: hidden;
}
.ogbanner__frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.005);
  transition: transform 1.1s var(--ease);
}
.ogbanner:hover .ogbanner__frame img { transform: scale(1.035); }
.ogbanner__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 11, 20, 0.55) 78%, rgba(7, 11, 20, 0.94) 100%);
  pointer-events: none;
}
.ogbanner__sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  transform: translateX(-110%);
  pointer-events: none;
  animation: sheen 7s var(--ease) infinite;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-110%); }
  92%, 100% { transform: translateX(110%); }
}
.ogbanner__caption {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--s-4);
  padding: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 40px) clamp(24px, 3vw, 38px);
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.94), rgba(10, 14, 26, 1));
  align-items: center;
}
.ogbanner__caption h3 { margin-bottom: 6px; }
.ogbanner__caption p { margin-bottom: 0; font-size: var(--fs-sm); }
.ogbanner__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* --------------------------------------------------------------------------
   13. SCREENSHOT SLIDER
   -------------------------------------------------------------------------- */
.shots { position: relative; }
.shots__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 14px 26px;
  cursor: grab;
}
.shots__viewport::-webkit-scrollbar { display: none; }
.shots__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.shots__track {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  padding-inline: var(--gutter);
  width: max-content;
}
.shot {
  scroll-snap-align: center;
  flex: none;
  width: clamp(178px, 20vw, 224px);
  position: relative;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(150deg, #414b64 0%, #151b28 30%, #0b101a 60%, #2c3548 100%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.18);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.shot:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.5), var(--glow-gold-sm);
}
.shot__screen {
  border-radius: 21px;
  overflow: hidden;
  aspect-ratio: 9 / 18.9;
  background: #05080f;
}
.shot__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.shot__cap {
  display: block;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-muted);
  padding-top: 11px;
}

.shots__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-4);
}
.shots__arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  flex: none;
  color: var(--c-text);
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid var(--c-line-cool);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
}
.shots__arrow:hover { border-color: var(--c-gold); color: var(--c-gold-hi); box-shadow: var(--glow-gold-sm); }
.shots__dots { display: flex; gap: 7px; }
.shots__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(139, 147, 167, 0.35);
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
}
.shots__dot.is-active { width: 26px; background: var(--grad-gold); }

/* --------------------------------------------------------------------------
   14. COMMUNITY / TELEGRAM
   -------------------------------------------------------------------------- */
.tg-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-cool);
  background: linear-gradient(160deg, rgba(41, 162, 225, 0.1) 0%, rgba(15, 20, 32, 0.92) 55%);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.tg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 162, 225, 0.5);
  box-shadow: var(--sh-md), 0 0 34px rgba(41, 162, 225, 0.18);
}
.tg-card--gold { background: linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, rgba(15, 20, 32, 0.92) 55%); }
.tg-card--gold:hover { border-color: var(--c-line-strong); box-shadow: var(--sh-md), var(--glow-gold-sm); }
.tg-card__ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: var(--s-4);
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #fff;
  box-shadow: 0 10px 26px rgba(41, 162, 225, 0.35);
}
.tg-card__ico svg { width: 30px; height: 30px; }
.tg-card ul { list-style: none; padding: 0; margin: 0 0 var(--s-5); }
.tg-card ul li {
  position: relative;
  padding-inline-start: 22px;
  font-size: var(--fs-sm);
  margin-bottom: 8px;
}
.tg-card ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 7px; height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-md);
  background: rgba(15, 20, 32, 0.6);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), background-color var(--t-med) var(--ease);
}
.faq__item.is-open { border-color: var(--c-line-strong); background: rgba(30, 41, 59, 0.55); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: 19px clamp(16px, 2vw, 24px);
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: start;
  color: var(--c-text);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.faq__q:hover { color: var(--c-gold-hi); }
.faq__chev { flex: none; color: var(--c-gold); transition: transform var(--t-med) var(--ease); }
.faq__item.is-open .faq__chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq__a-inner {
  padding: 0 clamp(16px, 2vw, 24px) 20px;
  font-size: var(--fs-sm);
  color: var(--c-text-2);
}
.faq__a-inner p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   16. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 56px);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line-strong);
  background:
    radial-gradient(620px 300px at 50% 0%, rgba(212, 175, 55, 0.2), transparent 66%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(10, 14, 26, 0.96));
}
.cta-banner h2 { max-width: 20ch; margin-inline: auto; }
.cta-banner p { max-width: 62ch; margin-inline: auto; }
.cta-banner .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  margin-top: var(--section-y);
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: calc(var(--bottombar-h) + 26px);
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.4), #070a12);
  border-top: 1px solid var(--c-line);
}
.footer__grid {
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
  margin-bottom: var(--s-7);
}
.footer__about p { font-size: var(--fs-sm); }
.footer__title {
  font-family: var(--f-display);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  transition: color var(--t-fast) var(--ease), padding-inline-start var(--t-fast) var(--ease);
  display: inline-block;
}
.footer__list a:hover { color: var(--c-gold-hi); padding-inline-start: 5px; }

.footer__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--s-4); }
.footer__social {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--c-line-cool);
  transition: all var(--t-med) var(--ease);
}
.footer__social:hover { color: #fff; border-color: rgba(41, 162, 225, 0.6); background: rgba(41, 162, 225, 0.18); transform: translateY(-3px); }

.footer__disclaimer {
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.05);
  margin-bottom: var(--s-6);
}
.footer__disclaimer p {
  font-size: var(--fs-xs);
  line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }
.footer__disclaimer strong { color: var(--c-text-2); }

.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-5); }
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid #ef4444;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.14);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-cool);
  font-size: var(--fs-xs);
  color: var(--c-muted);
}
.footer__bottom p { margin: 0; font-size: inherit; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { color: var(--c-muted); }
.footer__legal a:hover { color: var(--c-gold-hi); }

.footer__keywords {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-cool);
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(139, 147, 167, 0.72);
}
.footer__keywords b { color: var(--c-muted); font-weight: 600; }

/* --------------------------------------------------------------------------
   18. FAB + MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.fab {
  position: fixed;
  inset-inline-end: 18px;
  bottom: calc(var(--bottombar-h) + 16px);
  z-index: var(--z-fab);
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  box-shadow: 0 12px 30px rgba(41, 162, 225, 0.42);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.fab:hover { transform: scale(1.09); color: #fff; box-shadow: 0 18px 42px rgba(41, 162, 225, 0.6); }
.fab svg { width: 28px; height: 28px; }
.fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(41, 162, 225, 0.6);
  animation: pulseRing 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.85; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.fab__label {
  position: absolute;
  inset-inline-end: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text);
  background: rgba(15, 20, 32, 0.95);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.fab:hover .fab__label { opacity: 1; transform: translateY(-50%) translateX(0); }

.bottombar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-bar);
  height: var(--bottombar-h);
  display: flex;
  align-items: stretch;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-line);
  transform: translateY(100%);
  animation: barUp 0.5s var(--ease-out) 0.35s forwards;
}
@keyframes barUp { to { transform: translateY(0); } }
.bottombar__ind {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 20%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: transform 0.38s var(--ease-out);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}
.bottombar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--t-fast) var(--ease);
}
.bottombar__item svg { width: 21px; height: 21px; }
.bottombar__item.is-active { color: var(--c-gold-hi); }
.bottombar__item.is-active svg { filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.6)); }

/* --------------------------------------------------------------------------
   19. PAGE HEADER (inner pages) + PROSE
   -------------------------------------------------------------------------- */
.pagehead {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(34px, 4.4vw, 62px));
  padding-bottom: clamp(28px, 3.6vw, 50px);
  text-align: center;
  overflow: hidden;
}
.pagehead__lead {
  font-size: var(--fs-lead);
  color: var(--c-muted);
  max-width: 68ch;
  margin-inline: auto;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4);
  font-size: var(--fs-xs);
  color: var(--c-muted);
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: "/"; color: rgba(139, 147, 167, 0.5); }
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-gold-hi); }

.prose { max-width: 78ch; }
.prose h2 {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-cool);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { margin-top: var(--s-6); color: var(--c-gold-hi); }
.prose h4 { margin-top: var(--s-5); }
.prose ul li, .prose ol li { margin-bottom: 10px; }
.prose ul { list-style: none; padding-inline-start: 0; }
.prose ul li {
  position: relative;
  padding-inline-start: 24px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 2px;
  top: 11px;
  width: 7px; height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
  opacity: 0.85;
}
.prose ol { padding-inline-start: 22px; }
.prose ol li::marker { color: var(--c-gold); font-weight: 700; }

.callout {
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  border-inline-start: 3px solid var(--c-gold);
  background: rgba(212, 175, 55, 0.06);
  margin: var(--s-5) 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout__title {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-gold-hi);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.callout--warn { border-inline-start-color: var(--c-hot); background: rgba(239, 68, 68, 0.06); }
.callout--warn .callout__title { color: #fca5a5; }
.callout--blue { border-inline-start-color: var(--c-blue); background: rgba(59, 130, 246, 0.07); }
.callout--blue .callout__title { color: #93c5fd; }

.toc {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: var(--s-5);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-md);
  background: rgba(15, 20, 32, 0.72);
}
.toc__title {
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 9px; }
.toc a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.45;
}
.toc a::before { content: counter(toc) ". "; color: var(--c-gold); font-weight: 700; }
.toc a:hover { color: var(--c-text); }

.layout-doc { display: grid; gap: clamp(28px, 3.6vw, 52px); align-items: start; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-md);
  margin: var(--s-5) 0;
}
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: var(--fs-sm); }
th, td { padding: 13px 16px; text-align: start; border-bottom: 1px solid var(--c-line-cool); }
th {
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(30, 41, 59, 0.6);
}
td { color: var(--c-text-2); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(212, 175, 55, 0.04); }

/* --------------------------------------------------------------------------
   20. DOWNLOAD PAGE
   -------------------------------------------------------------------------- */
.dl-hero__grid { display: grid; gap: clamp(36px, 4.6vw, 60px); align-items: center; }
.dl-stage { position: relative; display: grid; place-items: center; min-height: 470px; perspective: 1400px; }

.dl-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line-cool);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: var(--s-5) 0;
}
.dl-meta__cell { padding: 14px 16px; background: rgba(15, 20, 32, 0.8); }
.dl-meta__k { display: block; font-size: var(--fs-xs); color: var(--c-muted); margin-bottom: 3px; }
.dl-meta__v { font-family: var(--f-display); font-weight: 600; color: var(--c-text); font-size: 0.94rem; }

.qr-box {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.05);
  max-width: 380px;
}
.qr-box__code {
  width: 92px; height: 92px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    repeating-conic-gradient(#0a0e1a 0% 25%, #e8eaf0 0% 50%) 0 0 / 13px 13px;
  border: 4px solid #e8eaf0;
  position: relative;
  overflow: hidden;
}
.qr-box__code span {
  position: absolute;
  inset: 32%;
  background: #0a0e1a;
  border: 3px solid #e8eaf0;
  border-radius: 4px;
}
.qr-box p { font-size: var(--fs-xs); margin: 0; }
.qr-box b { display: block; font-family: var(--f-display); color: var(--c-text); margin-bottom: 4px; }

.install-steps { counter-reset: inst; list-style: none; padding: 0; margin: 0; }
.install-steps > li {
  counter-increment: inst;
  position: relative;
  padding: 0 0 var(--s-6) 54px;
  margin: 0;
}
[dir="rtl"] .install-steps > li { padding: 0 54px var(--s-6) 0; }
.install-steps > li::before {
  content: counter(inst);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--f-num);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-gold-hi);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
}
.install-steps > li::after {
  content: "";
  position: absolute;
  inset-inline-start: 19px;
  top: 44px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-line-strong), transparent);
}
.install-steps > li:last-child { padding-bottom: 0; }
.install-steps > li:last-child::after { display: none; }
.install-steps h3 { font-size: 1.06rem; margin-bottom: 6px; }
.install-steps p { font-size: var(--fs-sm); margin-bottom: 0; }
.install-steps ul { margin-top: 10px; }

/* --------------------------------------------------------------------------
   21. CONTACT FORM
   -------------------------------------------------------------------------- */
.form-grid { display: grid; gap: var(--s-4); }
.field { display: grid; gap: 7px; }
.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text-2);
}
.field label .req { color: var(--c-hot); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text);
  background: rgba(10, 14, 26, 0.7);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(139, 147, 167, 0.65); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.field textarea { resize: vertical; min-height: 132px; }
.field__err { font-size: var(--fs-xs); color: #fca5a5; min-height: 1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--c-hot); }

.form-note { font-size: var(--fs-xs); color: var(--c-muted); }
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  border: 1px solid rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}
.form-status.is-visible { display: block; }

.contact-item {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line-cool);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__ico {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--c-gold-soft);
  border: 1px solid var(--c-line);
  color: var(--c-gold-hi);
}
.contact-item b { display: block; font-family: var(--f-display); color: #fff; margin-bottom: 3px; }
.contact-item p { font-size: var(--fs-sm); margin: 0; }

/* --------------------------------------------------------------------------
   22. MISC CONTENT BLOCKS
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(28px, 3.6vw, 52px); align-items: center; }

.figure-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-md);
}
.figure-frame img { width: 100%; }

.mini-list { list-style: none; padding: 0; margin: 0; }
.mini-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(139, 147, 167, 0.16);
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  margin: 0;
}
.mini-list li:last-child { border-bottom: 0; }
.mini-list svg { flex: none; color: var(--c-gold-hi); margin-top: 3px; }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-cloud span {
  padding: 7px 14px;
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--c-line-cool);
  border-radius: var(--r-pill);
  transition: all var(--t-med) var(--ease);
}
.kw-cloud span:hover { border-color: var(--c-line-strong); color: var(--c-gold-hi); transform: translateY(-2px); }

.quote {
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-cool);
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.7), rgba(10, 14, 26, 0.86));
}
.quote p { font-size: 1.02rem; font-style: italic; color: var(--c-text); }
.quote footer { display: flex; align-items: center; gap: 12px; font-size: var(--fs-xs); color: var(--c-muted); }
.quote__avatar {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1405;
  font-family: var(--f-display);
  font-weight: 800;
}
.quote__stars { color: var(--c-gold-hi); letter-spacing: 2px; margin-bottom: 10px; display: block; }

/* --------------------------------------------------------------------------
   23. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   24. RTL
   -------------------------------------------------------------------------- */
[dir="rtl"] body { font-family: "Noto Naskh Arabic", "Segoe UI", var(--f-body); }
[dir="rtl"] .phone--tilt { transform: rotateY(11deg) rotateX(3deg) rotateZ(1.2deg); }
[dir="rtl"] .phone--tilt-r { transform: rotateY(-9deg) rotateX(3deg) rotateZ(-1deg); }
[dir="rtl"] .btn--gold::before { transform: translateX(120%); }
[dir="rtl"] .btn--gold:hover::before { transform: translateX(-120%); }
[dir="rtl"] .step__num { transform: rotate(45deg); }
[dir="rtl"] .breadcrumbs li + li::before { content: "\\"; }
[dir="rtl"] .shots__arrow svg { transform: scaleX(-1); }
[dir="rtl"] .bottombar__ind { inset-inline-start: auto; inset-inline-end: 0; }

/* --------------------------------------------------------------------------
   25. BREAKPOINTS
   -------------------------------------------------------------------------- */
/* Small phones: keep the header on one line — language lives in the drawer */
@media (max-width: 559px) {
  .header .lang { display: none; }
  .header__actions .btn--sm { --btn-px: 15px; font-size: 0.8rem; }
}

/* Phone view: smaller, tighter buttons everywhere a --lg button is used */
@media (max-width: 599px) {
  .btn--lg {
    --btn-py: 12px;
    --btn-px: 20px;
    font-size: 0.86rem;
  }
  .btn-row { gap: 10px; }
  .hero__cta { margin-bottom: var(--s-4); }
  .hero__stage { min-height: 380px; }
}

@media (min-width: 480px) {
  .logo { width: 178px; height: 34px; }
}

@media (min-width: 560px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
  .ogbanner__caption { grid-template-columns: 1fr auto; }
  .drawer__lang { display: none; }
}

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bonus__grid { grid-template-columns: 1.05fr 0.95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .dl-meta { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .bottombar, .fab { }
  .fab { bottom: 26px; }
  .bottombar { display: none; }
  .footer { padding-bottom: clamp(30px, 3vw, 44px); }
  .logo { width: 200px; height: 38px; }
}

@media (min-width: 900px) {
  .nav { display: block; }
  .burger { display: none; }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "intro   stage"
      "actions stage"
      "stats   stage";
  }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step__line { display: block; }
  .steps .step:last-child .step__line { display: none; }
  .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.15fr; }
  .layout-doc { grid-template-columns: 260px 1fr; }
  .games-grid { grid-template-columns: repeat(5, 1fr); }
  .games-grid--home { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1200px) {
  .games-grid { grid-template-columns: repeat(6, 1fr); }
  .games-grid--home { grid-template-columns: repeat(6, 1fr); }
}

/* --------------------------------------------------------------------------
   26. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .phone { animation: none; }
  .bottombar { transform: none; }
  .orb { animation: none; }
}

/* --------------------------------------------------------------------------
   27. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header, .bottombar, .fab, .bg-decor, .drawer, .shots__nav { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
