/* ==========================================================================
   dk999 Game — Global stylesheet
   Layout · Navigation · Buttons · Cards · Footer · Shared components
   Mobile-first:  base  ->  @media (min-width: 768px)  ->  (min-width: 1200px)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */

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

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  /* Never allow sideways movement of the page */
  overflow-x: hidden;
}

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

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

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

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

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

ul, ol { list-style: none; }

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

:where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.022em;
  color: var(--color-charcoal-900);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { text-wrap: pretty; }

::selection {
  background: var(--color-emerald-500);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--color-emerald-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Urdu strings ---------------------------------------------------------- */
[lang="ur"] {
  font-family: var(--font-urdu);
  line-height: 2.1;
  font-size: 0.94em;
}

.u-rtl { direction: rtl; text-align: right; }

/* Skip link ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: var(--z-toast);
  padding: 0.75rem 1.25rem;
  background: var(--color-emerald-900);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--dur-base) var(--ease-out-expo);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   2. 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) * 2));
}

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

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;            /* keeps decorative shapes from widening the page */
}

.section--alt { background: var(--color-bg-alt); }
.section--tint { background: var(--color-emerald-100); }
.section--parchment { background: var(--gradient-parchment); }

.section--hairline { border-top: 1px solid var(--color-border); }

/* Gold hairline rule used instead of heavy block dividers ---------------- */
.hairline-gold {
  position: relative;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--color-gold-500) 22%, var(--color-gold-500) 78%, transparent);
  opacity: 0.55;
  overflow: hidden;
}
.hairline-gold::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #fff8dc, transparent);
}
.hairline-gold.is-visible::after { animation: sweep 1.9s var(--ease-out-expo) 0.15s 1 forwards; }

@keyframes sweep {
  from { left: -40%; }
  to   { left: 110%; }
}

/* Grid helpers ----------------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.grid > * { min-width: 0; }

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

@media (min-width: 768px) {
  .grid { gap: 1.5rem; }
}
@media (min-width: 1200px) {
  .grid { gap: 1.875rem; }
}

.stack > * + * { margin-top: 1rem; }
.stack--lg > * + * { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   3. SECTION HEADERS & TYPOGRAPHIC UTILITIES
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-emerald-700);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.eyebrow--gold { color: var(--color-gold-700); }
.eyebrow--light { color: var(--color-gold-300); }
.eyebrow--light::before { background: var(--color-gold-300); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head--center .eyebrow { justify-content: center; }

.section__title { margin-top: 0.875rem; }

.section__lede {
  margin-top: 1.125rem;
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
}

.lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--color-text-secondary);
}

.text-muted { color: var(--color-text-secondary); }
.text-emerald { color: var(--color-emerald-700); }
.text-gold { color: var(--color-gold-700); }
.text-center { text-align: center; }

.gold-word {
  background: linear-gradient(120deg, #A9781F 0%, #D4AF37 35%, #F5E6A8 52%, #D4AF37 68%, #A9781F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Rich body copy ---------------------------------------------------------- */
.prose p + p,
.prose ul + p,
.prose p + ul,
.prose p + ol { margin-top: 1.125rem; }

.prose p { color: var(--color-text-secondary); }
.prose strong { color: var(--color-charcoal-900); font-weight: 650; }

.prose h3 { margin-top: 2.25rem; margin-bottom: 0.75rem; }
.prose h4 { margin-top: 1.75rem; margin-bottom: 0.5rem; }

.prose a:not(.btn) {
  color: var(--color-emerald-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(22, 168, 118, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--dur-fast);
}
.prose a:not(.btn):hover { text-decoration-color: var(--color-emerald-500); }

.list-check { display: grid; gap: 0.75rem; }
.list-check li {
  position: relative;
  padding-inline-start: 2rem;
  color: var(--color-text-secondary);
}
.list-check li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-emerald-100);
  border: 1px solid var(--color-emerald-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23106B4E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.list-bullet { display: grid; gap: 0.6rem; }
.list-bullet li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--color-text-secondary);
}
.list-bullet li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--color-gold-500);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-out-expo),
    box-shadow var(--dur-base) var(--ease-out-expo),
    background-color var(--dur-base) var(--ease-out-expo),
    color var(--dur-base) var(--ease-out-expo),
    border-color var(--dur-base) var(--ease-out-expo);
}

.btn svg { flex: none; }

.btn:active { transform: scale(0.97); }

/* Gold shimmer sweep on every button */
.btn::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: -1;
}
.btn:hover::after { animation: sweep 0.85s var(--ease-out-expo) 1 forwards; }

.btn--primary {
  background: var(--gradient-emerald);
  color: var(--color-text-on-emerald);
  box-shadow: 0 10px 26px rgba(11, 61, 46, 0.26);
}
.btn--primary:hover {
  box-shadow: 0 16px 38px rgba(11, 61, 46, 0.34);
  transform: translateY(-3px);
}
.btn--primary:active { transform: translateY(-1px) scale(0.97); }

.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-text-on-gold);
  box-shadow: 0 10px 26px rgba(169, 120, 31, 0.28);
}
.btn--gold:hover {
  box-shadow: 0 16px 38px rgba(169, 120, 31, 0.36);
  transform: translateY(-3px);
}
.btn--gold:active { transform: translateY(-1px) scale(0.97); }

.btn--outline-gold {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-gold-700);
  border: 1.5px solid var(--color-gold-500);
  backdrop-filter: blur(6px);
}
.btn--outline-gold:hover {
  background: var(--color-gold-100);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-3px);
}

.btn--outline-emerald {
  background: transparent;
  color: var(--color-emerald-700);
  border: 1.5px solid var(--color-emerald-500);
}
.btn--outline-emerald:hover {
  background: var(--color-emerald-100);
  transform: translateY(-3px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--color-gold-300);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}
.btn--sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
}
.btn--block { display: flex; width: 100%; }

/* Attention pulse on the single most important CTA ---------------------- */
.btn--pulse { animation: goldRing 4s var(--ease-in-out-soft) 1.2s infinite; }

@keyframes goldRing {
  0%, 72%, 100% { box-shadow: 0 10px 26px rgba(11, 61, 46, 0.26), 0 0 0 0 rgba(212, 175, 55, 0.55); }
  80%           { box-shadow: 0 10px 26px rgba(11, 61, 46, 0.26), 0 0 0 10px rgba(212, 175, 55, 0); }
  88%           { box-shadow: 0 10px 26px rgba(11, 61, 46, 0.26), 0 0 0 0 rgba(212, 175, 55, 0.45); }
  96%           { box-shadow: 0 10px 26px rgba(11, 61, 46, 0.26), 0 0 0 14px rgba(212, 175, 55, 0); }
}

/* Telegram brand button -------------------------------------------------- */
.btn--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(34, 158, 217, 0.3);
}
.btn--telegram:hover {
  box-shadow: 0 16px 38px rgba(34, 158, 217, 0.4);
  transform: translateY(-3px);
}
/* Telegram glyph — always explicitly sized so the SVG can never
   fall back to its intrinsic 300x150 default box. */
.tg-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn--telegram-outline {
  background: #fff;
  color: #1B8FC4;
  border: 1.5px solid rgba(34, 158, 217, 0.45);
}
.btn--telegram-outline:hover {
  background: #EAF7FD;
  border-color: #2AABEE;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 158, 217, 0.18);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. BADGES / PILLS / CHIPS
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.badge--gold {
  background: var(--color-gold-100);
  color: var(--color-gold-700);
  border: 1px solid rgba(212, 175, 55, 0.5);
}
.badge--emerald {
  background: var(--color-emerald-100);
  color: var(--color-emerald-700);
  border: 1px solid rgba(22, 168, 118, 0.35);
}
.badge--charcoal {
  background: rgba(22, 25, 26, 0.06);
  color: var(--color-charcoal-700);
  border: 1px solid rgba(22, 25, 26, 0.1);
}
.badge--live {
  background: #fff;
  color: var(--color-emerald-700);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-emerald-500);
  box-shadow: 0 0 0 0 rgba(22, 168, 118, 0.6);
  animation: livePulse 2.2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 168, 118, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(22, 168, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 168, 118, 0); }
}

/* --------------------------------------------------------------------------
   6. CARDS  (signature clipped corner)
   -------------------------------------------------------------------------- */

.card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur-base) var(--ease-out-expo),
    box-shadow var(--dur-base) var(--ease-out-expo),
    border-color var(--dur-base) var(--ease-out-expo);
}

.card--clipped {
  border-radius: var(--radius-md);
  clip-path: var(--clip-corner);
}
.card--clipped::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(225deg, var(--color-gold-500) 0%, var(--color-gold-300) 62%, transparent 63%);
  pointer-events: none;
}

.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(22, 168, 118, 0.35);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--color-emerald-100);
  color: var(--color-emerald-700);
  border: 1px solid rgba(22, 168, 118, 0.22);
  transition: transform var(--dur-base) var(--ease-out-expo), background-color var(--dur-base);
}
.card__icon svg { width: 26px; height: 26px; }
.card--lift:hover .card__icon {
  transform: rotate(-6deg) scale(1.06);
  background: var(--color-gold-100);
  color: var(--color-gold-700);
}

.card__title { margin-bottom: 0.625rem; font-size: 1.125rem; }
.card__text { color: var(--color-text-secondary); font-size: 0.9375rem; }

.card--dark {
  background: var(--gradient-emerald-deep);
  border-color: rgba(212, 175, 55, 0.28);
  color: rgba(255, 255, 255, 0.82);
}
.card--dark .card__title,
.card--dark h3, .card--dark h4 { color: #fff; }
.card--dark .card__text { color: rgba(255, 255, 255, 0.76); }
.card--dark .card__icon {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.36);
  color: var(--color-gold-300);
}

/* Numbered step card ------------------------------------------------------ */
.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-emerald);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(11, 61, 46, 0.24);
}

/* --------------------------------------------------------------------------
   7. DECORATIVE FACET SHAPES
   -------------------------------------------------------------------------- */

.facet {
  position: absolute;
  z-index: var(--z-decor);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  will-change: transform;
}
.facet svg { width: 100%; height: 100%; }
.facet--spin { animation: facetSpin 52s linear infinite; }
.facet--spin-rev { animation: facetSpin 64s linear infinite reverse; }

@keyframes facetSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.glow-blob {
  position: absolute;
  z-index: var(--z-decor);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}
.glow-blob--emerald { background: radial-gradient(circle, rgba(111, 211, 172, 0.75), transparent 70%); }
.glow-blob--gold { background: radial-gradient(circle, rgba(240, 217, 140, 0.8), transparent 70%); }

/* --------------------------------------------------------------------------
   8. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  width: 100%;
  background: rgba(251, 249, 244, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    padding var(--dur-base) var(--ease-out-expo),
    box-shadow var(--dur-base) var(--ease-out-expo),
    background-color var(--dur-base),
    border-color var(--dur-base);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gradient-gold-sweep);
  opacity: 0.45;
}
.site-header.is-stuck {
  background: rgba(251, 249, 244, 0.96);
  box-shadow: var(--shadow-nav);
  border-bottom-color: rgba(22, 25, 26, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.875rem;
  transition: padding var(--dur-base) var(--ease-out-expo);
}
.site-header.is-stuck .nav { padding-block: 0.5rem; }

/* Logo ------------------------------------------------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 14px rgba(22, 25, 26, 0.07);
  transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base);
}
.brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}
.brand__logo {
  width: auto;
  height: 30px;
  transition: height var(--dur-base) var(--ease-out-expo);
}
.brand__tag {
  display: none;
  padding-inline-start: 0.75rem;
  border-inline-start: 1px solid var(--color-border);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-emerald-700);
  line-height: 1.35;
}
.site-header.is-stuck .brand__logo { height: 26px; }

.brand--footer {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(212, 175, 55, 0.5);
}
.brand--footer .brand__logo { height: 38px; }

/* Nav links -------------------------------------------------------------- */
.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  position: relative;
  padding: 0.5rem 0.8125rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 550;
  color: var(--color-charcoal-700);
  transition: color var(--dur-fast), background-color var(--dur-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-out-expo);
}
.nav__link:hover { color: var(--color-emerald-700); }
.nav__link:hover::after { width: 22px; }
.nav__link.is-active {
  color: var(--color-emerald-900);
  background: var(--color-emerald-100);
  font-weight: 650;
}
.nav__link.is-active::after { width: 22px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}

/* Language toggle -------------------------------------------------------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.lang-toggle__btn {
  padding: 0.3125rem 0.6875rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.lang-toggle__btn[aria-pressed="true"] {
  background: var(--gradient-emerald);
  color: #fff;
}
.lang-toggle__btn[lang="ur"] { font-family: var(--font-urdu); font-size: 0.8125rem; }

/* Telegram round icon button in nav -------------------------------------- */
.icon-btn-tg {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.32);
  transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base);
}
.icon-btn-tg svg { width: 20px; height: 20px; }
.icon-btn-tg:hover {
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 12px 26px rgba(34, 158, 217, 0.45);
}

.nav__cta { display: none; }

/* Hamburger -------------------------------------------------------------- */
.nav__burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-charcoal-900);
  transition: transform var(--dur-base) var(--ease-out-expo), opacity var(--dur-fast);
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer ---------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  grid-template-rows: 1fr;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 26, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out-expo);
}
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85vw, 340px);
  height: 100%;
  padding: 1.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  background: var(--color-bg);
  border-inline-start: 1px solid var(--color-border);
  box-shadow: -20px 0 50px rgba(22, 25, 26, 0.18);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer.is-open .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal-700);
}
.mobile-drawer__close svg { width: 18px; height: 18px; }

.mobile-drawer__links {
  display: grid;
  gap: 0.25rem;
  margin-block: 1.25rem;
}
.mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-charcoal-700);
  border: 1px solid transparent;
  transition: background-color var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.mobile-drawer__link:hover,
.mobile-drawer__link.is-active {
  background: var(--color-emerald-100);
  color: var(--color-emerald-900);
  border-color: rgba(22, 168, 118, 0.25);
}
.mobile-drawer__link svg { width: 16px; height: 16px; opacity: 0.5; }

.mobile-drawer__cta { display: grid; gap: 0.75rem; margin-top: 1.5rem; }

.mobile-drawer__note {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   9. FLOATING TELEGRAM ACTION (all pages)
   -------------------------------------------------------------------------- */

.tg-float {
  position: fixed;
  right: clamp(0.875rem, 2vw, 1.5rem);
  bottom: clamp(0.875rem, 2vw, 1.5rem);
  z-index: var(--z-sticky-bar);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem 0.75rem 0.875rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  box-shadow: 0 12px 30px rgba(34, 158, 217, 0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-out-expo), opacity var(--dur-base), box-shadow var(--dur-base);
}
.tg-float.is-shown { transform: translateY(0); opacity: 1; }
.tg-float:hover { box-shadow: 0 18px 40px rgba(34, 158, 217, 0.5); }
.tg-float svg { width: 22px; height: 22px; flex: none; }
.tg-float__label { display: none; }

@media (min-width: 480px) {
  .tg-float__label { display: inline; }
}

/* --------------------------------------------------------------------------
   10. STATS / COUNT-UP
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  padding: 1.375rem 1rem;
  background: var(--color-surface);
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-emerald-900);
  letter-spacing: -0.02em;
}
.stat__value .unit { color: var(--color-gold-700); }
.stat__label {
  margin-top: 0.375rem;
  font-size: var(--fs-print);
  font-weight: 550;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   11. ACCORDION (FAQ)
   -------------------------------------------------------------------------- */

.accordion { display: grid; gap: 0.75rem; }

.acc-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.acc-item.is-open {
  border-color: rgba(22, 168, 118, 0.4);
  box-shadow: var(--shadow-card);
}
.acc-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  color: var(--color-charcoal-900);
  transition: color var(--dur-fast);
}
.acc-item__btn:hover { color: var(--color-emerald-700); }
.acc-item__icon {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-emerald-100);
  border: 1px solid rgba(22, 168, 118, 0.28);
  transition: background-color var(--dur-base), transform var(--dur-base) var(--ease-out-expo);
}
.acc-item__icon::before,
.acc-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-emerald-700);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-base), background-color var(--dur-base);
}
.acc-item__icon::before { width: 11px; height: 2px; }
.acc-item__icon::after  { width: 2px; height: 11px; }
.acc-item.is-open .acc-item__icon {
  background: var(--gradient-gold);
  border-color: transparent;
  transform: rotate(180deg);
}
.acc-item.is-open .acc-item__icon::before { background: var(--color-charcoal-900); }
.acc-item.is-open .acc-item__icon::after { opacity: 0; }

.acc-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out-expo);
}
.acc-item.is-open .acc-item__panel { grid-template-rows: 1fr; }
.acc-item__panel > div { overflow: hidden; }
.acc-item__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}
.acc-item__body p + p { margin-top: 0.875rem; }

/* --------------------------------------------------------------------------
   12. TABLES
   -------------------------------------------------------------------------- */

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
  -webkit-overflow-scrolling: touch;
}
.table {
  min-width: 480px;
  font-size: 0.9375rem;
}
.table th,
.table td {
  padding: 0.9375rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.table thead th {
  background: var(--color-emerald-100);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-emerald-900);
}
.table tbody tr:last-child th,
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:nth-child(even) { background: rgba(243, 239, 228, 0.5); }
.table td:first-child { font-weight: 600; color: var(--color-charcoal-900); }

/* --------------------------------------------------------------------------
   13. CTA BANDS
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-emerald-deep);
  border-top: 1px solid var(--color-gold-500);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 168, 118, 0.5), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(212, 175, 55, 0.28), transparent 45%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.8); }
.cta-band .disclaimer-line { color: rgba(255, 255, 255, 0.55); }

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 3rem;
  }
}

.disclaimer-line {
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--color-charcoal-900);
  color: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-500) 20%, var(--color-gold-300) 50%, var(--color-gold-500) 80%, transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 168, 118, 0.22), transparent 70%);
  pointer-events: none;
}

.footer__top {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 2rem; }
}
@media (min-width: 1100px) {
  .footer__top { grid-template-columns: 1.7fr 1fr 1fr 1.35fr; gap: 3rem 2.5rem; }
}

.footer__about p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__title {
  margin-bottom: 1.125rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-300);
}

.footer__links { display: grid; gap: 0.6875rem; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.66);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.footer__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.65);
  transition: background-color var(--dur-fast);
}
.footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer__links a:hover::before { background: var(--color-emerald-300); }

.footer__tg { display: grid; gap: 0.75rem; }
.footer__tg-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--dur-base), border-color var(--dur-base), transform var(--dur-base) var(--ease-out-expo);
}
.footer__tg-card:hover {
  background: rgba(34, 158, 217, 0.16);
  border-color: rgba(42, 171, 238, 0.55);
  transform: translateY(-2px);
}
.footer__tg-card .tg-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
}
.footer__tg-card .tg-badge svg { width: 19px; height: 19px; }
.footer__tg-card b {
  display: block;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 600;
}
.footer__tg-card span {
  font-size: var(--fs-print);
  color: rgba(255, 255, 255, 0.55);
}

.footer__keywords {
  position: relative;
  z-index: var(--z-content);
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer__keywords h3 {
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.kw-cloud li {
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.kw-cloud li:hover {
  color: var(--color-gold-300);
  border-color: rgba(212, 175, 55, 0.4);
}

.footer__disclaimer {
  position: relative;
  z-index: var(--z-content);
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--fs-print);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}
.footer__disclaimer p + p { margin-top: 0.75rem; }
.footer__disclaimer strong { color: rgba(255, 255, 255, 0.78); font-weight: 600; }
.footer__disclaimer .warn-18 {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-inline-end: 0.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-500);
  color: var(--color-gold-300);
  font-size: 0.6875rem;
  font-weight: 700;
  vertical-align: middle;
}

.footer__bottom {
  position: relative;
  z-index: var(--z-content);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--fs-print);
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bottom-links a { transition: color var(--dur-fast); }
.footer__bottom-links a:hover { color: var(--color-gold-300); }

/* --------------------------------------------------------------------------
   15. COOKIE BANNER
   -------------------------------------------------------------------------- */

.cookie {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: var(--z-toast);
  width: min(calc(100% - 2rem), 760px);
  transform: translate(-50%, 160%);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-float);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.cookie.is-shown { transform: translate(-50%, 0); }
.cookie__text {
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}
.cookie__text b { color: var(--color-charcoal-900); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.625rem; }

@media (min-width: 720px) {
  .cookie {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   16. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--color-border);
}
.page-hero__inner {
  position: relative;
  z-index: var(--z-content);
  max-width: 780px;
}
.page-hero h1 { margin-top: 1rem; }
.page-hero .lede { margin-top: 1.25rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}
.breadcrumb a { transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--color-emerald-700); }
.breadcrumb__sep { color: var(--color-gold-500); }
.breadcrumb [aria-current] { color: var(--color-charcoal-900); font-weight: 600; }

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL SYSTEM
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s var(--ease-out-expo),
    transform 0.72s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.94); }

/* --------------------------------------------------------------------------
   18. GAME CARD (shared: home carousel + games grid)
   -------------------------------------------------------------------------- */

.game-card {
  position: relative;
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  clip-path: var(--clip-corner-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur-base) var(--ease-out-expo),
    box-shadow var(--dur-base) var(--ease-out-expo),
    border-color var(--dur-base);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 175, 55, 0.55);
}
.game-card__media {
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: linear-gradient(150deg, var(--color-emerald-100), var(--color-gold-100));
}
.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.game-card:hover .game-card__media img { transform: scale(1.07); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0) 40%, rgba(11, 61, 46, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out-expo);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-gold);
  color: var(--color-charcoal-900);
  font-size: 0.8125rem;
  font-weight: 700;
  transform: translateY(10px) scale(0.9);
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.game-card:hover .game-card__play { transform: translateY(0) scale(1); }
.game-card__play svg { width: 13px; height: 13px; }

.game-card__tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  font-size: 0.625rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-emerald-800, #0B3D2E);
}
.game-card__tag--hot { background: var(--gradient-gold); color: var(--color-charcoal-900); }

.game-card__body {
  padding: 0.75rem 0.875rem 0.9375rem;
}
.game-card__name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--color-charcoal-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  color: var(--color-text-secondary);
}
.game-card__rtp { color: var(--color-emerald-700); font-weight: 650; }

/* --------------------------------------------------------------------------
   19. MISC UTILITIES
   -------------------------------------------------------------------------- */

.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;
}

.no-wrap { white-space: nowrap; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE — TABLET / DESKTOP NAV
   -------------------------------------------------------------------------- */

@media (min-width: 560px) {
  .brand__logo { height: 34px; }
  .site-header.is-stuck .brand__logo { height: 29px; }
}

@media (min-width: 992px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__cta { display: inline-flex; }
  .icon-btn-tg { display: grid; }
  .brand__logo { height: 40px; }
  .site-header.is-stuck .brand__logo { height: 33px; }
}

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

/* --------------------------------------------------------------------------
   21. REDUCED MOTION
   -------------------------------------------------------------------------- */

@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;
  }

  .facet--spin,
  .facet--spin-rev,
  .btn--pulse,
  .badge__dot { animation: none !important; }

  [data-reveal] { opacity: 1; transform: none; }
}
