/* ============================================================
   Vegas11 — Main Stylesheet (shared components)
   ============================================================ */

/* ---------------------------------------------------------
   1. Base
   --------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1000px 620px at 78% -8%, rgba(212,175,55,0.08), transparent 60%),
    radial-gradient(760px 520px at -6% 22%, rgba(58,14,18,0.30), transparent 60%);
  background-attachment: fixed;
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
}
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; line-height: var(--lh-snug); }

p { color: var(--text); }
p.muted, .muted { color: var(--text-muted); }

strong { color: var(--gold-bright); font-weight: 600; }

a.inline-link {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
a.inline-link:hover { color: var(--gold-pale); border-color: var(--gold); }

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

.section { position: relative; padding-block: var(--section-y); z-index: var(--z-content); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background:
    linear-gradient(180deg, transparent, rgba(23,23,23,0.6) 12%, rgba(23,23,23,0.6) 88%, transparent);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad-gold-soft);
}
.section-head--left .eyebrow::before { display: none; }

.section-title { font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 62ch; margin-inline: auto; }
.section-head--left .section-sub { margin-inline: 0; }

/* ---------------------------------------------------------
   3. Gold text & shimmer
   --------------------------------------------------------- */
.gold-text {
  background: var(--grad-gold-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.shimmer {
  background: var(--grad-gold-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 6s linear infinite;
}
@keyframes shimmerSweep {
  to { background-position: 220% center; }
}

/* ---------------------------------------------------------
   4. 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: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease), filter var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--lg { --btn-py: 1.05rem; --btn-px: 2.1rem; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

/* Primary — royal gold with glow pulse + shimmer sweep */
.btn--primary {
  color: #241a02;
  background: var(--grad-gold);
  background-size: 200% auto;
  box-shadow: var(--sh-gold);
  animation: glowPulse 2.8s var(--ease) infinite;
}
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.65) 48%, transparent 72%);
  transform: translateX(-120%);
  z-index: -1;
  animation: sheen 4.5s ease-in-out infinite;
}
.btn--primary:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: var(--sh-gold-strong);
  filter: saturate(1.08) brightness(1.04);
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(212,175,55,0.24); }
  50%      { box-shadow: 0 10px 40px rgba(245,208,97,0.5); }
}
@keyframes sheen {
  0%, 62% { transform: translateX(-120%); }
  84%, 100% { transform: translateX(120%); }
}

/* Ghost / outline gold */
.btn--ghost {
  color: var(--gold-bright);
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(212,175,55,0.12);
  box-shadow: 0 8px 26px rgba(212,175,55,0.2);
}

/* Telegram community button — brand blue mark, dark chip */
.btn--telegram {
  color: var(--text);
  background: linear-gradient(160deg, #1F1F1F, #141414);
  border: 1px solid var(--hairline);
}
.btn--telegram:hover {
  transform: translateY(-2px);
  border-color: rgba(38,165,228,0.6);
  box-shadow: 0 8px 26px rgba(38,165,228,0.28);
}
.btn--telegram .tg-mark {
  width: 1.5em; height: 1.5em;
  border-radius: 50%;
  background: #26A5E4;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn--telegram .tg-mark svg { width: 0.95em; height: 0.95em; fill: #fff; }

/* Solid dark */
.btn--dark {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
}
.btn--dark:hover { transform: translateY(-2px); border-color: var(--hairline-strong); }

/* ---------------------------------------------------------
   5. Header / Nav
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(11,11,13,0.55);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  border-bottom: 1px solid var(--hairline);
}
.site-header.is-stuck {
  background: rgba(11,11,13,0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--hairline-strong);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: var(--nav-h);
}
.nav__brand { display: inline-flex; align-items: center; flex: none; }
.nav__brand img {
  height: 50px; width: auto;
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.45));
  transition: filter var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.nav__brand:hover img { filter: drop-shadow(0 3px 18px rgba(245,208,97,0.7)); transform: translateY(-1px); }
@media (max-width: 520px) {
  .nav__brand img { height: 42px; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.4vw, 1.35rem);
}
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.25rem;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-bright); }

.nav__cta { display: inline-flex; align-items: center; gap: var(--sp-3); flex: none; }
.nav__cta .btn { --btn-py: 0.62rem; --btn-px: 1.25rem; font-size: 0.9rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: rgba(212,175,55,0.05);
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast);
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after  { transform: translateY(5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11,11,13,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--sh-2);
    padding: var(--sp-4) var(--gutter) var(--sp-6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 0.95rem 0.25rem; border-bottom: 1px solid rgba(212,175,55,0.08); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: var(--sp-4); }
  .nav__cta .btn { --btn-py: 0.85rem; justify-content: center; }
}

/* ---------------------------------------------------------
   6. Cards
   --------------------------------------------------------- */
.card {
  position: relative;
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  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(--hairline-strong);
  box-shadow: var(--sh-2), 0 0 0 1px rgba(212,175,55,0.12);
}
.card__icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: rgba(212,175,55,0.10);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
  margin-bottom: var(--sp-4);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: var(--fs-h4); margin-bottom: var(--sp-2); color: var(--text); font-weight: 600; }
.card__text { color: var(--text-muted); font-size: var(--fs-sm); }

/* Game card */
.game-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.game-card__media { position: relative; aspect-ratio: 211 / 260; overflow: hidden; }
.game-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.game-card__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-3);
  background: linear-gradient(to top, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.25) 45%, transparent 70%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.game-card__play {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  color: #241a02;
  background: var(--grad-gold);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 22px rgba(212,175,55,0.28);
}
.game-card:hover .game-card__media img { transform: scale(1.08); }
.game-card:hover .game-card__overlay { opacity: 1; transform: translateY(0); }
.game-card__name {
  padding: 0.6rem var(--sp-3) 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.25;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.15rem);
}

/* Screenshot gallery (shared: home + download) */
.shots {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  padding: var(--sp-4) var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 8px; }
.shot {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 220px;
  border-radius: 26px;
  padding: 8px;
  background: linear-gradient(160deg, #2a2a2a, #0e0e0e);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--sh-2);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.shot:hover { transform: translateY(-6px); box-shadow: var(--sh-3), 0 0 30px rgba(212,175,55,0.22); }
.shot img { width: 100%; height: auto; border-radius: 19px; display: block; aspect-ratio: 1080 / 2412; object-fit: cover; }

/* ---------------------------------------------------------
   7. Badges / pills
   --------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(212,175,55,0.10);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
}
.badge--dot::before { content:""; width:7px;height:7px;border-radius:50%;background:var(--gold-bright);box-shadow:0 0 8px var(--gold-bright); }

/* ---------------------------------------------------------
   8. Stats strip / counters
   --------------------------------------------------------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-2);
}
.stat { text-align: center; padding: var(--sp-3); position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--hairline);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); letter-spacing: 0.02em; }

@media (max-width: 620px) {
  .stat + .stat::before { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------
   9. Steps (how-to)
   --------------------------------------------------------- */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step {
  position: relative;
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.step__num {
  counter-increment: step;
  position: absolute; top: -18px; left: var(--sp-5);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: #241a02;
  background: var(--grad-gold);
  border-radius: 50%;
  box-shadow: var(--sh-gold);
}
.step__num::before { content: counter(step); }
.step__title { font-size: var(--fs-h4); margin: var(--sp-3) 0 var(--sp-2); font-weight: 600; }
.step__text { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------------------------------------------------------
   10. FAQ accordion
   --------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: var(--sp-3); }
.faq__item {
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease);
}
.faq__item[open] { border-color: var(--hairline-strong); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .faq__ico {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--gold);
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.faq__item[open] .faq__ico { transform: rotate(45deg); background: rgba(212,175,55,0.14); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------------------------------------------------------
   11. Testimonials
   --------------------------------------------------------- */
.testi-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi {
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.testi:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.testi__stars { color: var(--gold-bright); letter-spacing: 0.15em; font-size: 0.95rem; }
.testi__text { color: var(--text); font-size: var(--fs-sm); font-style: italic; }
.testi__who { display: flex; align-items: center; gap: var(--sp-3); margin-top: auto; }
.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #241a02;
  background: var(--grad-gold);
}
.testi__name { font-weight: 600; font-size: 0.9rem; }
.testi__role { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------------------------------------------------------
   12. Responsible gaming / compliance
   --------------------------------------------------------- */
.responsible {
  background:
    linear-gradient(160deg, rgba(58,14,18,0.55), rgba(23,23,23,0.7));
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.responsible__grid { display: grid; gap: var(--sp-6); grid-template-columns: 1.1fr 1fr; align-items: center; }
@media (max-width: 800px){ .responsible__grid { grid-template-columns: 1fr; } }
.chip-list { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(11,11,13,0.5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  color: var(--text);
}
.chip svg { width: 18px; height: 18px; color: var(--gold); }

/* Restricted-states banner */
.restricted-banner {
  background: linear-gradient(90deg, rgba(58,14,18,0.85), rgba(38,10,13,0.85));
  border-block: 1px solid rgba(212,175,55,0.22);
  color: var(--text);
  font-size: var(--fs-sm);
  text-align: center;
  padding: 0.7rem var(--gutter);
}
.restricted-banner strong { color: var(--gold-bright); }
@media (max-width: 560px) {
  .restricted-banner { font-size: 0.72rem; padding: 0.55rem 0.9rem; line-height: 1.45; }
}
.age-tag {
  display: inline-grid; place-items: center;
  width: 2.1em; height: 2.1em;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7em;
  flex: none;
}

/* ---------------------------------------------------------
   13. Footer
   --------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: var(--z-content);
  background: var(--bg-deep);
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-7);
  margin-top: var(--sp-8);
}

/* Footer mission / affiliate disclosure band */
.footer__mission {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--sp-7);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(212,175,55,0.10), transparent 70%),
    linear-gradient(160deg, rgba(58,14,18,0.45), rgba(23,23,23,0.6));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
}
.footer__mission .eyebrow { justify-content: center; }
.footer__mission h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}
.footer__mission p { color: var(--text-muted); font-size: var(--fs-sm); max-width: 68ch; margin-inline: auto; }
.footer__mission p + p { margin-top: var(--sp-3); }
.footer__disclosure {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: var(--sp-4);
  padding: 0.5rem 1.1rem;
  background: rgba(11,11,13,0.55);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}
.footer__disclosure svg { width: 16px; height: 16px; flex: none; }

.footer__top {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1.6fr repeat(3, 1fr);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--hairline);
}
.footer__brand img { height: 58px; width: auto; margin-bottom: var(--sp-4); filter: drop-shadow(0 2px 14px rgba(212,175,55,0.35)); }
.footer__brand p { color: var(--text-muted); font-size: var(--fs-sm); max-width: 42ch; }
.footer__col h4 { font-size: 0.95rem; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer__col ul { display: grid; gap: var(--sp-3); }
.footer__col a { color: var(--text-muted); font-size: var(--fs-sm); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--gold-bright); }
.footer__support {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: var(--sp-3);
  color: var(--text); font-size: var(--fs-sm);
}
.footer__support .tg-mark { width: 1.5em; height: 1.5em; border-radius: 50%; background: #26A5E4; display: inline-flex; align-items:center; justify-content:center; }
.footer__support .tg-mark svg { width: 0.95em; height: 0.95em; fill: #fff; }

.footer__restricted {
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--hairline);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: flex; gap: var(--sp-3); align-items: flex-start;
}
.footer__restricted .age-tag { font-size: 0.85em; }
.footer__restricted strong { color: var(--gold-bright); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3);
  padding-block: var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--text-faint);
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--gold-bright); }
.footer__disclaimer {
  font-size: var(--fs-xs);
  color: var(--text-faint);
  line-height: 1.6;
  padding-bottom: var(--sp-6);
  max-width: 92ch;
}

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   14. Breadcrumbs
   --------------------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--text-faint); }
.breadcrumb [aria-current="page"] { color: var(--gold); }

/* ---------------------------------------------------------
   15. Page hero (interior pages)
   --------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; }
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: var(--sp-4); }
.page-hero p { color: var(--text-muted); font-size: 1.08rem; max-width: 62ch; margin-inline: auto; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: var(--sp-5); }

/* ---------------------------------------------------------
   16. Forms
   --------------------------------------------------------- */
.field { display: grid; gap: 0.5rem; margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 500; color: var(--text); }
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.14);
}
.field__error { font-size: var(--fs-xs); color: #ff8f8f; min-height: 1em; }
.field.has-error input, .field.has-error textarea { border-color: #b8484a; }
.form-note { font-size: var(--fs-xs); color: var(--text-faint); margin-top: var(--sp-3); }
.form-status { font-size: var(--fs-sm); margin-top: var(--sp-3); min-height: 1.2em; }
.form-status.is-ok { color: #7fd18f; }

/* ---------------------------------------------------------
   17. Prose (legal / article body)
   --------------------------------------------------------- */
.prose { max-width: 76ch; margin-inline: auto; color: var(--text); }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--sp-7); margin-bottom: var(--sp-2); color: var(--text); }
.prose h3 { font-family: var(--font-body); font-weight: 600; font-size: var(--fs-h4); margin-top: var(--sp-5); color: var(--gold-bright); }
.prose p, .prose li { color: var(--text-muted); }
.prose ul, .prose ol { padding-left: 1.4rem; display: grid; gap: 0.5rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--gold-bright); border-bottom: 1px solid var(--hairline-strong); }
.prose a:hover { color: var(--gold-pale); }
.prose strong { color: var(--text); }
.prose .lead { font-size: 1.1rem; color: var(--text); }
.prose .updated { font-size: var(--fs-sm); color: var(--text-faint); }
.prose hr { border: none; border-top: 1px solid var(--hairline); margin-block: var(--sp-6); }

/* ---------------------------------------------------------
   18. CTA band
   --------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(212,175,55,0.18), transparent 60%),
    linear-gradient(160deg, #1a1206, #0B0B0D 60%);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--sh-2);
}
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.cta-band p { color: var(--text-muted); max-width: 56ch; margin: 0 auto var(--sp-6); }
.cta-band .btn-row { display: inline-flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

/* ---------------------------------------------------------
   18b. Rich content components
   --------------------------------------------------------- */
/* Intro / lead text block */
.content-lead { max-width: 900px; margin-inline: auto; }
.content-lead p { color: var(--text-muted); font-size: 1.05rem; }
.content-lead p + p { margin-top: var(--sp-4); }

/* Two-column heading + body */
.content-2col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.content-2col .content-2col__head { position: sticky; top: calc(var(--nav-h) + 20px); }
.content-2col__body > * + * { margin-top: var(--sp-4); }
.content-2col__body p { color: var(--text-muted); }
.content-2col__body h3 { font-family: var(--font-body); font-weight: 600; font-size: var(--fs-h4); color: var(--gold-bright); margin-top: var(--sp-5); }
@media (max-width: 820px) {
  .content-2col { grid-template-columns: 1fr; gap: var(--sp-5); }
  .content-2col .content-2col__head { position: static; }
}

/* Feature / benefit checkmark list */
.feature-list { display: grid; gap: var(--sp-4); }
.feature-list.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .feature-list.cols-2 { grid-template-columns: 1fr; } }
.feature-list li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--text-muted); font-size: var(--fs-sm); }
.feature-list li strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.feature-list .fl-ico {
  flex: none; width: 26px; height: 26px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
}
.feature-list .fl-ico svg { width: 15px; height: 15px; }

/* Info card grid */
.info-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.info-card:hover { transform: translateY(-4px); border-color: var(--hairline-strong); box-shadow: var(--sh-2); }
.info-card__head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.info-card__ico {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
}
.info-card__ico svg { width: 24px; height: 24px; }
.info-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; }
.info-card p { color: var(--text-muted); font-size: var(--fs-sm); }
.info-card p + p { margin-top: var(--sp-3); }

/* Category explainer rows */
.cat-explainer { display: grid; gap: var(--sp-5); }
.cat-row {
  display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-5); align-items: start;
  background: var(--grad-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.cat-row:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
.cat-row__ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
}
.cat-row__ico svg { width: 32px; height: 32px; }
.cat-row h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.cat-row p { color: var(--text-muted); font-size: var(--fs-sm); }
.cat-row .badge { margin-top: var(--sp-3); }
@media (max-width: 560px) {
  .cat-row { grid-template-columns: 1fr; }
  .cat-row__ico { width: 52px; height: 52px; }
}

/* Highlight callout box */
.highlight-box {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  background: linear-gradient(160deg, rgba(58,14,18,0.5), rgba(23,23,23,0.6));
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.highlight-box svg { flex: none; width: 24px; height: 24px; color: var(--gold); margin-top: 2px; }
.highlight-box strong { color: var(--gold-bright); }

/* Definition / spec table */
.spec-table { width: 100%; border-collapse: collapse; background: var(--grad-surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 0.9rem 1.1rem; font-size: var(--fs-sm); border-bottom: 1px solid var(--hairline); }
.spec-table th { color: var(--gold-bright); font-weight: 600; width: 42%; background: rgba(212,175,55,0.05); }
.spec-table td { color: var(--text-muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Pros list two-column */
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 700px) { .split-cols { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   19. Particles canvas + reveal
   --------------------------------------------------------- */
.particles {
  position: absolute;
  inset: 0;
  z-index: var(--z-particles);
  pointer-events: none;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------------------------------------------------------
   20. Age gate modal
   --------------------------------------------------------- */
.agegate {
  position: fixed; inset: 0;
  z-index: var(--z-agegate);
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(4,4,6,0.9);
  backdrop-filter: blur(10px);
}
.agegate[hidden] { display: none; }
.agegate__card {
  width: min(480px, 100%);
  background: var(--grad-surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: var(--sh-3), 0 0 60px rgba(212,175,55,0.14);
  animation: popIn 0.5s var(--ease-out) both;
}
.agegate__logo { height: 46px; width: auto; margin: 0 auto var(--sp-5); filter: drop-shadow(0 2px 14px rgba(212,175,55,0.4)); }
.agegate__badge {
  width: 76px; height: 76px; margin: 0 auto var(--sp-5);
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}
.agegate h2 { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }
.agegate p { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.agegate__actions { display: grid; gap: var(--sp-3); }
.agegate__deny {
  color: var(--text-muted); font-size: var(--fs-sm); padding: 0.6rem;
  border-radius: var(--r-sm); border: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.agegate__deny:hover { color: var(--text); border-color: var(--hairline); }
.agegate__denied { text-align: center; }
.agegate__denied .btn { margin-top: var(--sp-4); }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------
   21. Cookie consent
   --------------------------------------------------------- */
.cookie {
  position: fixed;
  left: var(--gutter); right: var(--gutter); bottom: var(--gutter);
  z-index: var(--z-cookie);
  max-width: 720px;
  margin-inline: auto;
  background: rgba(15,15,17,0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-3);
  display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform var(--t-slow) var(--ease-out);
}
.cookie.is-shown { transform: translateY(0); }
.cookie[hidden] { display: none; }
.cookie__text { flex: 1 1 320px; font-size: var(--fs-sm); color: var(--text-muted); }
.cookie__text a { color: var(--gold-bright); border-bottom: 1px solid var(--hairline); }
.cookie__actions { display: flex; gap: var(--sp-3); flex: none; }
.cookie__actions .btn { --btn-py: 0.6rem; --btn-px: 1.2rem; font-size: 0.88rem; }

/* ---------------------------------------------------------
   22. Utilities
   --------------------------------------------------------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mt-5 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.btn-row--center { justify-content: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 999;
  background: var(--gold); color: #0B0B0D;
  padding: 0.6rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; }
.divider { height: 1px; background: var(--hairline); border: none; margin-block: var(--sp-6); }
