/* ============================================================
   777cx Game — Emerald Palace · main.css
   Vanilla CSS3. Mobile-first. BEM-lite.
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@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;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  background-image:
    radial-gradient(1100px 700px at 82% -8%, rgba(31, 169, 124, 0.12), transparent 60%),
    radial-gradient(900px 600px at 5% 8%, rgba(201, 162, 39, 0.07), transparent 55%),
    var(--grad-base);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

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

::selection { background: rgba(201, 162, 39, 0.35); color: var(--color-text-primary); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { color: var(--color-text-soft); }

.text-gold {
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-emerald { color: var(--color-emerald-soft); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1200;
  background: var(--color-gold-primary);
  color: #1a1405;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--dur-fast) var(--ease-soft);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 7vw, var(--space-4xl)); position: relative; }
.section--tight { padding-block: clamp(2.2rem, 5vw, 3.5rem); }

.section__head { max-width: 760px; margin-bottom: var(--space-2xl); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-md);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--grad-gold); border-radius: 2px;
}
.section__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.section__lead { font-size: var(--fs-lead); color: var(--color-text-muted); max-width: 62ch; }

/* ---------- Faceted gem divider ---------- */
.divider {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; max-width: 340px; margin: var(--space-lg) 0;
}
.divider--center { margin-inline: auto; }
.divider__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--color-gold-bronze), var(--color-gold-primary)); }
.divider__line:last-child { background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-bronze), transparent); }
.gem {
  width: 16px; height: 16px; flex: none;
  background: var(--grad-gold-diag);
  clip-path: polygon(50% 0, 100% 35%, 82% 100%, 18% 100%, 0 35%);
  box-shadow: 0 0 14px var(--color-glow-shadow);
}
.gem--sm { width: 11px; height: 11px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 0.85rem; --btn-px: 1.6rem;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-lux),
              box-shadow var(--dur-mid) var(--ease-lux),
              background-position var(--dur-slow) var(--ease-lux);
  will-change: transform;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(2px); }

/* Primary — liquid brushed-gold shimmer */
.btn--gold {
  color: #1c1503;
  background: linear-gradient(115deg, #8C6D1F 0%, #E8C766 30%, #C9A227 52%, #E8C766 74%, #C9A227 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  box-shadow: 0 10px 26px -10px var(--color-glow-shadow), var(--shadow-inset);
}
.btn--gold::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.85s var(--ease-lux);
}
.btn--gold:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 40px -10px var(--color-glow-shadow);
  transform: translateY(-2px);
}
.btn--gold:hover::before { transform: translateX(120%) skewX(-12deg); }
.btn--gold:active {
  transform: translateY(1px);
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Ghost / outline */
.btn--ghost {
  color: var(--color-text-primary);
  background: rgba(242, 239, 227, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--color-gold-light);
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -14px var(--color-glow-shadow);
}

/* Emerald */
.btn--emerald {
  color: var(--color-text-primary);
  background: linear-gradient(120deg, #157a5a, #1FA97C);
  box-shadow: 0 10px 26px -12px rgba(31, 169, 124, 0.6);
}
.btn--emerald:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* Telegram */
.btn--telegram {
  color: #fff;
  background: linear-gradient(120deg, #1c92d2 0%, #229ED9 55%, #2aa9e0 100%);
  box-shadow: 0 10px 26px -12px rgba(34, 158, 217, 0.6);
}
.btn--telegram:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 16px 34px -12px rgba(34,158,217,0.7); }

.btn--lg { --btn-py: 1.05rem; --btn-px: 2.1rem; font-size: 1.06rem; }
.btn--sm { --btn-py: 0.6rem; --btn-px: 1.1rem; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; }

/* Breathing outline for hero CTA */
.btn--breathe { animation: breathe 3s var(--ease-soft) infinite; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 10px 26px -10px var(--color-glow-shadow), 0 0 0 0 rgba(201,162,39,0.0); }
  50% { box-shadow: 0 14px 34px -10px var(--color-glow-shadow), 0 0 0 6px rgba(201,162,39,0.12); }
}

/* ---------- Chips / tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  color: var(--color-text-primary);
  background: rgba(31, 169, 124, 0.14);
  border: 1px solid rgba(31, 169, 124, 0.4);
  border-radius: var(--radius-pill);
}
.tag--gold { color: var(--color-gold-light); background: rgba(201,162,39,0.12); border-color: rgba(201,162,39,0.45); }

.bonus-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 1.1rem 0.6rem 0.75rem;
  background: var(--grad-panel);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.bonus-badge__coin {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--grad-gold-diag);
  clip-path: polygon(50% 0, 100% 35%, 82% 100%, 18% 100%, 0 35%);
  color: #1c1503; font-weight: 800; font-size: 0.7rem;
}
.bonus-badge__text { line-height: 1.15; }
.bonus-badge__label { font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.12em; }
.bonus-badge__amount { font-family: var(--font-display); font-weight: 700; color: var(--color-gold-light); font-size: 1.15rem; }

/* ---------- Glass panel + double-line frame ---------- */
.panel {
  position: relative;
  background: var(--grad-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.panel--facet {
  clip-path: var(--facet-card);
  border-radius: 0;
}
/* ornate double-line trim */
.frame-double { position: relative; }
.frame-double::after {
  content: ""; position: absolute; inset: 6px; pointer-events: none;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: inherit;
}

/* museum corner-brackets */
.brackets { position: relative; }
.brackets::before, .brackets::after {
  content: ""; position: absolute; width: 30px; height: 30px; pointer-events: none; z-index: 3;
  border: 2px solid var(--color-gold-primary);
}
.brackets::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.brackets::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.brackets--gem::before, .brackets--gem::after { border-color: var(--color-gold-light); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: background var(--dur-mid) var(--ease-soft),
              box-shadow var(--dur-mid) var(--ease-soft),
              backdrop-filter var(--dur-mid);
}
.header__inner {
  display: flex; align-items: center; gap: var(--space-lg);
  height: var(--nav-h);
}
.header.is-stuck {
  background: rgba(9, 39, 30, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.8), inset 0 -1px 0 rgba(201,162,39,0.18);
}

/* Brand / logo — the client logo, used as-is, no frame or extra text */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo {
  display: block;
  height: 50px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  transition: filter var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.brand:hover .brand__logo { transform: translateY(-1px); filter: drop-shadow(0 8px 20px var(--color-glow-shadow)); }
@media (min-width: 768px) {
  .brand__logo { height: 58px; }
}
@media (max-width: 420px) {
  .brand__logo { height: 40px; }
}
.footer__brand-col .brand__logo { height: 60px; }

.nav { display: none; margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(0.4rem, 1.6vw, 1.4rem); }
.nav__link {
  position: relative;
  padding: 0.5rem 0.15rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--color-text-soft);
  transition: color var(--dur-fast) var(--ease-soft);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-lux);
  border-radius: 2px;
}
.nav__link:hover { color: var(--color-text-primary); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--color-gold-light); }

.header__actions { display: flex; align-items: center; gap: 0.7rem; margin-left: auto; }
.header__cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px;
  border: 1px solid rgba(201,162,39,0.35); border-radius: 12px;
  background: rgba(242,239,227,0.03);
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--color-gold-light); border-radius: 2px; transition: transform var(--dur-fast) var(--ease-soft), opacity var(--dur-fast); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 890;
  padding: var(--space-xl) clamp(1rem,5vw,2rem) var(--space-2xl);
  background: linear-gradient(180deg, rgba(7,30,23,0.98), rgba(11,46,35,0.99));
  backdrop-filter: blur(18px);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-soft), transform var(--dur-mid) var(--ease-soft);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0.4rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  border-bottom: 1px solid rgba(201,162,39,0.14);
  color: var(--color-text-primary);
}
.mobile-menu__link.is-active { color: var(--color-gold-light); }
.mobile-menu__actions { margin-top: var(--space-xl); display: grid; gap: 0.8rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute; z-index: 0; width: min(120vw, 1100px); aspect-ratio: 1;
  top: -14%; right: -10%;
  background: var(--grad-emerald-glow);
  opacity: 0; animation: glowIn 1.2s var(--ease-soft) 0.1s forwards;
  pointer-events: none;
}
@keyframes glowIn { to { opacity: 1; } }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow { margin-bottom: var(--space-lg); }
.hero__title {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.hero__title .line { display: block; }
.hero__lead { font-size: var(--fs-lead); color: var(--color-text-muted); margin-bottom: var(--space-xl); max-width: 54ch; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: var(--space-lg); }
.hero__side-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-sm); color: var(--color-text-muted);
}
.hero__side-note svg { width: 1.05em; height: 1.05em; color: var(--color-emerald-soft); }

/* Hero entrance stagger */
.js .reveal-hero { opacity: 0; }
.hero.is-ready .hero__eyebrow { animation: heroUp 0.7s var(--ease-out-expo) 0.5s forwards; }
.hero.is-ready .hero__title .line { animation: heroBlurUp 0.85s var(--ease-out-expo) forwards; }
.hero.is-ready .hero__title .line:nth-child(1) { animation-delay: 0.62s; }
.hero.is-ready .hero__title .line:nth-child(2) { animation-delay: 0.74s; }
.hero.is-ready .hero__title .line:nth-child(3) { animation-delay: 0.86s; }
.hero.is-ready .hero__lead { animation: heroUp 0.7s var(--ease-out-expo) 0.98s forwards; }
.hero.is-ready .hero__cta-row { animation: heroUp 0.7s var(--ease-out-expo) 1.1s forwards; }
.hero.is-ready .hero__side-note { animation: heroUp 0.7s var(--ease-out-expo) 1.22s forwards; }
.hero.is-ready .hero__stage { animation: heroStage 1s var(--ease-out-expo) 0.7s forwards; }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroBlurUp { from { opacity: 0; transform: translateY(30px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes heroStage { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Phone mockup ---------- */
.hero__stage { position: relative; z-index: 2; display: flex; justify-content: center; }
.phone {
  --phone-w: clamp(240px, 78vw, 320px);
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 1280 / 2688;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(155deg, #21382f 0%, #0b1f18 45%, #14312a 100%);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.75),
    inset 0 0 0 2px rgba(201,162,39,0.5),
    inset 0 0 0 5px rgba(11,30,23,0.9),
    0 0 60px -20px var(--color-glow-shadow);
  animation: phoneFloat 6s var(--ease-soft) infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-16px) rotate(0.6deg); }
}
.phone__screen {
  position: relative; z-index: 2; width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden;
  background: #0b2e23;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6);
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #060f0b; border-radius: 0 0 16px 16px; z-index: 4;
}
.phone__notch::after {
  content: ""; position: absolute; right: 22%; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: #12302a; box-shadow: inset 0 0 0 1px rgba(201,162,39,0.4);
}
.phone__glare {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.14) 0%, transparent 26%, transparent 70%, rgba(255,255,255,0.05) 100%);
  mix-blend-mode: screen;
}
.phone__btn { position: absolute; width: 3px; border-radius: 3px; background: rgba(201,162,39,0.4); }
.phone__btn--r { right: -3px; top: 26%; height: 62px; }
.phone__btn--l1 { left: -3px; top: 22%; height: 34px; }
.phone__btn--l2 { left: -3px; top: 34%; height: 54px; }

/* floating gold coin/gem accents around phone */
.phone-accent {
  position: absolute; z-index: 3; border-radius: 50%;
  background: var(--grad-gold-diag);
  box-shadow: 0 8px 20px -6px var(--color-glow-shadow);
}
.phone-accent--1 { width: 46px; height: 46px; top: 4%; left: -6%; clip-path: polygon(50% 0,100% 35%,82% 100%,18% 100%,0 35%); border-radius: 0; animation: floaty 5s ease-in-out infinite; }
.phone-accent--2 { width: 30px; height: 30px; bottom: 12%; right: -7%; animation: floaty 6.5s ease-in-out infinite reverse; }
.phone-accent--3 { width: 18px; height: 18px; top: 46%; right: -9%; animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.phone__ring {
  position: absolute; inset: -6%; z-index: 1; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(201,162,39,0.35) 82%, transparent 92%);
  filter: blur(2px);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* stage badge overlays (100% secure etc) */
.stage-chip {
  position: absolute; z-index: 6;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  font-size: var(--fs-xs); font-weight: 700;
  background: var(--grad-panel); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.stage-chip svg { width: 1.1em; height: 1.1em; color: var(--color-emerald-soft); }
.stage-chip--tl { top: 8%; left: -12%; animation: floaty 5.5s ease-in-out infinite; }
.stage-chip--br { bottom: 16%; right: -14%; animation: floaty 7s ease-in-out infinite reverse; }

/* ---------- Trust strip ---------- */
.trust-strip { position: relative; z-index: 6; margin-top: -2.5rem; }
.trust-strip__inner {
  display: grid; grid-template-columns: 1fr; gap: 0.4rem;
  padding: clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 4vw, 2.4rem);
}
.stat { text-align: center; padding: 0.6rem 0.4rem; position: relative; }
.stat__value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--color-gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1; letter-spacing: -0.01em;
  transition: text-shadow 0.4s var(--ease-soft);
}
.stat.is-done .stat__value { text-shadow: 0 0 22px var(--color-glow-shadow); }
.stat__label { margin-top: 0.4rem; font-size: var(--fs-sm); color: var(--color-text-muted); letter-spacing: 0.03em; }
.stat + .stat { border-top: 1px solid rgba(201,162,39,0.14); }

/* ============================================================
   GAME CARDS
   ============================================================ */
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.7rem, 2vw, 1.3rem); }

.game-card {
  position: relative;
  display: block;
  background: var(--grad-panel);
  clip-path: var(--facet-card);
  padding: 6px;
  transition: transform var(--dur-mid) var(--ease-lux);
  will-change: transform;
}
.game-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--grad-gold-diag);
  clip-path: var(--facet-card);
  opacity: 0.55;
  transition: opacity var(--dur-mid) var(--ease-soft);
}
.game-card__inner {
  display: block;
  position: relative; z-index: 1;
  background: var(--color-bg-surface);
  clip-path: var(--facet-card);
  overflow: hidden;
}
.game-card__media { display: block; position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.game-card__img {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-lux), filter var(--dur-mid);
}
.game-card__body { display: block; }
.game-card__name { display: block; }
.game-card__meta { display: block; }
.game-card__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(201,162,39,0) 40%, rgba(201,162,39,0.28) 100%);
  opacity: 0; transition: opacity var(--dur-mid) var(--ease-soft);
}
.game-card__tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  color: #1c1503; background: var(--grad-gold);
  clip-path: var(--facet-tag);
}
.game-card__rating {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.22rem;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.24rem 0.5rem;
  background: rgba(7,30,23,0.72); backdrop-filter: blur(4px);
  border-radius: var(--radius-pill); color: var(--color-gold-light);
}
.game-card__rating svg { width: 0.85em; height: 0.85em; }
.game-card__body { padding: 0.7rem 0.75rem 0.85rem; }
.game-card__name {
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--color-text-primary); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-card__meta { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 0.2rem; }
.game-card__play {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem;
  font-weight: 700; font-size: 0.9rem; color: #1c1503;
  background: linear-gradient(0deg, rgba(11,30,23,0.92), rgba(11,30,23,0.65));
  color: var(--color-gold-light);
  transform: translateY(101%);
  transition: transform var(--dur-mid) var(--ease-lux);
}
.game-card__play span { position: relative; }
.game-card__play span::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-lux) 0.05s;
}
@media (hover: hover) {
  .game-card:hover { transform: translateY(-8px); }
  .game-card:hover::before { opacity: 1; }
  .game-card:hover .game-card__img { transform: scale(1.09); }
  .game-card:hover .game-card__wash { opacity: 1; }
  .game-card:hover .game-card__play { transform: translateY(0); }
  .game-card:hover .game-card__play span::after { transform: scaleX(1); }
}
.game-card:focus-visible { transform: translateY(-8px); }
.game-card:focus-visible::before { opacity: 1; }

/* asymmetric editorial grid (homepage featured) */
.games-grid--featured { grid-auto-flow: dense; }
@media (min-width: 720px) {
  .games-grid--featured { grid-template-columns: repeat(4, 1fr); }
  .games-grid--featured .game-card--wide { grid-column: span 2; }
  .games-grid--featured .game-card--wide .game-card__media { aspect-ratio: 2 / 1; }
  .games-grid--featured .game-card--tall { grid-row: span 2; display: flex; }
  .games-grid--featured .game-card--tall .game-card__inner { display: flex; flex-direction: column; flex: 1; }
  .games-grid--featured .game-card--tall .game-card__media { flex: 1 1 auto; aspect-ratio: auto; height: auto; min-height: 220px; }
}

/* ============================================================
   FEATURE PANELS
   ============================================================ */
.features { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: 1fr; }
.feature {
  position: relative; padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--grad-panel); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-mid) var(--ease-lux), border-color var(--dur-mid);
  overflow: hidden;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.5); }
.feature__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold-light);
  background: rgba(201,162,39,0.1);
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature__text { font-size: 0.95rem; color: var(--color-text-muted); }

/* ============================================================
   STEPS PATH
   ============================================================ */
.steps { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; position: relative; }
.step {
  position: relative; text-align: center;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1rem,2vw,1.5rem);
  background: var(--grad-panel); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius-lg);
}
.step__node {
  width: 62px; height: 62px; margin: 0 auto var(--space-md);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #1c1503;
  background: var(--grad-gold-diag);
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
  box-shadow: 0 10px 26px -10px var(--color-glow-shadow);
}
.step__title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step__text { font-size: 0.92rem; color: var(--color-text-muted); }
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before {
    content: ""; position: absolute; top: calc(clamp(1.4rem,3vw,2rem) + 31px);
    left: 16%; right: 16%; height: 2px; z-index: 0;
    background: repeating-linear-gradient(90deg, var(--color-gold-bronze) 0 10px, transparent 10px 20px);
    opacity: 0.7;
  }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: grid; gap: 0.7rem; }
.faq__item {
  background: var(--grad-panel); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-mid);
}
.faq__item.is-open { border-color: rgba(201,162,39,0.5); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
  padding: clamp(1rem,2.4vw,1.35rem) clamp(1rem,2.4vw,1.5rem);
  text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem;
  color: var(--color-text-primary);
}
.faq__icon {
  flex: none; width: 26px; height: 26px; position: relative;
  transition: transform var(--dur-mid) var(--ease-lux);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--color-gold-light); border-radius: 2px;
}
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%,-50%); transition: transform var(--dur-mid) var(--ease-lux); }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height var(--dur-mid) var(--ease-lux); }
.faq__a-inner { padding: 0 clamp(1rem,2.4vw,1.5rem) clamp(1rem,2.4vw,1.4rem); color: var(--color-text-muted); font-size: 0.97rem; }
.faq__a-inner p + p { margin-top: 0.7rem; }

/* ============================================================
   SCREENSHOT SLIDER
   ============================================================ */
.slider { position: relative; padding-inline: clamp(2.6rem, 7vw, 4.2rem); outline: none; }
.slider__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: var(--radius-lg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.slider__viewport::-webkit-scrollbar { display: none; }
.slider__track { display: flex; }
.slider__slide {
  flex: 0 0 78%; max-width: 260px;
  scroll-snap-align: center;
  padding-inline: 0.55rem;
  box-sizing: border-box;
  display: flex; justify-content: center;
}
.slider__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 2688;
  border-radius: 26px;
  padding: 6px;
  background: linear-gradient(155deg, #21382f, #0b1f18);
  box-shadow: inset 0 0 0 2px rgba(201,162,39,0.32), var(--shadow-soft);
  transform: scale(0.9);
  opacity: 0.55;
  transition: transform 0.5s var(--ease-lux), opacity 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.slider__slide.is-active .slider__frame {
  transform: scale(1);
  opacity: 1;
  box-shadow: inset 0 0 0 2px rgba(232,199,102,0.75), 0 22px 48px -18px var(--color-glow-shadow);
}
.slider__frame-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 13px; background: #060f0b; border-radius: 0 0 10px 10px; z-index: 2;
}
.slider__frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
.slider__caption {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3;
  text-align: center; padding-inline: 10px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--color-text-primary);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.slider__caption span {
  display: inline-block; padding: 0.3rem 0.7rem;
  background: rgba(7,30,23,0.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-pill);
}
.slider__slide.is-active .slider__caption { opacity: 1; transform: translateY(0); }

.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; z-index: 5;
  display: grid; place-items: center;
  color: #1c1503;
  background: var(--grad-gold-diag);
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
  box-shadow: 0 10px 26px -10px var(--color-glow-shadow);
  transition: transform var(--dur-fast) var(--ease-lux), filter var(--dur-fast);
}
.slider__arrow:hover { transform: translateY(-50%) scale(1.08); filter: brightness(1.1); }
.slider__arrow:active { transform: translateY(-50%) scale(0.96); }
.slider__arrow svg { width: 19px; height: 19px; }
.slider__arrow--prev { left: 0; }
.slider__arrow--next { right: 0; }

.slider__dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: var(--space-lg); }
.slider__dot {
  width: 11px; height: 11px; flex: none;
  background: rgba(201,162,39,0.28);
  clip-path: polygon(50% 0,100% 35%,82% 100%,18% 100%,0 35%);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.slider__dot:hover { background: rgba(201,162,39,0.5); }
.slider__dot.is-active { background: var(--grad-gold-diag); transform: scale(1.35); }

@media (min-width: 620px) { .slider__slide { flex-basis: 42%; } }
@media (min-width: 900px) { .slider__slide { flex-basis: 30%; } }
@media (min-width: 1150px) { .slider__slide { flex-basis: 23%; } }

/* ============================================================
   OG BANNER SECTION
   ============================================================ */
.ogbanner__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201,162,39,0.35);
  box-shadow: var(--shadow-card), 0 0 60px -24px var(--color-glow-shadow);
}
.ogbanner__frame img { width: 100%; display: block; }
.ogbanner__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(232,199,102,0.2);
  border-radius: inherit;
}
.ogbanner__cta { margin-top: var(--space-xl); display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(700px 380px at 50% 40%, rgba(31,169,124,0.2), transparent 70%);
}
.cta-band__inner {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--grad-panel); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--radius-lg);
}
.cta-band__title { font-size: var(--fs-h1); margin-bottom: var(--space-md); }
.cta-band__lead { max-width: 60ch; margin: 0 auto var(--space-xl); color: var(--color-text-muted); font-size: var(--fs-lead); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; margin-top: var(--space-3xl);
  background: linear-gradient(180deg, rgba(7,30,23,0.4), var(--color-bg-deep));
  border-top: 1px solid rgba(201,162,39,0.2);
  padding-top: var(--space-2xl);
}
.footer__top { display: grid; gap: var(--space-2xl); grid-template-columns: 1fr; padding-bottom: var(--space-2xl); }
.footer__brand-col { max-width: 360px; }
.footer__about { color: var(--color-text-muted); font-size: 0.92rem; margin-top: var(--space-md); }
.footer__socials { display: flex; gap: 0.6rem; margin-top: var(--space-lg); }
.social-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(242,239,227,0.04);
  border: 1px solid rgba(201,162,39,0.28);
  clip-path: var(--facet-card);
  color: var(--color-text-soft);
  transition: color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.social-btn:hover { color: var(--color-gold-light); background: rgba(201,162,39,0.12); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }

.footer__col-title { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold-light); margin-bottom: var(--space-md); }
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a { color: var(--color-text-muted); font-size: 0.94rem; transition: color var(--dur-fast), padding-left var(--dur-fast); }
.footer__links a:hover { color: var(--color-gold-light); padding-left: 4px; }

.footer__disclaimer {
  border-top: 1px solid rgba(201,162,39,0.16);
  padding-block: var(--space-xl);
  display: grid; gap: var(--space-md);
}
.age-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 0.8rem;
  padding: 0.35rem 0.8rem 0.35rem 0.4rem;
  color: var(--color-text-primary);
  background: rgba(229,105,91,0.12);
  border: 1px solid rgba(229,105,91,0.45);
  border-radius: var(--radius-pill);
}
.age-pill__badge {
  display: grid; place-items: center; width: 26px; height: 26px;
  background: var(--color-danger); color: #fff; font-size: 0.62rem; font-weight: 800;
  border-radius: 50%;
}
.footer__disclaimer-text { font-size: 0.86rem; color: var(--color-text-muted); max-width: 90ch; line-height: 1.65; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,162,39,0.16);
  padding-block: var(--space-lg);
  font-size: 0.84rem; color: var(--color-text-muted);
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer__bottom-links a:hover { color: var(--color-gold-light); }

/* keyword ribbon */
.kw-ribbon { font-size: 0.78rem; color: rgba(159,189,174,0.6); line-height: 1.7; padding-bottom: var(--space-lg); }
.kw-ribbon strong { color: rgba(159,189,174,0.85); font-weight: 600; }

/* ============================================================
   FLOATING TELEGRAM FAB
   ============================================================ */
.fab {
  position: fixed; z-index: 850; right: clamp(0.9rem, 3vw, 1.6rem);
  bottom: calc(clamp(0.9rem, 3vw, 1.6rem) + env(safe-area-inset-bottom, 0px));
  width: 60px; height: 60px;
}
.fab__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, var(--color-gold-primary) 78%, var(--color-gold-light) 86%, transparent 96%);
  animation: spin 6s linear infinite;
}
.fab__btn {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #229ED9, #1c92d2);
  clip-path: polygon(50% 0,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  box-shadow: 0 12px 30px -10px rgba(34,158,217,0.7);
  transition: transform var(--dur-fast) var(--ease-lux);
}
.fab__btn:hover { transform: scale(1.06); }
.fab__btn svg { width: 28px; height: 28px; }
.fab__tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  white-space: nowrap; padding: 0.4rem 0.75rem; font-size: 0.8rem; font-weight: 600;
  background: var(--color-bg-elevated); border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-pill); box-shadow: var(--shadow-soft);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-fast);
}
.fab:hover .fab__tip { opacity: 1; }
@media (max-width: 767px) {
  .fab { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); width: 54px; height: 54px; }
}

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.bottom-bar {
  position: fixed; z-index: 860; inset: auto 0 0 0;
  display: flex; justify-content: space-around; align-items: stretch;
  padding: 0.3rem 0.3rem calc(0.3rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7,30,23,0.9); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,162,39,0.25);
}
.bottom-bar__item {
  position: relative; flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 0.5rem 0.2rem 0.4rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--color-text-muted);
  transition: color var(--dur-fast);
}
.bottom-bar__item svg { width: 22px; height: 22px; }
.bottom-bar__item.is-active { color: var(--color-gold-light); }
.bottom-bar__item.is-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 5px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0,100% 100%,0 100%);
}
@media (min-width: 768px) { .bottom-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 60px; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); will-change: transform, opacity; }
.js .reveal { opacity: 0; }
.js .reveal--up { transform: translateY(38px); }
.js .reveal--left { transform: translateX(-46px) rotate(-1.5deg); }
.js .reveal--right { transform: translateX(46px) rotate(1.5deg); }
.js .reveal--scale { transform: scale(0.94); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ============================================================
   GENERIC PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(2.4rem, 6vw, 4rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.page-hero__glow { position: absolute; top: -30%; right: -10%; width: 780px; aspect-ratio: 1; background: var(--grad-emerald-glow); z-index: 0; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-md); }
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb__sep { color: var(--color-gold-bronze); }
.page-hero__title { font-size: var(--fs-h1); margin-bottom: var(--space-md); }
.page-hero__lead { font-size: var(--fs-lead); color: var(--color-text-muted); max-width: 62ch; }

/* Prose blocks */
.prose { max-width: 74ch; }
.prose p { margin-bottom: var(--space-md); color: var(--color-text-soft); }
.prose h2 { font-size: var(--fs-h3); margin: var(--space-xl) 0 var(--space-sm); }
.prose h3 { font-size: 1.15rem; margin: var(--space-lg) 0 var(--space-xs); color: var(--color-text-primary); }
.prose ul { display: grid; gap: 0.55rem; margin-bottom: var(--space-md); }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--color-text-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 10px; height: 10px;
  background: var(--grad-gold-diag);
  clip-path: polygon(50% 0,100% 35%,82% 100%,18% 100%,0 35%);
}
.prose a { color: var(--color-gold-light); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--color-text-primary); }

/* Two-column content utility */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.stack-lg { display: grid; gap: var(--space-lg); }
.stack-md { display: grid; gap: var(--space-md); }

/* content list card */
.info-card {
  padding: clamp(1.3rem,2.6vw,1.8rem);
  background: var(--grad-panel); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius-lg);
}
.info-card__title { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; margin-bottom: var(--space-sm); }
.info-card__title svg { width: 22px; height: 22px; color: var(--color-gold-light); flex: none; }

/* stat pills row */
.mini-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.mini-stat { text-align: center; padding: 1rem 0.6rem; background: rgba(242,239,227,0.03); border: 1px solid rgba(201,162,39,0.18); border-radius: var(--radius-md); }
.mini-stat__value { font-family: var(--font-display); font-weight: 800; color: var(--color-gold-light); font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.mini-stat__label { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 0.2rem; }

/* Responsive breakpoints ------------------------------------ */
@media (min-width: 560px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-stats { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat + .stat { border-top: 0; border-left: 1px solid rgba(201,162,39,0.14); }
}
@media (min-width: 768px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .header__cta { display: inline-flex; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
  .split--2 { grid-template-columns: 1fr 1fr; }
  .split--media-first > :first-child { order: -1; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1000px) {
  .features { grid-template-columns: repeat(4, 1fr); }
  .games-grid--all { grid-template-columns: repeat(5, 1fr); }
  .split--3-2 { grid-template-columns: 1.5fr 1fr; }
}
