/* ==========================================================================
   666xapk.pk — Premium Light Gaming Theme
   Royal Blue + Premium Gold · Light mode only
   Author: 666xapk.pk build
   Sections: 1 Reset · 2 Tokens · 3 Base · 4 Layout · 5 Buttons/Badges
             6 Header/Nav · 7 Hero · 8 Sections · 9 Cards · 10 Slider
             11 FAQ · 12 Footer · 13 FAB/MobileBar · 14 Utilities
             15 Animations · 16 Responsive · 17 Reduced motion
   ========================================================================== */

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

* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body { line-height: 1.6; -webkit-font-smoothing: antialiased; }

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

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

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

ul,
ol { list-style: none; }

/* ----------------------------------------------------------------- 2 Tokens */
:root {
  /* Brand — Royal Blue */
  --blue-900: #101c5c;
  --blue-800: #142270;
  --blue-700: #1a2fad;
  --blue-600: #2333c4;
  --blue-500: #2a3fd6;
  --blue-400: #4c5fe6;
  --blue-100: #e6eafb;
  --blue-50:  #eef1fe;

  /* Brand — Premium Gold */
  --gold-700: #a67c00; /* AA-safe gold text on white */
  --gold-600: #c79a2e;
  --gold-500: #d4af37;
  --gold-400: #e8c55a;
  --gold-300: #f0c75e;
  --gold-100: #fff6df;

  /* Neutrals */
  --bg:        #fafafc;
  --bg-alt:    #f5f7ff;
  --bg-tint:   #eef1fe;
  --white:     #ffffff;
  --ink:       #171b34;
  --ink-soft:  #33395c;
  --muted:     #5a6280;
  --line:      #e6e8f2;
  --line-soft: #eef0f8;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(26, 47, 173, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 47, 173, 0.10);
  --shadow-lg: 0 28px 64px rgba(26, 47, 173, 0.16);
  --shadow-gold: 0 12px 30px rgba(212, 175, 55, 0.35);

  --grad-blue: linear-gradient(135deg, #1a2fad 0%, #2a3fd6 60%, #4c5fe6 100%);
  --grad-gold: linear-gradient(135deg, #f0c75e 0%, #d4af37 55%, #c79a2e 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);

  /* Type */
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --gutter: clamp(1.1rem, 5vw, 4rem); /* extra side breathing room */
  --header-h: 78px;
}

/* ------------------------------------------------------------------- 3 Base */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--blue-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--ink-soft); }

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

::selection { background: var(--gold-300); color: var(--blue-900); }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--blue-700);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

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

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--blue {
  background: var(--grad-blue);
  color: #fff;
}
.section--blue h2,
.section--blue h3 { color: #fff; }
.section--blue p { color: rgba(255, 255, 255, 0.86); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.section--blue .eyebrow {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 199, 94, 0.5);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}
.section-title .u-underline { position: relative; white-space: nowrap; }

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  max-width: 65ch;
}
.section--blue .section-lead { color: rgba(255, 255, 255, 0.82); }
.section-head--center .section-lead { margin-inline: auto; }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* Diagonal divider */
.divider-diagonal {
  position: relative;
  height: clamp(48px, 6vw, 92px);
  background: inherit;
}
.divider-diagonal svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------- 5 Buttons/Badges */
.btn {
  --btn-bg: var(--blue-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--gold {
  --btn-bg: var(--grad-gold);
  --btn-fg: var(--blue-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 16px 38px rgba(212, 175, 55, 0.5); }

.btn--blue { --btn-bg: var(--grad-blue); box-shadow: var(--shadow-md); }
.btn--blue:hover { box-shadow: var(--shadow-lg); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--blue-700);
  border-color: var(--blue-100);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }

.btn--tg {
  --btn-bg: #ffffff;
  --btn-fg: #229ed9;
  border-color: #cfeaf7;
}
.btn--tg:hover { border-color: #229ed9; box-shadow: 0 12px 26px rgba(34, 158, 217, 0.22); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* Pills / chips */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--line);
}
.pill--gold { background: var(--gold-100); color: var(--gold-700); border-color: rgba(212,175,55,.35); }

/* Ribbon bonus badge */
.ribbon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1.4rem 0.85rem 1.25rem;
  background: var(--grad-gold);
  color: var(--blue-900);
  border-radius: 12px 12px 12px 4px;
  box-shadow: var(--shadow-gold);
  font-family: var(--font-display);
}
.ribbon::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -9px;
  border-width: 9px 9px 0 0;
  border-style: solid;
  border-color: #9c7413 transparent transparent transparent;
}
.ribbon__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.ribbon__amount { font-size: 1.6rem; font-weight: 800; line-height: 1; }

/* ------------------------------------------------------------ 6 Header/Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-shrunk {
  height: 62px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Logo on royal-blue pill so gold logo pops & stays visible */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  background: var(--grad-blue);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(26, 47, 173, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 0.3s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.brand:hover { transform: translateY(-1px); }
.brand img {
  height: 34px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.is-shrunk .brand { padding-block: 0.35rem; }
.site-header.is-shrunk .brand img { height: 28px; }
.brand__tag {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  text-transform: uppercase;
}

.primary-nav { margin-inline: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 0.3rem; }
.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 0.6rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.primary-nav a:hover { color: var(--blue-700); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--blue-700); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1px); }

/* --------------------------------------------------------------- 7 Hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 12% 0%, rgba(42, 63, 214, 0.10), transparent 60%),
    radial-gradient(50% 55% at 95% 20%, rgba(240, 199, 94, 0.18), transparent 60%),
    var(--grad-soft);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero__title .accent { color: var(--blue-700); }
.hero__title .gold { color: var(--gold-700); }
.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.6rem;
}
.hero__actions { margin-bottom: 1.5rem; }
.hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.hero__note svg { width: 1.1rem; height: 1.1rem; color: var(--gold-600); flex-shrink: 0; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.hero-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--blue-700);
  line-height: 1;
}
.hero-stat__num .suffix { color: var(--gold-600); }
.hero-stat__label { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }

/* Hero mockup — phone device frame */
.hero__visual { position: relative; display: grid; place-items: center; z-index: 1; }
.hero__shape {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  z-index: 0;
}
.hero__shape--gold {
  width: 320px; height: 320px;
  right: 4%; top: 6%;
  border: 2px solid rgba(212, 175, 55, 0.55);
  animation: float-slow 9s ease-in-out infinite;
}
.hero__shape--blue {
  width: 240px; height: 240px;
  left: 2%; bottom: 4%;
  background: radial-gradient(circle at 30% 30%, rgba(42, 63, 214, 0.14), transparent 70%);
  animation: float-slow 11s ease-in-out infinite reverse;
}

.device {
  position: relative;
  width: min(300px, 74vw);
  aspect-ratio: 300 / 610;
  background: linear-gradient(160deg, #1a2050, #0f1638);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  z-index: 2;
}
.device::before { /* notch */
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 108px; height: 22px;
  background: #0f1638;
  border-radius: 999px;
  z-index: 3;
}
.device__screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0b1030;
}
.device__screen img { width: 100%; height: 100%; object-fit: cover; }

.device-badge {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 0.7rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
}
.device-badge__ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--grad-gold);
  color: var(--blue-900);
  flex-shrink: 0;
}
.device-badge__ico svg { width: 20px; height: 20px; }
.device-badge strong { font-family: var(--font-display); display: block; font-size: 0.95rem; }
.device-badge span { font-size: 0.72rem; color: var(--muted); }
.device-badge--tl { top: 8%; left: -8%; animation: float-slow 6s ease-in-out infinite; }
.device-badge--br { bottom: 12%; right: -10%; animation: float-slow 7.5s ease-in-out infinite reverse; }

/* ---------------------------------------------------------- 8 Trust / Feature */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}
.trust-item { display: flex; align-items: center; gap: 0.8rem; }
.trust-item__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  flex-shrink: 0;
}
.trust-item__ico svg { width: 24px; height: 24px; }
.trust-item strong { font-family: var(--font-display); font-size: 1rem; display: block; color: var(--blue-900); }
.trust-item span { font-size: 0.82rem; color: var(--muted); }

/* --------------------------------------------------------------- 9 Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.35);
  border-color: rgba(212, 175, 55, 0.4);
}
.card__ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--grad-blue);
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.card__ico--gold { background: var(--grad-gold); color: var(--blue-900); }
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; color: var(--muted); }

/* Numbered step cards */
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute;
  top: -20px; left: 1.6rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--grad-gold);
  color: var(--blue-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.93rem; color: var(--muted); }

/* Feature list item */
.feature-li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-li:last-child { border-bottom: 0; }
.feature-li__ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--gold-100);
  color: var(--gold-700);
}
.feature-li__ico svg { width: 20px; height: 20px; }
.feature-li h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 0.2rem; color: var(--blue-900); }
.feature-li p { font-size: 0.9rem; color: var(--muted); }

/* Check list */
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23101c5c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Offer / promo cards (use banner images) */
.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d1130;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.offer-card img { display: block; width: 100%; height: auto; aspect-ratio: 991 / 309; }
.offer-card__body { padding: 1.3rem 1.4rem 1.5rem; background: #fff; }
.offer-card__body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.offer-card__body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.offer-card__tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--grad-gold); color: var(--blue-900);
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  box-shadow: var(--shadow-gold);
}

/* Game cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.1rem;
}
.game-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.45);
}
.game-card__media { position: relative; overflow: hidden; aspect-ratio: 211 / 260; background: var(--blue-50); }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-card__media img { transform: scale(1.07); }
.game-card__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(16,28,92,0) 40%, rgba(16,28,92,0.72) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card__play span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--grad-gold); color: var(--blue-900);
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.game-card:hover .game-card__play span { transform: translateY(0); }
.game-card__tag {
  position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.22rem 0.5rem; border-radius: 6px;
  background: var(--grad-gold); color: var(--blue-900);
  box-shadow: 0 4px 10px rgba(212,175,55,.4);
}
.game-card__tag--hot { background: linear-gradient(135deg,#ff6a3d,#ff3d6e); color:#fff; }
.game-card__tag--new { background: var(--grad-blue); color:#fff; }
.game-card__name {
  padding: 0.65rem 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--blue-900);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Filter chips */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--blue-400); color: var(--blue-700); }
.chip.is-active { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-band__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #fff;
}
.stat-band__num .suffix { color: var(--gold-300); }
.stat-band__label { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* Split media block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #0d1130;
}
.split__media img { width: 100%; height: auto; }
.split--reverse .split__media { order: -1; }

/* ---------------------------------------------------- 10 Screenshot slider */
.shots {
  position: relative;
}
.shots__viewport { overflow: hidden; padding: 1rem 0.25rem; }
.shots__track {
  display: flex;
  gap: 1.3rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.shot {
  flex: 0 0 auto;
  width: 230px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2050, #0f1638);
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.shot__frame { border-radius: 22px; overflow: hidden; aspect-ratio: 747 / 1280; background:#0b1030; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot__cap {
  text-align: center;
  padding: 0.6rem 0.4rem 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
}
.shots__nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.shots__btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-700);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.shots__btn:hover { background: var(--grad-blue); color: #fff; transform: translateY(-2px); }
.shots__btn svg { width: 22px; height: 22px; }
.shots__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
.shots__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: var(--line);
  transition: all 0.25s ease;
}
.shots__dot.is-active { background: var(--grad-gold); width: 26px; border-radius: 999px; }

/* OG / promo banner section */
.og-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-blue);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.og-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 90% 10%, rgba(240,199,94,0.25), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(76,95,230,0.4), transparent 60%);
  pointer-events: none;
}
.og-banner__content { position: relative; z-index: 2; }
.og-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 0.9rem; }
.og-banner p { color: rgba(255,255,255,0.86); margin-bottom: 1.5rem; max-width: 46ch; }
.og-banner__media {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(240, 199, 94, 0.5);
  box-shadow: var(--shadow-md);
}
.og-banner__media img { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------- 11 FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.is-open { border-color: rgba(212, 175, 55, 0.5); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--blue-900);
}
.faq-q__ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .faq-q__ico { transform: rotate(45deg); background: var(--grad-gold); color: var(--blue-900); }
.faq-q__ico svg { width: 18px; height: 18px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a__inner { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.96rem; }
.faq-a__inner p + p { margin-top: 0.7rem; }

/* --------------------------------------------------------------- 12 Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}
.footer-cta {
  background: var(--grad-gold);
  color: var(--blue-900);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
}
.footer-cta h2 { color: var(--blue-900); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.3rem; }
.footer-cta p { color: rgba(16, 28, 92, 0.82); font-weight: 500; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand__logo {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.footer-brand__logo img { height: 32px; width: auto; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-bottom: 1.2rem; max-width: 42ch; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--grad-gold); color: var(--blue-900); transform: translateY(-3px); border-color: transparent; }
.footer-social a svg { width: 20px; height: 20px; }

.footer-col h3 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 0.93rem; transition: color 0.2s ease, padding 0.2s ease; }
.footer-col a:hover { color: var(--gold-300); padding-left: 4px; }

/* Telegram channel cards (support vs community, clearly separated) */
.tg-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  transition: all 0.25s ease;
}
.tg-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(34, 158, 217, 0.6); transform: translateY(-2px); }
.tg-card__ico {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #229ed9;
  color: #fff;
}
.tg-card__ico svg { width: 24px; height: 24px; }
.tg-card__txt strong { color: #fff; display: block; font-family: var(--font-display); font-size: 0.95rem; }
.tg-card__txt span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); }

.footer-legal {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-disclaimer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  margin: 1.8rem 0;
}
.footer-disclaimer__age {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 2px solid var(--gold-500);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
}
.footer-disclaimer p { color: rgba(255,255,255,0.66); font-size: 0.85rem; line-height: 1.65; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* --------------------------------------------------- 13 FAB & Mobile bar */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(5.5rem, 8vw, 1.8rem);
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #229ed9;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(34, 158, 217, 0.5);
  transition: transform 0.25s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; z-index: 2; }
.fab__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--gold-500);
  animation: fab-pulse 2s ease-out infinite;
}
.fab__label {
  position: absolute;
  right: 74px;
  white-space: nowrap;
  background: var(--blue-900);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.25s ease;
}
.fab:hover .fab__label { opacity: 1; transform: translateX(0); }

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 950;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(26, 47, 173, 0.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-display);
}
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a[aria-current="page"] { color: var(--blue-700); }
.mobile-bar a[aria-current="page"] svg { color: var(--gold-600); }

/* ----------------------------------------------------------- 14 Utilities */
.u-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 8px;
  border-radius: 8px;
  background: var(--grad-gold);
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 0.9s ease 0.3s forwards;
}
.text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.prose p { margin-bottom: 1.1rem; font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.2rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 0.8rem; color: var(--blue-800); }
.prose ul { margin: 0 0 1.2rem; }
.prose ul li { position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem; color: var(--ink-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500);
}
.prose a { color: var(--blue-700); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold-400); }

.lead-xl { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); line-height: 1.7; }

/* Page hero (interior pages) */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(50% 70% at 90% 0%, rgba(240,199,94,0.16), transparent 60%),
    radial-gradient(50% 60% at 5% 20%, rgba(42,63,214,0.10), transparent 60%),
    var(--grad-soft);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
.page-hero p { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 62ch; margin-inline: auto; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--blue-700); font-weight: 600; }
.breadcrumb span { color: var(--line); }

/* Contact form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.45rem; color: var(--blue-900); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(42, 63, 214, 0.15);
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-item__ico {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 13px;
  background: var(--grad-blue); color: #fff;
}
.contact-info-item__ico svg { width: 24px; height: 24px; }
.contact-info-item h4 { font-family: var(--font-display); margin-bottom: 0.2rem; color: var(--blue-900); }
.contact-info-item a, .contact-info-item p { color: var(--muted); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--blue-700); }

/* Requirements table */
.spec-table { width: 100%; border-collapse: collapse; background:#fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.spec-table th, .spec-table td { text-align: left; padding: 0.95rem 1.2rem; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.spec-table th { background: var(--blue-50); font-family: var(--font-display); color: var(--blue-900); width: 40%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* Keyword tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tag-cloud span {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.tag-cloud span:hover { border-color: var(--gold-400); color: var(--blue-700); background: var(--gold-100); }

/* ---------------------------------------------------------- 15 Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes underline-grow { to { transform: scaleX(1); } }

/* ---------------------------------------------------------- 16 Responsive */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .device-badge--tl { left: 2%; }
  .device-badge--br { right: 2%; }
  .split, .og-banner { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.4rem;
  }
  .primary-nav.is-open ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .primary-nav.is-open a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .primary-nav.is-open a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn--gold,
  .header-cta .btn--tg { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: grid; }
  body { padding-bottom: 62px; }
  .fab { bottom: 76px; }
}

@media (max-width: 560px) {
  :root { --gutter: 1.1rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; gap: 1.2rem; margin-top: -1.5rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .btn-row .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; text-align: center; align-items: stretch; }
  .device-badge { padding: 0.5rem 0.7rem; }
  .device-badge span { display: none; }
  .shot { width: 200px; }
}

/* ------------------------------------------------------ 17 Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .u-underline::after { transform: scaleX(1); }
  .shots__track { transition: none; }
}
