/* ==========================================================================
   B9 GAME — playb9.pk
   main.css — reset, base type, layout, components
   Mobile-first: base -> @media (min-width: 768px) -> @media (min-width: 1200px)
   ========================================================================== */

/* ==========================================================================
   1. RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  overflow-x: clip;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:target {
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   2. BASE
   ========================================================================== */

body {
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* `clip`, not `hidden` — `overflow-x: hidden` turns <body> into a scroll
     container, which silently breaks `position: sticky` on the header. */
  overflow-x: clip;
}

/* Warm paper grain over the whole page — extremely subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--texture-linen);
  background-size: 160px 160px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main {
  position: relative;
  z-index: var(--z-base);
  display: block;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-bronze-deep);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  font-optical-sizing: auto;
}

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

p {
  color: var(--color-text-secondary);
}

strong, b {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

::selection {
  background: var(--color-gold-light);
  color: var(--color-plate-800);
}

/* Focus — WCAG AA visible ring on every interactive element */
:focus-visible {
  outline: 2px solid var(--color-bronze-mid);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: var(--z-skip);
  padding: 0.75rem 1.25rem;
  background: var(--color-plate-800);
  color: var(--color-gold-light);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  transition: top var(--dur-base) var(--ease-out);
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

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

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

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

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--lg {
  padding-block: var(--section-y-lg);
}

.section--tight {
  padding-block: clamp(2.5rem, 2rem + 2.4vw, 4rem);
}

.section--surface {
  background-color: var(--color-bg-surface);
}

.section--sunken {
  background-color: var(--color-bg-sunken);
}

.section--plate {
  background: var(--grad-plate);
  color: var(--color-text-on-dark);
}

.section--plate h2,
.section--plate h3,
.section--plate h4 {
  color: var(--color-gold-pale);
}

.section--plate p {
  color: rgba(247, 239, 225, 0.78);
}

/* Global `strong` is espresso brown — unreadable on any dark plate surface */
.section--plate strong,
.promo-banner strong,
.og-showcase__bar strong {
  color: var(--color-gold-light);
}

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.grid {
  display: grid;
  gap: var(--sp-5);
}

.text-center { text-align: center; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   4. SIGNATURE MOTIFS
   ========================================================================== */

/* 4.1 — Hairline gold foil divider */
.foil-rule {
  height: 1px;
  border: 0;
  background: var(--grad-gold-foil);
  opacity: 0.85;
}

.foil-rule--short {
  width: 84px;
  margin-inline: auto;
}

/* 4.2 — Ambient bronze-gold glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-decor);
  background: var(--glow-gold-ambient);
  filter: blur(6px);
}

.glow--bronze { background: var(--glow-bronze-ambient); }

/* 4.3 — Ornamental gold corner brackets (the recurring certificate motif) */
.corner-frame {
  position: relative;
}

.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 3;
  border-color: var(--color-gold-royal);
  border-style: solid;
  opacity: 0.85;
  transition: opacity var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out);
}

.corner-frame::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
  border-top-left-radius: 4px;
}

.corner-frame::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 1px 1px 0;
  border-bottom-right-radius: 4px;
}

.corner-frame:hover::before,
.corner-frame:hover::after {
  width: 30px;
  height: 30px;
  opacity: 1;
}

/* 4.4 — Card surface: warm paper + hairline gold border + soft bronze shadow */
.surface {
  position: relative;
  background: var(--grad-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--texture-linen);
  background-size: 140px 140px;
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Gold hairline sheen along the top edge of a card */
.surface--foil-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--grad-gold-foil);
  pointer-events: none;
}

/* 4.5 — Curved / angled section dividers */
.divider-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(38px, 5vw, 72px);
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

.divider-wave--top { top: -1px; }
.divider-wave--bottom { bottom: -1px; }

.divider-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section--angled-top {
  clip-path: polygon(0 2.4vw, 100% 0, 100% 100%, 0 100%);
}

.section--angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.4vw), 0 100%);
}

/* ==========================================================================
   5. TYPOGRAPHIC COMPONENTS
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad-gold-fill);
  flex: none;
}

.eyebrow--centered {
  justify-content: center;
}

.eyebrow--centered::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad-gold-fill);
  flex: none;
}

.section-head {
  max-width: 68ch;
  margin-bottom: clamp(2rem, 1.5rem + 1.8vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head__title {
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}

.section-head__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  text-wrap: pretty;
}

.lede {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
}

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

.serif-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-bronze-mid);
}

/* Long-form editorial prose (legal pages, guides, articles) */
.prose h2 {
  font-size: var(--fs-h3);
  margin-top: var(--sp-9);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: var(--fs-xl);
  color: var(--color-bronze-mid);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
}

.prose h4 {
  font-size: var(--fs-lg);
  color: var(--color-bronze-mid);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.prose p {
  margin-bottom: var(--sp-4);
  line-height: var(--lh-loose);
}

.prose ul,
.prose ol {
  margin: 0 0 var(--sp-5);
  padding-left: 1.35rem;
  color: var(--color-text-secondary);
}

.prose li {
  margin-bottom: var(--sp-2);
  line-height: var(--lh-loose);
  padding-left: 0.3rem;
}

.prose li::marker {
  color: var(--color-gold-royal);
  font-weight: var(--fw-bold);
}

.prose a {
  color: var(--color-bronze-mid);
  text-decoration: underline;
  text-decoration-color: var(--color-gold-royal);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--dur-fast) var(--ease-out);
}

.prose a:hover { color: var(--color-gold-deep); }

.prose table {
  margin-bottom: var(--sp-6);
  font-size: var(--fs-sm);
}

.prose th,
.prose td {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--color-bg-surface);
  color: var(--color-bronze-deep);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

.prose td { color: var(--color-text-secondary); }

/* Pull-quote / note callout */
.callout {
  position: relative;
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
  background: var(--color-bg-surface);
  border-left: 2px solid var(--color-gold-royal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.callout p:last-child { margin-bottom: 0; }

.callout__label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-2);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    background-color var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  will-change: transform;
}

.btn svg { flex: none; }

/* Magnetic lift + expanding gold glow */
.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.45);
  transition: box-shadow var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

.btn:hover::after {
  box-shadow: 0 0 0 7px rgba(201, 162, 75, 0.13);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — gold foil */
.btn--primary {
  background: var(--grad-gold-fill);
  color: var(--color-plate-900);
  border-color: rgba(168, 132, 47, 0.55);
  box-shadow: var(--shadow-gold), var(--shadow-inset-foil);
}

.btn--primary:hover {
  background: var(--grad-gold-fill-hover);
  box-shadow: var(--shadow-gold-strong), var(--shadow-inset-foil);
}

/* Secondary — bronze solid */
.btn--secondary {
  background: var(--grad-bronze-fill);
  color: var(--color-gold-pale);
  border-color: rgba(201, 162, 75, 0.4);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
  color: #fff8e8;
  border-color: var(--color-gold-royal);
  box-shadow: var(--shadow-lg);
}

/* Ghost — hairline gold outline on ivory */
.btn--ghost {
  background: rgba(253, 250, 244, 0.72);
  color: var(--color-bronze-deep);
  border-color: var(--color-border-gold);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: var(--color-bg-elevated);
  border-color: var(--color-gold-royal);
  color: var(--color-gold-deep);
  box-shadow: var(--shadow-md);
}

/* Telegram — real brand-adjacent treatment, kept in the bronze palette */
.btn--telegram {
  background: linear-gradient(135deg, #35B7EA 0%, #229ED9 55%, #1B87BC 100%);
  color: #fff;
  border-color: rgba(27, 135, 188, 0.5);
  box-shadow: 0 12px 30px -14px rgba(34, 158, 217, 0.85);
}

.btn--telegram:hover {
  box-shadow: 0 18px 40px -14px rgba(34, 158, 217, 0.95);
}

.btn--telegram::after { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.45); }
.btn--telegram:hover::after { box-shadow: 0 0 0 7px rgba(34, 158, 217, 0.14); }

.btn--sm {
  padding: 0.62rem 1.15rem;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 1.15rem 2.3rem;
  font-size: var(--fs-base);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.btn-row--center { justify-content: center; }

/* Text link with animated gold underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-bronze-mid);
  transition: color var(--dur-base) var(--ease-out), gap var(--dur-base) var(--ease-out);
}

.link-arrow:hover {
  color: var(--color-gold-deep);
  gap: 0.85em;
}

/* ==========================================================================
   7. BADGES & PILLS
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.34rem 0.78rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  background: var(--color-gold-pale);
  color: var(--color-gold-deep);
  border: 1px solid var(--color-border-gold);
  white-space: nowrap;
}

.badge--plate {
  background: rgba(59, 42, 30, 0.9);
  color: var(--color-gold-light);
  border-color: rgba(201, 162, 75, 0.4);
}

.badge--success {
  background: var(--color-success-soft);
  color: var(--color-success);
  border-color: rgba(76, 122, 90, 0.28);
}

.badge--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.badge--live::before {
  animation: pulse-dot 2.2s var(--ease-soft) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

/* ==========================================================================
   8. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(251, 246, 238, 0.86);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold-foil);
  opacity: 0.5;
  transition: opacity var(--dur-base) var(--ease-out);
}

.site-header.is-stuck {
  background: rgba(251, 246, 238, 0.96);
  box-shadow: var(--shadow-md);
}

.site-header.is-stuck::after { opacity: 1; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--header-h);
}

/* --- Brand lockup: dark plate makes the white wordmark legible on ivory --- */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: transform var(--dur-base) var(--ease-out);
}

.brand:hover { transform: translateY(-1px); }

.brand__plate {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--grad-plate);
  border: 1px solid rgba(201, 162, 75, 0.45);
  box-shadow:
    0 8px 20px -10px rgba(74, 53, 36, 0.6),
    inset 0 1px 0 rgba(232, 206, 143, 0.22);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

/* Slow gold sheen sweeping across the plate */
.brand__plate::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    100deg,
    rgba(232, 206, 143, 0) 0%,
    rgba(232, 206, 143, 0.28) 50%,
    rgba(232, 206, 143, 0) 100%
  );
  transform: rotate(14deg);
  animation: plate-sheen 7s var(--ease-soft) infinite;
  pointer-events: none;
}

@keyframes plate-sheen {
  0%, 62% { left: -70%; }
  92%, 100% { left: 135%; }
}

.brand:hover .brand__plate {
  border-color: var(--color-gold-royal);
  box-shadow:
    0 12px 26px -10px rgba(74, 53, 36, 0.7),
    inset 0 1px 0 rgba(232, 206, 143, 0.35),
    0 0 0 3px rgba(201, 162, 75, 0.12);
}

.brand__logo {
  width: auto;
  height: 30px;
  position: relative;
  z-index: 1;
}

/* --- Desktop nav --- */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 1rem);
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  border-radius: var(--radius-xs);
  transition: color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--grad-gold-fill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav__link:hover { color: var(--color-bronze-deep); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link.is-active {
  color: var(--color-bronze-deep);
  font-weight: var(--fw-semibold);
}

.nav__link.is-active::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: none;
}

.header__cta { display: none; }
.header__telegram { display: none; }

/* --- Language switcher --- */
.lang {
  position: relative;
  flex: none;
}

.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-bronze-deep);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.lang__toggle:hover {
  border-color: var(--color-gold-royal);
  box-shadow: var(--shadow-sm);
}

.lang__chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--dur-base) var(--ease-out);
}

.lang__toggle[aria-expanded="true"] .lang__chevron { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 168px;
  padding: 0.4rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: 5;
}

.lang__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-primary);
  text-align: left;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.lang__option:hover {
  background: var(--color-bg-surface);
  color: var(--color-bronze-deep);
}

.lang__option[aria-selected="true"] {
  background: var(--color-gold-pale);
  color: var(--color-gold-deep);
  font-weight: var(--fw-semibold);
}

.lang__code {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  color: var(--color-text-muted);
}

/* Cross-fade while translations swap */
[data-i18n],
[data-i18n-html] {
  transition: opacity var(--dur-base) var(--ease-soft);
}

body.is-lang-switching [data-i18n],
body.is-lang-switching [data-i18n-html] {
  opacity: 0.15;
}

/* --- Mobile menu button + drawer --- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  flex: none;
  transition: border-color var(--dur-base) var(--ease-out);
}

.nav-toggle:hover { border-color: var(--color-gold-royal); }

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: var(--color-bronze-deep);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: var(--z-drawer);
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-6) 0 calc(var(--mobilebar-h) + var(--sp-8));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drawer__list { margin-bottom: var(--sp-6); }

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--dur-base) var(--ease-out), padding-left var(--dur-base) var(--ease-out);
}

.drawer__link:hover,
.drawer__link.is-active {
  color: var(--color-gold-deep);
  padding-left: 0.7rem;
}

.drawer__link span:last-child {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.drawer__actions { display: grid; gap: var(--sp-3); }

body.is-locked { overflow: hidden; }

/* ==========================================================================
   9. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 2rem + 3vw, 5rem) clamp(3.5rem, 2.5rem + 4vw, 6rem);
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(232, 206, 143, 0.34) 0%, rgba(232, 206, 143, 0) 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(140, 90, 52, 0.14) 0%, rgba(140, 90, 52, 0) 60%),
    var(--color-bg-primary);
}

.hero__glow-a {
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  top: -14%;
  right: -14%;
  animation: drift-a 17s var(--ease-soft) infinite alternate;
}

.hero__glow-b {
  width: min(440px, 76vw);
  height: min(440px, 76vw);
  bottom: -18%;
  left: -12%;
  animation: drift-b 21s var(--ease-soft) infinite alternate;
}

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-34px, 30px, 0) scale(1.09); }
}

@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to { transform: translate3d(30px, -26px, 0) scale(0.95); }
}

/* Mobile: single column, mockup sits between the copy and the CTA block —
   above the bonus button, per the stacked reading order. Desktop: two
   columns, mockup spans both rows so it reads as top-aligned beside the
   headline rather than centred against the whole (taller) text block. */
.hero__inner {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copytop"
    "mockup"
    "copybottom";
  row-gap: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.hero__copy-top { grid-area: copytop; max-width: 40rem; }
.hero__copy-bottom { grid-area: copybottom; max-width: 40rem; }
.hero__title {
  font-size: var(--fs-display);
  margin-bottom: var(--sp-5);
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  background: var(--grad-gold-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-6);
  max-width: 54ch;
  text-wrap: pretty;
}

/* Bonus callout — the ₨10,000 hero ribbon (kept compact; it's a supporting
   note beside the headline, not a competing call to action) */
.bonus-callout {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
  background: linear-gradient(120deg, rgba(232, 206, 143, 0.34) 0%, rgba(245, 237, 224, 0.72) 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 24rem;
}

.bonus-callout__amount {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.75rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-gold-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: none;
}

.bonus-callout__text {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.bonus-callout__text strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-bronze-deep);
  margin-bottom: 0.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.hero__microcopy li {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.hero__microcopy svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-royal);
  flex: none;
}

/* ==========================================================================
   10. DEVICE (APP) MOCKUP — hero + download page
   ========================================================================== */

.mockup {
  grid-area: mockup;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: var(--sp-6);
}

.mockup__halo {
  position: absolute;
  width: min(520px, 108%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(232, 206, 143, 0.5) 0%,
    rgba(201, 162, 75, 0.22) 42%,
    rgba(201, 162, 75, 0) 74%
  );
  filter: blur(4px);
  z-index: 0;
  animation: halo-breathe 9s var(--ease-soft) infinite;
}

@keyframes halo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.09); opacity: 1; }
}

/* Thin gold ring orbiting behind the phone */
.mockup__ring {
  position: absolute;
  width: min(430px, 94%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 75, 0.42);
  z-index: 0;
  animation: ring-spin 46s linear infinite;
}

.mockup__ring--inner {
  width: min(350px, 78%);
  border-style: solid;
  border-color: rgba(201, 162, 75, 0.24);
  animation-duration: 34s;
  animation-direction: reverse;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.device {
  position: relative;
  z-index: 2;
  width: clamp(232px, 66vw, 300px);
  animation: device-float 7.5s var(--ease-soft) infinite;
  transform-style: preserve-3d;
}

@keyframes device-float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.device__frame {
  position: relative;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(155deg, #6B4226 0%, #2E1F15 28%, #4A3524 62%, #241811 100%);
  box-shadow:
    0 44px 80px -34px rgba(59, 42, 30, 0.62),
    0 14px 32px -14px rgba(107, 66, 38, 0.4),
    inset 0 0 0 1px rgba(232, 206, 143, 0.34),
    inset 0 2px 3px rgba(242, 227, 190, 0.24);
}

/* Gold hairline rim */
.device__frame::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 36px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  pointer-events: none;
  z-index: 3;
}

/* Screen glare sweep */
.device__frame::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  border-radius: 32px;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 251, 240, 0.16) 47%,
    rgba(255, 255, 255, 0) 57%
  );
  pointer-events: none;
  z-index: 4;
}

.device__screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-plate-900);
  line-height: 0;
}

.device__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.device__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 19px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #241811 0%, #2E1F15 100%);
  z-index: 5;
}

.device__notch::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 22%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.4);
  box-shadow: inset 0 0 0 1px rgba(232, 206, 143, 0.28);
}

.device__button {
  position: absolute;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #8C5A34, #4A3524);
}

.device__button--power { right: -2px; top: 27%; height: 8%; }
.device__button--vol-a { left: -2px; top: 20%; height: 5%; }
.device__button--vol-b { left: -2px; top: 27%; height: 8%; }

/* Floating gold chips around the phone */
.mockup__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(253, 250, 244, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-bronze-deep);
  white-space: nowrap;
}

.mockup__chip svg {
  width: 15px;
  height: 15px;
  color: var(--color-gold-deep);
  flex: none;
}

.mockup__chip strong {
  color: var(--color-gold-deep);
  font-weight: var(--fw-black);
}

.mockup__chip--a {
  top: 11%;
  left: -2%;
  animation: chip-float-a 6.5s var(--ease-soft) infinite;
}

.mockup__chip--b {
  bottom: 21%;
  right: -3%;
  animation: chip-float-b 8s var(--ease-soft) infinite;
}

.mockup__chip--c {
  bottom: 6%;
  left: 4%;
  animation: chip-float-a 7.2s var(--ease-soft) infinite 0.8s;
}

@keyframes chip-float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(6px, -13px, 0); }
}

@keyframes chip-float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-8px, 12px, 0); }
}

/* On narrow screens the mockup fills the column, so pull the chips inside
   the hero's overflow box rather than letting them clip at the edge. */
@media (max-width: 640px) {
  .mockup__chip {
    padding: 0.45rem 0.75rem;
    font-size: 0.62rem;
  }

  .mockup__chip--a { top: 8%; left: 2%; }
  .mockup__chip--b { bottom: 24%; right: 2%; }
  .mockup__chip--c { display: none; }
}

/* ==========================================================================
   11. STAT BLOCKS (editorial numerals)
   ========================================================================== */

.stat-strip {
  position: relative;
  background: var(--color-bg-surface);
  border-block: 1px solid var(--color-border);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-6) var(--sp-4);
}

.stat {
  position: relative;
  text-align: center;
  padding-inline: var(--sp-2);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--color-bronze-deep);
  margin-bottom: var(--sp-3);
}

.stat__value .stat__suffix {
  font-size: 0.5em;
  color: var(--color-gold-royal);
  letter-spacing: 0;
  vertical-align: super;
  margin-left: 0.06em;
}

.stat__label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-2);
}

.stat__note {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ==========================================================================
   12. GAME CARDS & GRID
   ========================================================================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.game-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  background: var(--grad-surface-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--color-gold-royal);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 162, 75, 0.28);
  z-index: 2;
}

.game-card__media {
  display: block;
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: var(--color-bg-sunken);
  line-height: 0;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.game-card:hover .game-card__media img { transform: scale(1.09); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--sp-4);
  background: linear-gradient(180deg, rgba(36, 24, 17, 0) 42%, rgba(36, 24, 17, 0.82) 100%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--grad-gold-fill);
  color: var(--color-plate-900);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transform: translateY(8px);
  transition: transform var(--dur-base) var(--ease-spring);
}

.game-card:hover .game-card__play { transform: translateY(0); }

.game-card__tag {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  z-index: 4;
  padding: 0.24rem 0.52rem;
  border-radius: var(--radius-xs);
  font-size: 0.6rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(36, 24, 17, 0.86);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 162, 75, 0.42);
  backdrop-filter: blur(4px);
}

.game-card__tag--hot {
  background: linear-gradient(135deg, #C9A24B, #A8842F);
  color: var(--color-plate-900);
  border-color: rgba(242, 227, 190, 0.6);
}

.game-card__body {
  display: block;
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
  text-align: center;
  position: relative;
  z-index: 2;
}

.game-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  line-height: 1.3;
  margin-bottom: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card__meta {
  display: block;
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Corner brackets scoped tight to the media area */
.game-card .corner-frame::before,
.game-card .corner-frame::after {
  width: 15px;
  height: 15px;
}

.game-card .corner-frame::before { top: 7px; left: 7px; }
.game-card .corner-frame::after { right: 7px; bottom: 7px; }

.game-card:hover .corner-frame::before,
.game-card:hover .corner-frame::after {
  width: 22px;
  height: 22px;
}

/* --- Category filter tabs --- */
.filter-bar {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-6);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-strong) transparent;
  -webkit-overflow-scrolling: touch;
}

.filter-bar::-webkit-scrollbar { height: 4px; }
.filter-bar::-webkit-scrollbar-track { background: var(--color-bg-surface); border-radius: 2px; }
.filter-bar::-webkit-scrollbar-thumb { background: var(--color-border-strong); border-radius: 2px; }

.filter-bar__btn {
  flex: none;
  padding: 0.62rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition:
    background-color var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.filter-bar__btn:hover {
  border-color: var(--color-gold-royal);
  color: var(--color-bronze-deep);
}

.filter-bar__btn[aria-pressed="true"] {
  background: var(--grad-gold-fill);
  border-color: rgba(168, 132, 47, 0.6);
  color: var(--color-plate-900);
  box-shadow: var(--shadow-gold);
}

.filter-bar__count {
  margin-left: 0.4em;
  opacity: 0.62;
  font-weight: var(--fw-regular);
}

.games-grid .game-card.is-hidden { display: none; }

.filter-empty {
  display: none;
  padding: var(--sp-9) var(--sp-4);
  text-align: center;
  color: var(--color-text-muted);
}

.filter-empty.is-visible { display: block; }

/* ==========================================================================
   13. FEATURE / BENEFIT CARDS
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.feature-card {
  position: relative;
  padding: var(--sp-6) var(--sp-5) var(--sp-6);
  background: var(--grad-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--texture-linen);
  background-size: 140px 140px;
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(232, 206, 143, 0.5), rgba(201, 162, 75, 0.18));
  border: 1px solid var(--color-border-gold);
  color: var(--color-bronze-deep);
  position: relative;
  z-index: 2;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: var(--shadow-gold);
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 2;
}

.feature-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  position: relative;
  z-index: 2;
}

.feature-card__list {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
  position: relative;
  z-index: 2;
}

.feature-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.feature-card__list svg {
  width: 14px;
  height: 14px;
  margin-top: 0.28em;
  color: var(--color-gold-royal);
  flex: none;
}

/* Index number variant */
.feature-card__index {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: rgba(201, 162, 75, 0.17);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   14. STEPS (How it works)
   ========================================================================== */

.steps {
  display: grid;
  gap: var(--sp-5);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  padding-left: calc(var(--sp-5) + 46px);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  counter-increment: step;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.step:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-gold-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.step__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
}

.step__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold-deep);
}

.step__hint svg { width: 13px; height: 13px; flex: none; }

/* ==========================================================================
   15. PROMO / BONUS BANNER
   ========================================================================== */

.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--grad-plate);
  border: 1px solid rgba(201, 162, 75, 0.45);
  box-shadow: var(--shadow-xl);
  padding: clamp(2.25rem, 1.8rem + 2.4vw, 3.75rem) clamp(1.5rem, 1.2rem + 2.4vw, 3.5rem);
  color: var(--color-text-on-dark);
  text-align: center;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 110% at 50% 0%, rgba(201, 162, 75, 0.28) 0%, rgba(201, 162, 75, 0) 62%),
    radial-gradient(50% 80% at 12% 100%, rgba(140, 90, 52, 0.4) 0%, rgba(140, 90, 52, 0) 70%);
  pointer-events: none;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 75, 0.26);
  border-radius: calc(var(--radius-2xl) - 8px);
  pointer-events: none;
}

.promo-banner > * { position: relative; z-index: 2; }

/* Must be block-level flex — as inline-flex it shares a line with the amount */
.promo-banner__eyebrow {
  display: flex;
  justify-content: center;
  color: var(--color-gold-light);
}

.promo-banner__eyebrow::before,
.promo-banner__eyebrow::after {
  background: rgba(201, 162, 75, 0.6);
}

.promo-banner__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 6vw, 6rem);
  font-weight: var(--fw-bold);
  line-height: 0.95;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #F7EBCB 0%, #E8CE8F 34%, #C9A24B 68%, #E8CE8F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--sp-3);
  text-shadow: 0 18px 40px rgba(201, 162, 75, 0.22);
}

.promo-banner__title {
  color: var(--color-gold-pale);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-4);
}

.promo-banner__text {
  max-width: 60ch;
  margin: 0 auto var(--sp-6);
  color: rgba(247, 239, 225, 0.8);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.promo-banner__terms {
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(247, 239, 225, 0.55);
}

.promo-list {
  display: grid;
  gap: var(--sp-3);
  max-width: 40rem;
  margin: 0 auto var(--sp-6);
  text-align: left;
}

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(247, 239, 225, 0.055);
  border: 1px solid rgba(201, 162, 75, 0.2);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: rgba(247, 239, 225, 0.85);
}

.promo-list svg {
  width: 16px;
  height: 16px;
  margin-top: 0.24em;
  color: var(--color-gold-royal);
  flex: none;
}

/* ==========================================================================
   16. OG BANNER SHOWCASE
   ========================================================================== */

.og-showcase {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-xl);
  background: var(--color-plate-900);
  line-height: 0;
}

.og-showcase::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 206, 143, 0.28);
  border-radius: calc(var(--radius-2xl) - 10px);
  pointer-events: none;
  z-index: 3;
}

.og-showcase__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 900ms var(--ease-out);
}

.og-showcase:hover .og-showcase__img { transform: scale(1.02); }

.og-showcase__bar {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(180deg, rgba(36, 24, 17, 0.96) 0%, #241811 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.32);
  line-height: var(--lh-body);
  position: relative;
  z-index: 4;
}

.og-showcase__text h3 {
  color: var(--color-gold-pale);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}

.og-showcase__text p {
  color: rgba(247, 239, 225, 0.72);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.og-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.og-fact {
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  text-align: center;
}

.og-fact__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-bronze-deep);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.og-fact__label {
  font-size: 0.66rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   17. SCREENSHOT SLIDER
   ========================================================================== */

.shots {
  position: relative;
}

.shots__viewport {
  overflow: hidden;
  padding-block: var(--sp-5);
  /* Slides are scaled at their edges, so give the mask a little room to
     fade rather than clipping a hard line through a phone frame. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.shots__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
  cursor: grab;
}

.shots__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.shot {
  flex: 0 0 auto;
  width: clamp(190px, 56vw, 250px);
  user-select: none;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-slow) var(--ease-out);
  opacity: 0.55;
  transform: scale(0.9);
}

.shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.shot__frame {
  position: relative;
  padding: 7px;
  border-radius: 30px;
  background: linear-gradient(155deg, #6B4226 0%, #2E1F15 30%, #4A3524 65%, #241811 100%);
  box-shadow:
    0 28px 56px -26px rgba(59, 42, 30, 0.55),
    inset 0 0 0 1px rgba(232, 206, 143, 0.3);
}

.shot__frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 27px;
  border: 1px solid rgba(201, 162, 75, 0.42);
  pointer-events: none;
  z-index: 3;
}

.shot__screen {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-plate-900);
  line-height: 0;
}

.shot__screen img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.shot__caption {
  margin-top: var(--sp-4);
  text-align: center;
}

.shot__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  margin-bottom: 0.15rem;
}

.shot__caption span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.shots__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-bronze-deep);
  transition: all var(--dur-base) var(--ease-out);
  flex: none;
}

.shots__arrow:hover:not(:disabled) {
  background: var(--grad-gold-fill);
  border-color: rgba(168, 132, 47, 0.55);
  color: var(--color-plate-900);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.shots__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shots__arrow svg { width: 18px; height: 18px; }

.shots__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.shots__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-border-strong);
  transition: all var(--dur-base) var(--ease-out);
}

.shots__dot[aria-current="true"] {
  width: 26px;
  background: var(--grad-gold-fill);
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   18. TESTIMONIALS
   ========================================================================== */

.testimonial-grid {
  display: grid;
  gap: var(--sp-4);
}

.testimonial {
  position: relative;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  background: var(--grad-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-lg);
}

.testimonial__mark {
  position: absolute;
  top: 0.35rem;
  left: var(--sp-5);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(201, 162, 75, 0.24);
  pointer-events: none;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-3);
  color: var(--color-gold-royal);
}

.testimonial__stars svg { width: 15px; height: 15px; }

.testimonial__quote {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-5);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-bronze-fill);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  flex: none;
}

.testimonial__name {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  line-height: 1.35;
}

.testimonial__meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   19. ACCORDION (FAQ)
   ========================================================================== */

.accordion {
  display: grid;
  gap: var(--sp-3);
}

.accordion__item {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.accordion__item.is-open {
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}

.accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  line-height: 1.45;
  transition: color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.accordion__trigger:hover {
  color: var(--color-gold-deep);
  background: rgba(232, 206, 143, 0.1);
}

.accordion__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-deep);
  transition: transform var(--dur-slow) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.accordion__icon svg { width: 12px; height: 12px; }

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
  background: var(--color-gold-pale);
}

.accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height var(--dur-slow) var(--ease-out);
}

.accordion__body {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
}

.accordion__body p + p { margin-top: var(--sp-3); }

.accordion__body ul {
  margin-top: var(--sp-3);
  padding-left: 1.15rem;
  list-style: disc;
}

.accordion__body li { margin-bottom: var(--sp-1); }
.accordion__body li::marker { color: var(--color-gold-royal); }

/* ==========================================================================
   20. RESPONSIBLE GAMING
   ========================================================================== */

.rg-grid {
  display: grid;
  gap: var(--sp-4);
}

.rg-card {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-success);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.rg-card:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}

.rg-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--color-success-soft);
  color: var(--color-success);
}

.rg-card__icon svg { width: 19px; height: 19px; }

.rg-card__title {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-2);
}

.rg-card__text {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   21. CONTACT CARDS & FORM
   ========================================================================== */

.channel-grid {
  display: grid;
  gap: var(--sp-4);
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5);
  background: var(--grad-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-lg);
}

.channel-card__top {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.channel-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #35B7EA 0%, #229ED9 55%, #1B87BC 100%);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(34, 158, 217, 0.9);
}

.channel-card__icon svg { width: 27px; height: 27px; }

.channel-card__title {
  font-size: var(--fs-lg);
  margin-bottom: 0.15rem;
}

.channel-card__handle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  word-break: break-all;
}

.channel-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-4);
  flex: 1;
}

.channel-card__list {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.channel-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.channel-card__list svg {
  width: 13px;
  height: 13px;
  margin-top: 0.3em;
  color: var(--color-gold-royal);
  flex: none;
}

/* --- Form --- */
.form {
  display: grid;
  gap: var(--sp-5);
}

.form__row {
  display: grid;
  gap: var(--sp-5);
}

.field { display: grid; gap: var(--sp-2); }

.field__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-bronze-deep);
}

.field__label span { color: var(--color-danger); }

.field__control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-primary);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.field__control::placeholder { color: var(--color-text-muted); }

.field__control:focus {
  outline: none;
  border-color: var(--color-gold-royal);
  background: var(--color-bg-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.16);
}

textarea.field__control {
  min-height: 150px;
  resize: vertical;
  line-height: var(--lh-body);
}

select.field__control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%237A6653' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
}

.field__hint {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.field__error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-danger);
  font-weight: var(--fw-medium);
}

.field.has-error .field__control {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(163, 75, 57, 0.12);
}

.field.has-error .field__error { display: block; }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.field--check input {
  width: 17px;
  height: 17px;
  margin-top: 0.22rem;
  accent-color: var(--color-gold-deep);
  flex: none;
}

.field--check label {
  font-size: var(--fs-xs);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* Error message drops onto its own line inside the checkbox row */
.field--check { flex-wrap: wrap; }
.field--check .field__error { flex-basis: 100%; }

.form__status {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.form__status.is-visible { display: block; }

.form__status--ok {
  background: var(--color-success-soft);
  border: 1px solid rgba(76, 122, 90, 0.3);
  color: var(--color-success);
}

/* ==========================================================================
   22. FLOATING TELEGRAM FAB
   ========================================================================== */

.fab {
  position: fixed;
  right: var(--sp-4);
  bottom: calc(var(--mobilebar-h) + var(--sp-4));
  z-index: var(--z-fab);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.05rem 0.65rem 0.65rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #35B7EA 0%, #229ED9 55%, #1B87BC 100%);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(27, 135, 188, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  opacity: 0;
  transform: translateY(24px);
  animation: fab-in var(--dur-slow) var(--ease-spring) 900ms forwards;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

@keyframes fab-in {
  to { opacity: 1; transform: translateY(0); }
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px rgba(27, 135, 188, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.fab__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex: none;
}

.fab__icon svg { width: 19px; height: 19px; }

/* Gentle attention pulse — never obnoxious */
.fab__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: fab-pulse 2.8s var(--ease-soft) infinite;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

.fab__label {
  display: none;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.fab__label > span { display: block; }

.fab__label > span + span {
  font-size: 0.63rem;
  font-weight: var(--fw-medium);
  opacity: 0.82;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .fab {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .fab__icon::after { animation: none; opacity: 0; }
}

/* ==========================================================================
   23. STICKY MOBILE BOTTOM BAR
   ========================================================================== */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky-bar);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--mobilebar-h);
  background: rgba(251, 246, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 26px -14px rgba(107, 66, 38, 0.32);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  animation: bar-in var(--dur-slow) var(--ease-out) 500ms forwards;
}

@keyframes bar-in {
  to { transform: translateY(0); }
}

.mobile-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--grad-gold-foil);
}

.mobile-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  font-size: 0.63rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  transition: color var(--dur-base) var(--ease-out);
}

.mobile-bar__item svg {
  width: 20px;
  height: 20px;
  transition: transform var(--dur-base) var(--ease-spring);
}

.mobile-bar__item:hover,
.mobile-bar__item.is-active { color: var(--color-gold-deep); }

.mobile-bar__item:active svg { transform: scale(0.88); }

.mobile-bar__item--cta { position: relative; color: var(--color-gold-deep); }

.mobile-bar__item--cta svg {
  padding: 4px;
  border-radius: 50%;
  background: var(--grad-gold-fill);
  color: var(--color-plate-900);
  box-shadow: var(--shadow-gold);
  width: 28px;
  height: 28px;
  margin-top: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bar { transform: none; animation: none; }
}

/* Give page bottom clearance for the bar */
body { padding-bottom: var(--mobilebar-h); }

/* ==========================================================================
   24. BREADCRUMBS & PAGE HERO
   ========================================================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 2rem + 2.6vw, 4.5rem) clamp(2.5rem, 2rem + 2.6vw, 4.5rem);
  background:
    radial-gradient(100% 80% at 82% 0%, rgba(232, 206, 143, 0.32) 0%, rgba(232, 206, 143, 0) 60%),
    var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__inner {
  position: relative;
  z-index: var(--z-base);
  max-width: 62rem;
}

.page-hero__title {
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}

.page-hero__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  max-width: 62ch;
  text-wrap: pretty;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.page-hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.page-hero__meta svg { width: 14px; height: 14px; color: var(--color-gold-royal); flex: none; }

.breadcrumb {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-xs);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--color-border-strong);
}

.breadcrumb a {
  color: var(--color-bronze-mid);
  transition: color var(--dur-fast) var(--ease-out);
}

.breadcrumb a:hover { color: var(--color-gold-deep); }

.breadcrumb [aria-current="page"] { color: var(--color-text-secondary); }

/* Table of contents (legal pages) */
.toc {
  padding: var(--sp-5);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-8);
}

.toc__title {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-4);
}

.toc__list {
  display: grid;
  gap: var(--sp-2);
  counter-reset: toc;
}

.toc__list a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  counter-increment: toc;
}

.toc__list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-gold-royal);
  flex: none;
}

.toc__list a:hover {
  color: var(--color-bronze-deep);
  transform: translateX(3px);
}

/* ==========================================================================
   25. SPLIT / MEDIA SECTIONS
   ========================================================================== */

.split {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-lg);
  background: var(--color-plate-900);
  line-height: 0;
}

.split__media img { width: 100%; height: auto; }

.split__title { margin-bottom: var(--sp-4); }

.split__text p { margin-bottom: var(--sp-4); line-height: var(--lh-loose); }
.split__text p:last-child { margin-bottom: 0; }

.check-list {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.check-list svg {
  width: 17px;
  height: 17px;
  margin-top: 0.24em;
  color: var(--color-gold-royal);
  flex: none;
}

.check-list strong {
  color: var(--color-bronze-deep);
  font-weight: var(--fw-semibold);
}

/* Two-column info table for spec lists */
.spec-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.spec-list__row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}

.spec-list__row:last-child { border-bottom: 0; }
.spec-list__row:nth-child(odd) { background: rgba(245, 237, 224, 0.55); }

.spec-list__key {
  font-weight: var(--fw-semibold);
  color: var(--color-bronze-deep);
  letter-spacing: 0.01em;
}

.spec-list__val { color: var(--color-text-secondary); }

/* ==========================================================================
   26. CTA BAND
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: var(--section-y-lg);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(232, 206, 143, 0.4) 0%, rgba(232, 206, 143, 0) 62%),
    var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
}

.cta-band__inner {
  position: relative;
  z-index: var(--z-base);
  max-width: 46rem;
  margin-inline: auto;
}

.cta-band__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}

.cta-band__text {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-7);
  text-wrap: pretty;
}

.cta-band__note {
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   27. KEYWORD / TOPIC CLOUD
   ========================================================================== */

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.topic-cloud li {
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.topic-cloud li:hover {
  border-color: var(--color-gold-royal);
  background: var(--color-gold-pale);
  color: var(--color-gold-deep);
}

/* ==========================================================================
   28. FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--grad-plate);
  color: var(--color-text-on-dark);
  padding-top: clamp(3rem, 2.4rem + 2.6vw, 4.75rem);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold-foil);
  opacity: 0.85;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 82% 0%, rgba(201, 162, 75, 0.16) 0%, rgba(201, 162, 75, 0) 65%);
  pointer-events: none;
}

.site-footer > * { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.footer-brand__plate {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(247, 239, 225, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.35);
  margin-bottom: var(--sp-4);
}

.footer-brand__logo { height: 34px; width: auto; }

.footer-brand__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: rgba(247, 239, 225, 0.68);
  margin-bottom: var(--sp-5);
  max-width: 42ch;
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
}

.footer-social__link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(247, 239, 225, 0.07);
  border: 1px solid rgba(201, 162, 75, 0.28);
  color: var(--color-gold-light);
  transition: all var(--dur-base) var(--ease-out);
}

.footer-social__link:hover {
  background: var(--grad-gold-fill);
  border-color: var(--color-gold-light);
  color: var(--color-plate-900);
  transform: translateY(-2px);
}

.footer-social__link svg { width: 18px; height: 18px; }

.footer-col__title {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-royal);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(201, 162, 75, 0.22);
}

.footer-links { display: grid; gap: var(--sp-3); }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-sm);
  color: rgba(247, 239, 225, 0.72);
  transition: color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(3px);
}

.footer-contact { display: grid; gap: var(--sp-4); }

.footer-contact__item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  background: rgba(247, 239, 225, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.2);
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}

.footer-contact__item:hover {
  border-color: rgba(201, 162, 75, 0.5);
  background: rgba(247, 239, 225, 0.08);
}

.footer-contact__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, #35B7EA, #1B87BC);
  color: #fff;
}

.footer-contact__icon svg { width: 17px; height: 17px; }

.footer-contact__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  color: var(--color-gold-light);
  margin-bottom: 0.1rem;
}

.footer-contact__desc {
  display: block;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(247, 239, 225, 0.6);
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4rem 0.72rem;
  border-radius: var(--radius-xs);
  background: rgba(247, 239, 225, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.22);
  font-size: 0.66rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 239, 225, 0.7);
}

.trust-badge svg { width: 13px; height: 13px; color: var(--color-gold-royal); flex: none; }

/* Disclaimer band */
.footer-disclaimer {
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}

.footer-disclaimer__inner {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  background: rgba(36, 24, 17, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.2);
}

.footer-disclaimer__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.14);
  border: 1px solid var(--color-gold-royal);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-gold-light);
  letter-spacing: -0.02em;
}

.footer-disclaimer__text {
  font-size: var(--fs-xs);
  line-height: 1.75;
  color: rgba(247, 239, 225, 0.62);
}

.footer-disclaimer__text strong { color: rgba(247, 239, 225, 0.9); font-weight: var(--fw-semibold); }

.footer-disclaimer__text a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  display: grid;
  gap: var(--sp-3);
  text-align: center;
}

.footer-bottom__copy {
  font-size: var(--fs-xs);
  color: rgba(247, 239, 225, 0.55);
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
}

.footer-bottom__legal a {
  color: rgba(247, 239, 225, 0.62);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-bottom__legal a:hover { color: var(--color-gold-light); }

/* ==========================================================================
   29. SCROLL REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] { transform: none; }

[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="left"].is-revealed,
[data-reveal="right"].is-revealed { transform: translateX(0); }

[data-reveal="zoom"] { transform: scale(0.955); }
[data-reveal="zoom"].is-revealed { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   30. RESPONSIVE — TABLET (>= 768px)
   ========================================================================== */

@media (min-width: 768px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }

  .fab {
    right: var(--sp-6);
    bottom: var(--sp-6);
    padding-right: 1.3rem;
  }

  .fab__label { display: block; }

  .brand__logo { height: 38px; }
  .brand__plate { padding: 0.45rem 1rem; }

  .nav { display: block; }
  .nav-toggle { display: none; }
  .drawer { display: none; }
  .header__cta { display: inline-flex; }

  .hero__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    grid-template-areas:
      "copytop mockup"
      "copybottom mockup";
    column-gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    row-gap: var(--sp-5);
    align-items: start;
  }

  .device { width: clamp(270px, 34vw, 330px); }

  .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-border-strong) 30%, var(--color-border-strong) 70%, transparent);
  }

  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); }

  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }

  .rg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }

  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }

  .form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--reverse .split__media { order: 2; }

  .og-showcase__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--sp-7);
    padding: var(--sp-6) var(--sp-8);
  }

  .og-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--sp-8) var(--sp-7);
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .footer-bottom__legal { justify-content: flex-end; }

  .shot { width: 250px; }

  .promo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .toc__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2) var(--sp-6); }

  .accordion__trigger { font-size: var(--fs-lg); padding: var(--sp-5) var(--sp-6); }
  .accordion__body { padding: 0 var(--sp-6) var(--sp-6); font-size: var(--fs-base); }
}

/* ==========================================================================
   31. RESPONSIVE — DESKTOP (>= 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
  .brand__logo { height: 42px; }

  .header__telegram { display: inline-flex; }

  .hero { padding-block: clamp(3.5rem, 2.5rem + 3vw, 6rem) clamp(4.5rem, 3rem + 4vw, 7rem); }

  .hero__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    column-gap: 3.5rem;
  }

  .device { width: 340px; }

  .games-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .games-grid--wide { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .games-grid--featured { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .rg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.3fr);
  }

  .footer-brand { grid-column: auto; }

  .promo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .split--wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

/* ==========================================================================
   32. PARALLAX HOOK
   ========================================================================== */

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none; }
}

/* ==========================================================================
   33. RTL (Urdu)
   ========================================================================== */

.is-rtl .eyebrow::before,
.is-rtl .eyebrow::after { transform: scaleX(-1); }

.is-rtl .callout {
  border-left: 0;
  border-right: 2px solid var(--color-gold-royal);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.is-rtl .rg-card {
  border-left: 1px solid var(--color-border);
  border-right: 2px solid var(--color-success);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.is-rtl .rg-card:hover { transform: translateX(-3px); }

.is-rtl .prose ul,
.is-rtl .prose ol { padding-left: 0; padding-right: 1.35rem; }

.is-rtl .step { padding-left: var(--sp-5); padding-right: calc(var(--sp-5) + 46px); }
.is-rtl .step::before { left: auto; right: var(--sp-5); }

.is-rtl .feature-card__index { right: auto; left: var(--sp-5); }
.is-rtl .testimonial__mark { left: auto; right: var(--sp-5); }
.is-rtl .game-card__tag { left: auto; right: var(--sp-2); }

.is-rtl .footer-links a:hover { transform: translateX(-3px); }
.is-rtl .toc__list a:hover { transform: translateX(-3px); }

.is-rtl .fab { right: auto; left: var(--sp-4); }

@media (min-width: 768px) {
  .is-rtl .fab { left: var(--sp-6); right: auto; }
  .is-rtl .lang__menu { right: auto; left: 0; }
  .is-rtl .footer-bottom__legal { justify-content: flex-start; }
}

/* Urdu reads better with a slightly taller line box */
.is-rtl body,
.is-rtl p,
.is-rtl li { line-height: 1.95; }

/* ==========================================================================
   34. PRINT
   ========================================================================== */

@media print {
  .site-header,
  .mobile-bar,
  .fab,
  .drawer,
  .cta-band,
  .shots__controls { display: none !important; }

  body { background: #fff; color: #000; padding-bottom: 0; }
  body::before { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
