/* ============================================================
   1JJ GAME — MAIN STYLES
   Global · Layout · Components (BEM-lite)
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: var(--lh-tight); color: var(--text); }
p { color: var(--text-2); }
strong { color: var(--text); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: rgba(240,201,75,0.35); color: var(--text); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 50%; top: -60px;
  transform: translateX(-50%);
  background: var(--royal-blue);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: var(--z-toast);
  transition: top var(--dur) var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: 0; }

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

.section { padding-block: var(--section-y); position: relative; }
.section--alt   { background: var(--bg-alt); }
.section--tint  { background: var(--bg-tint); }
.section--blue  { background: var(--grad-royal); color: var(--text-on-blue); }
.section--blue h1,.section--blue h2,.section--blue h3,.section--blue h4 { color: #fff; }
.section--blue p { color: rgba(255,255,255,0.82); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }

.section-head { max-width: 760px; margin: 0 auto clamp(2.2rem,4vw,3.4rem); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--grad-gold); border-radius: 2px;
}
.section-head--center .eyebrow { justify-content: center; }
.section--blue .eyebrow { color: var(--gold-bright); }

.section-title { font-size: var(--fs-h2); letter-spacing: -0.01em; }
.section-sub { margin-top: 1rem; font-size: var(--fs-lead); color: var(--text-2); line-height: 1.65; }
.section--blue .section-sub { color: rgba(255,255,255,0.85); }

.lead { font-size: var(--fs-lead); color: var(--text-2); line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.95rem;
  --btn-pad-x: 2rem;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }

.btn--gold {
  background: var(--grad-gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-gold-sm);
}
.btn--gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-gold);
}
.btn--gold::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: translateX(-140%) skewX(-18deg);
  pointer-events: none;
}
.btn--gold:hover::after { animation: shimmerSweep 0.9s var(--ease) forwards; }

.btn--blue {
  background: var(--royal-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(26,60,143,0.24);
}
.btn--blue:hover { transform: translateY(-2px) scale(1.02); background: var(--royal-blue-700); box-shadow: var(--shadow-blue); }

.btn--outline {
  background: transparent;
  color: var(--royal-blue);
  box-shadow: inset 0 0 0 2px rgba(26,60,143,0.4);
}
.btn--outline:hover { box-shadow: inset 0 0 0 2px var(--royal-blue); background: var(--royal-blue-050); transform: translateY(-2px); }

.btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.btn--lg { --btn-pad-y: 1.15rem; --btn-pad-x: 2.6rem; font-size: 1.08rem; }
.btn--sm { --btn-pad-y: 0.62rem; --btn-pad-x: 1.3rem; font-size: 0.9rem; }
.btn--block { display: flex; width: 100%; }

/* Telegram button */
.btn--telegram {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 8px 22px rgba(34,158,217,0.32);
}
.btn--telegram:hover { transform: translateY(-2px) scale(1.02); background: #1c8dc4; }
.btn--telegram svg { width: 1.25em; height: 1.25em; }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-row--center { justify-content: center; }

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), height var(--dur) var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(13,27,62,0.08);
  background: rgba(255,255,255,0.97);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  transition: height var(--dur) var(--ease);
}
.header.is-scrolled .nav { height: 66px; }

/* Logo — best-fit, professional (logo image only, no adjacent text lockup).
   The artwork itself contains large white highlights/outline, so on a white
   navbar it needs a dark plate behind it for contrast — otherwise it visually
   disappears against the page background. */
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-900) 100%);
  box-shadow: 0 6px 16px rgba(15,37,96,0.28), inset 0 0 0 1px rgba(240,201,75,0.35);
  transition: padding var(--dur) var(--ease);
}
.nav__logo {
  height: 42px; width: auto; display: block;
  transition: height var(--dur) var(--ease);
}
.header.is-scrolled .nav__logo-badge { padding: 0.4rem 0.75rem; }
.header.is-scrolled .nav__logo { height: 36px; }

.nav__menu { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.32rem;
  height: 2.5px; border-radius: 2px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--royal-blue); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--royal-blue); }

.nav__actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav__tg {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--royal-blue-050); color: var(--royal-blue);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__tg:hover { background: #229ED9; color: #fff; transform: translateY(-2px); }
.nav__tg svg { width: 22px; height: 22px; }

/* Hamburger */
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--royal-blue-050); place-items: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2.4px; background: var(--royal-blue); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after  { transform: translateY(4.6px); }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: rotate(45deg); }
.nav__toggle.is-open span::after  { transform: rotate(-45deg) translateY(-1.6px) translateX(1px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: var(--z-menu);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem var(--gutter) 1.8rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 0.5rem; font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--border-soft); color: var(--text);
}
.mobile-menu__link.is-active { color: var(--royal-blue); }
.mobile-menu__cta { margin-top: 1.2rem; display: grid; gap: 0.7rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero-bg);
  padding-block: clamp(3rem, 2rem + 6vw, 6rem) clamp(3.5rem, 2rem + 6vw, 6.5rem);
  overflow: hidden;
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem; border-radius: var(--r-pill);
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border-gold);
  font-weight: 600; font-size: 0.86rem; color: var(--text);
  margin-bottom: 1.4rem;
}
.hero__badge b { color: var(--gold-deep); }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }
.hero__title { font-size: var(--fs-h1); letter-spacing: -0.02em; }
.hero__title span { display: inline-block; }
.hero__sub { margin-top: 1.4rem; font-size: var(--fs-lead); color: var(--text-2); max-width: 44ch; }
.hero__cta { margin-top: 2rem; }
.hero__meta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__meta-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--text-2); font-weight: 500; }
.hero__meta-item svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* Hero app mockup */
.hero__visual { position: relative; display: grid; place-items: center; }
.phone-mock {
  position: relative;
  width: min(320px, 78%);
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(160deg, #26469b, #0F2560);
  box-shadow: 0 40px 80px rgba(15,37,96,0.35), inset 0 0 0 2px rgba(240,201,75,0.35);
  z-index: 2;
}
.phone-mock::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 46%; height: 22px; background: #0F2560; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone-mock__screen { border-radius: 30px; overflow: hidden; background: #fff; aspect-ratio: 527/950; }
.phone-mock__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero__glow {
  position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,201,75,0.35), transparent 65%);
  filter: blur(10px); z-index: 0;
}
.hero__ring {
  position: absolute; inset: -6% ; border: 2px dashed rgba(201,168,76,0.35); border-radius: 50%;
  z-index: 1; pointer-events: none;
}
.hero__float-badge {
  position: absolute; z-index: 4;
  background: #fff; border-radius: var(--r-md); padding: 0.7rem 1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.9rem; border: 1px solid var(--border);
}
.hero__float-badge small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--text-3); }
.hero__float-badge .fb-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-gold); color: var(--text-on-gold); flex-shrink: 0; }
.hero__float-badge--tl { top: 8%; left: -2%; }
.hero__float-badge--br { bottom: 10%; right: -4%; }

.scroll-hint { margin-top: 2.6rem; display: inline-flex; flex-direction: column; align-items: center; gap: 0.3rem; color: var(--text-3); font-size: 0.78rem; letter-spacing: var(--ls-wide); text-transform: uppercase; font-family: var(--font-accent); font-weight: 600; }
.scroll-hint__arrow { width: 20px; height: 20px; color: var(--gold-deep); }

/* ---------- Trust bar / stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.stat {
  text-align: center; padding: 1.6rem 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold-sm); border-color: var(--border-gold); }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); line-height: 1;
  background: var(--grad-text); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { margin-top: 0.5rem; font-weight: 600; color: var(--text-2); font-size: 0.95rem; }
.stat__ico { width: 40px; height: 40px; margin: 0 auto 0.8rem; color: var(--gold-deep); }
.section--blue .stat { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.section--blue .stat__num { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--blue .stat__label { color: rgba(255,255,255,0.82); }
.section--blue .stat__ico { color: var(--gold-bright); }

/* ---------- Cards grid generic ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Feature cards */
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.feature:hover::before { transform: scaleX(1); }
.feature__ico {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--royal-blue-050), #fff);
  border: 1px solid var(--border-gold); color: var(--royal-blue);
}
.feature__ico svg { width: 28px; height: 28px; }
.feature__title { font-size: var(--fs-h5); margin-bottom: 0.6rem; }
.feature__text { font-size: 0.98rem; line-height: 1.65; }

/* ---------- Game cards ---------- */
.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.game-card {
  position: relative;
  background: #fff; border: 1px solid rgba(26,60,143,0.12); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,168,76,0.25);
  border-color: var(--border-gold);
}
.game-card__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); }
.game-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.game-card:hover .game-card__img { transform: scale(1.07); }
.game-card__badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  padding: 0.28rem 0.7rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--text-on-gold);
  font-family: var(--font-accent); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase; box-shadow: var(--shadow-gold-sm);
}
.game-card__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1.1rem;
  background: linear-gradient(to top, rgba(13,27,62,0.78), rgba(13,27,62,0.05) 55%, transparent);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play {
  transform: translateY(10px); transition: transform var(--dur) var(--ease-spring);
  padding: 0.6rem 1.4rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--text-on-gold); font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.game-card:hover .game-card__play { transform: translateY(0); }
.game-card__body { padding: 0.9rem 1rem 1.1rem; }
.game-card__name { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.25; }
.game-card__prov { font-size: 0.8rem; color: var(--text-3); margin-top: 0.2rem; }

/* ---------- Bonus banner ---------- */
.bonus {
  position: relative; overflow: hidden;
  background: var(--grad-royal); color: #fff; border-radius: var(--r-xl);
  padding: clamp(2.4rem, 2rem + 3vw, 4rem);
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center;
  box-shadow: var(--shadow-blue);
}
.bonus::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240,201,75,0.28), transparent 65%); pointer-events: none;
}
.bonus__eyebrow { color: var(--gold-bright); }
.bonus__amount {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4.4rem);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin: 0.4rem 0 0.6rem;
}
.bonus__title { color: #fff; font-size: var(--fs-h3); }
.bonus__text { color: rgba(255,255,255,0.85); margin-top: 0.8rem; max-width: 46ch; }
.bonus__side { display: grid; gap: 0.8rem; justify-items: center; }
.bonus__coin {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--grad-gold); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: var(--royal-blue-900); font-size: 1.5rem;
  box-shadow: var(--glow-gold); text-align: center; line-height: 1.05;
}

/* ---------- Steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2.2rem 1.6rem 1.8rem; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  width: 56px; height: 56px; margin: -3.6rem auto 1rem; border-radius: 50%;
  background: var(--grad-royal); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  box-shadow: var(--shadow-blue); border: 3px solid #fff;
}
.step__title { font-size: var(--fs-h5); margin-bottom: 0.5rem; }
.step__text { font-size: 0.96rem; }
.steps--line .step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; right: -0.7rem; width: 1.4rem; height: 2px;
  background: var(--grad-gold);
}

/* ---------- Testimonials ---------- */
.testi {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.9rem;
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 1rem;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi__stars { display: flex; gap: 0.15rem; color: var(--gold); }
.testi__stars svg { width: 18px; height: 18px; }
.testi__quote { color: var(--text-2); font-style: italic; line-height: 1.65; }
.testi__foot { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testi__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-royal); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
}
.testi__name { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.testi__role { font-size: 0.82rem; color: var(--text-3); }

/* ---------- Telegram cards ---------- */
.tg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.tg-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #229ED9; }
.tg-card__ico { width: 56px; height: 56px; border-radius: var(--r-md); background: #229ED9; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(34,158,217,0.3); }
.tg-card__ico svg { width: 30px; height: 30px; }
.tg-card__title { font-size: var(--fs-h5); }
.tg-card__text { font-size: 0.96rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.faq__item.is-open { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; text-align: left; font-weight: 700; font-size: 1.04rem; color: var(--text);
  font-family: var(--font-body);
}
.faq__q:hover { color: var(--royal-blue); }
.faq__icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--royal-blue-050); display: grid; place-items: center; position: relative; transition: background var(--dur) var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--royal-blue); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--grad-gold); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--text-on-gold); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.faq__a-inner { padding: 0 1.4rem 1.3rem; color: var(--text-2); line-height: 1.7; }
.faq__a-inner p + p { margin-top: 0.7rem; }

/* ---------- Screenshot slider (coverflow — screenshots are portrait phone shots) ---------- */
.shots { position: relative; }
.shots__stage {
  position: relative;
  height: clamp(400px, 46vw, 560px);
  display: flex; align-items: center; justify-content: center;
}
.shots__track { position: absolute; inset: 0; }
.shots__phone {
  position: absolute; top: 50%; left: 50%;
  width: clamp(190px, 20vw, 230px);
  transform: translate(-50%, -50%) translateX(calc(var(--pos, 0) * 62%)) scale(var(--scale, 0.8));
  opacity: var(--opacity, 0);
  z-index: var(--z, 1);
  filter: blur(var(--blur, 2px));
  transition: transform 0.65s var(--ease-out), opacity 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  pointer-events: none;
  cursor: pointer;
}
.shots__phone.is-active { pointer-events: none; cursor: default; }
.shots__phone-frame {
  position: relative;
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(160deg, #26469b, #0F2560);
  box-shadow: 0 26px 50px rgba(15,37,96,0.32), inset 0 0 0 2px rgba(240,201,75,0.28);
  transition: box-shadow var(--dur) var(--ease);
}
.shots__phone.is-active .shots__phone-frame {
  box-shadow: 0 34px 68px rgba(15,37,96,0.4), inset 0 0 0 2px rgba(240,201,75,0.55), 0 0 40px rgba(240,201,75,0.22);
}
.shots__phone-frame::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 14px; background: #0F2560; border-radius: 0 0 10px 10px; z-index: 2;
}
.shots__phone-screen { border-radius: 24px; overflow: hidden; background: #fff; aspect-ratio: 527/950; }
.shots__phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.shots__caption {
  text-align: center; margin-top: 1rem; font-weight: 700; color: var(--text); font-size: 0.94rem;
}
.shots__caption span { display: block; font-weight: 400; font-size: 0.82rem; color: var(--text-3); margin-top: 0.15rem; }
.shots__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  color: var(--royal-blue); display: grid; place-items: center; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.shots__btn:hover { background: var(--gold-050); transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-gold-sm); }
.shots__btn svg { width: 22px; height: 22px; }
.shots__btn--prev { left: 0; }
.shots__btn--next { right: 0; }
.shots__dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; }
.shots__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.shots__dot.is-active { background: var(--grad-gold); transform: scale(1.3); }
@media (max-width: 640px) {
  .shots__btn { width: 40px; height: 40px; }
  .shots__btn--prev { left: -4px; }
  .shots__btn--next { right: -4px; }
}

/* ---------- OG banner section ---------- */
.ogband {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-gold);
}
.ogband__img { width: 100%; height: auto; display: block; }
.ogband__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 1rem; padding: clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(90deg, rgba(13,27,62,0.82) 0%, rgba(13,27,62,0.45) 45%, transparent 75%);
  color: #fff;
}
.ogband__overlay h2 { color: #fff; max-width: 16ch; }
.ogband__overlay p { color: rgba(255,255,255,0.85); max-width: 40ch; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--grad-royal); color: #fff;
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 80% -20%, rgba(240,201,75,0.22), transparent 60%),
             radial-gradient(600px 260px at 10% 120%, rgba(240,201,75,0.14), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); letter-spacing: -0.01em; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 1rem auto 0; font-size: var(--fs-lead); }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; justify-content: center; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--gold-bright); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Prose / legal ---------- */
.prose { max-width: 100%; }
.prose h2 { color: var(--royal-blue); font-size: var(--fs-h4); margin: 2.4rem 0 0.9rem; scroll-margin-top: 100px; }
.prose h3 { font-size: var(--fs-h5); margin: 1.6rem 0 0.6rem; color: var(--text); }
.prose p { margin-bottom: 1rem; line-height: 1.8; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: 0.55rem; }
.prose ul li { position: relative; padding-left: 1.7rem; color: var(--text-2); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-gold); }
.prose strong { color: var(--text); }
.prose a { color: var(--royal-blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border-gold); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 1.5rem); background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; }
.toc__title { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: 0.82rem; color: var(--gold-deep); font-weight: 700; margin-bottom: 0.9rem; }
.toc__list { display: grid; gap: 0.15rem; }
.toc__link { display: block; padding: 0.5rem 0.7rem; border-radius: var(--r-sm); font-size: 0.92rem; font-weight: 500; color: var(--text-2); border-left: 2px solid transparent; transition: all var(--dur) var(--ease); }
.toc__link:hover, .toc__link.is-active { background: #fff; color: var(--royal-blue); border-left-color: var(--gold); }
.legal-meta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border-radius: var(--r-pill); background: var(--gold-050); color: var(--gold-deep); font-weight: 600; font-size: 0.86rem; margin-bottom: 1.5rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.4rem; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.45rem; color: var(--text); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--surface-2);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(240,201,75,0.18);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.85rem; color: var(--text-3); margin-top: 0.4rem; }
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-sm); font-weight: 600; display: none; }
.form-status.is-shown { display: block; }
.form-status--ok { background: rgba(22,163,74,0.1); color: var(--success); }

.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.info-card + .info-card { margin-top: 1rem; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.info-card__ico { width: 50px; height: 50px; border-radius: var(--r-md); flex-shrink: 0; display: grid; place-items: center; background: var(--royal-blue-050); color: var(--royal-blue); }
.info-card__ico svg { width: 26px; height: 26px; }
.info-card__title { font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.info-card__val { color: var(--text-2); font-size: 0.95rem; word-break: break-word; }
.info-card__val a:hover { color: var(--royal-blue); }

/* ---------- Filter tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 0.4rem; box-shadow: var(--shadow-sm); width: fit-content; margin: 0 auto 2.4rem; max-width: 100%; }
.tab { position: relative; padding: 0.6rem 1.2rem; border-radius: var(--r-pill); font-weight: 600; font-size: 0.92rem; color: var(--text-2); transition: color var(--dur) var(--ease); white-space: nowrap; }
.tab:hover { color: var(--royal-blue); }
.tab.is-active { color: var(--text-on-gold); }
.tab__bg { position: absolute; inset: 0; z-index: -1; background: var(--grad-gold); border-radius: var(--r-pill); box-shadow: var(--shadow-gold-sm); }

/* ---------- Load more / count ---------- */
.games-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.games-count { font-size: 0.92rem; color: var(--text-3); font-weight: 500; }
.games-count b { color: var(--royal-blue); }
.load-more-wrap { text-align: center; margin-top: 2.6rem; }

/* ---------- Info / value cards (about) ---------- */
.value {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.8rem;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.value__ico { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold-050), #fff); border: 1px solid var(--border-gold); display: grid; place-items: center; color: var(--gold-deep); }
.value__ico svg { width: 30px; height: 30px; }
.value__title { font-size: var(--fs-h5); margin-bottom: 0.5rem; }
.value__text { font-size: 0.95rem; }

/* ---------- Split content (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: var(--fs-h3); }
.split__body .lead { margin-top: 1rem; }
.check-list { display: grid; gap: 0.8rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text-2); line-height: 1.55; }
.check-list li svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.check-list li b { color: var(--text); }

/* ---------- Pill badges row ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); font-weight: 600; font-size: 0.86rem; color: var(--text-2); box-shadow: var(--shadow-xs); }
.pill svg { width: 16px; height: 16px; color: var(--gold-deep); }
.section--blue .pill { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.section--blue .pill svg { color: var(--gold-bright); }

/* ---------- Requirements table ---------- */
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--border-soft); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 42%; font-weight: 700; color: var(--text); background: var(--bg-alt); font-family: var(--font-body); }
.spec-table td { color: var(--text-2); }

/* ---------- Download card ---------- */
.dl-card {
  max-width: 560px; margin-inline: auto; text-align: center;
  background: #fff; border: 1px solid var(--border-gold); border-radius: var(--r-xl);
  padding: clamp(2rem, 1.5rem + 3vw, 3.2rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.dl-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad-gold); }
.dl-card__logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.7rem; margin: 0 auto 1.4rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-900) 100%);
  box-shadow: 0 12px 28px rgba(15,37,96,0.3), inset 0 0 0 1px rgba(240,201,75,0.4);
}
.dl-card__logo { width: min(210px, 100%); height: auto; display: block; }
.dl-card__title { font-size: var(--fs-h3); }
.dl-card__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.4rem; margin: 1.2rem 0 1.8rem; }
.dl-card__meta span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--text-2); font-weight: 500; }
.dl-card__meta svg { width: 18px; height: 18px; color: var(--gold-deep); }
.dl-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.1rem; border-radius: var(--r-pill); background: rgba(22,163,74,0.1); color: var(--success); font-weight: 700; font-size: 0.86rem; }
.dl-badge svg { width: 18px; height: 18px; }

/* ---------- Note / callout ---------- */
.callout { display: flex; gap: 1rem; padding: 1.3rem 1.5rem; border-radius: var(--r-lg); background: var(--gold-050); border: 1px solid var(--border-gold); align-items: flex-start; }
.callout__ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--grad-gold); color: var(--text-on-gold); display: grid; place-items: center; }
.callout__ico svg { width: 22px; height: 22px; }
.callout h4 { margin-bottom: 0.3rem; }
.callout p { font-size: 0.95rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: #0D1B3E; color: rgba(255,255,255,0.72); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0; }
.footer a { transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--gold-bright); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.footer__brand { display: flex; align-items: center; margin-bottom: 1.1rem; }
.footer__logo { height: 52px; width: auto; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4)); }
.footer__about { font-size: 0.94rem; line-height: 1.7; max-width: 40ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social a { width: 42px; height: 42px; border-radius: var(--r-sm); background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.footer__social a:hover { background: var(--grad-gold); color: var(--text-on-gold); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col-title { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: var(--ls-wide); font-size: 0.86rem; color: var(--gold-bright); font-weight: 700; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: 0.65rem; }
.footer__links a { font-size: 0.94rem; color: rgba(255,255,255,0.72); }
.footer__contact-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; margin-bottom: 0.8rem; }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--gold-bright); flex-shrink: 0; margin-top: 3px; }

.footer__disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.8rem; }
.footer__disclaimer-inner { display: flex; gap: 1rem; align-items: flex-start; }
.footer__18 { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold-bright); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); font-size: 0.9rem; }
.footer__disclaimer p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__disclaimer strong { color: rgba(255,255,255,0.85); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer__copy b { color: var(--gold-bright); font-weight: 700; }
.footer__legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer__legal-links a { font-size: 0.84rem; color: rgba(255,255,255,0.6); }

/* SEO keyword strip */
.kw-strip { padding: 1.4rem 0 2rem; }
.kw-strip__inner { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem; }
.kw-strip__title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: var(--ls-wide); color: rgba(255,255,255,0.4); margin-bottom: 0.7rem; font-family: var(--font-accent); font-weight: 600; }
.kw-strip__text { font-size: 0.8rem; line-height: 1.9; color: rgba(255,255,255,0.42); }
.kw-strip__text a { color: rgba(255,255,255,0.5); }
.kw-strip__text a:hover { color: var(--gold-bright); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.max-60 { max-width: 60ch; }
.center-block { margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__cta, .hero__meta, .hero__badge { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__visual { order: -1; margin-bottom: 1rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .bonus { grid-template-columns: 1fr; text-align: center; }
  .bonus__side { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .nav__actions .btn--gold { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps--line .step:not(:last-child)::after { display: none; }
  .step__num { margin-top: -3.6rem; }
  .tg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__float-badge--tl { top: 2%; left: 0; }
  .hero__float-badge--br { bottom: 2%; right: 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ogband__overlay { background: linear-gradient(90deg, rgba(13,27,62,0.9), rgba(13,27,62,0.55)); }
}
@media (max-width: 420px) {
  .games-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .btn { --btn-pad-x: 1.4rem; }
}
