/* ==========================================================================
   Comegame — main.css
   Global reset, layout primitives, header, footer and shared components.
   Theme: "Electric Royal" — deep navy + electric blue + royal purple.
   ========================================================================== */

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

/* Hard guarantee: the page never scrolls sideways. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  min-height: 100vh;
}

/* Ambient page backdrop: a very soft dual glow anchored top-centre. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(123, 47, 247, 0.16), transparent 62%),
    radial-gradient(760px 480px at 12% 2%, rgba(46, 107, 255, 0.14), transparent 60%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

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

p {
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
}

a {
  color: var(--color-electric-blue-bright);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

a:hover {
  color: var(--color-royal-purple-bright);
}

ul, ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.35rem;
}

li {
  margin-bottom: var(--space-2);
}

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

hr {
  border: 0;
  height: 1px;
  background: var(--gradient-line);
  margin: var(--space-7) 0;
}

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

code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  background: var(--color-surface-2);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-xs);
  color: var(--color-text-primary);
}

::selection {
  background: rgba(123, 47, 247, 0.45);
  color: #fff;
}

/* --------------------------------------------------------------------------
   2. ACCESSIBILITY HELPERS
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: var(--z-toast);
  padding: 0.85rem 1.4rem;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--dur-base) var(--ease-out);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-electric-blue-bright);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

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

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

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

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

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(18, 18, 31, 0.85) 12%, rgba(18, 18, 31, 0.85) 88%, transparent);
}

.section--divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

/* --------------------------------------------------------------------------
   4. SECTION HEADINGS
   -------------------------------------------------------------------------- */

.section-head {
  max-width: 780px;
  margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.5rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-4);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(46, 107, 255, 0.10);
  border: 1px solid rgba(77, 140, 255, 0.28);
  color: var(--color-electric-blue-bright);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 10px rgba(77, 140, 255, 0.9);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.text-gradient {
  background: var(--gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-soft {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.muted { color: var(--color-text-muted); }
.small { font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  --btn-py: 0.9rem;
  --btn-px: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: var(--btn-py) var(--btn-px);
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}

.btn svg {
  flex: 0 0 auto;
}

/* Primary — gradient fill + shimmer sweep on hover */
.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 22px rgba(46, 107, 255, 0.32);
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.42) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 600ms var(--ease-out);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(46, 107, 255, 0.42), var(--shadow-glow-purple);
}

.btn--primary:hover::after,
.btn--primary:focus-visible::after {
  transform: translateX(120%);
}

/* Ghost — glass with gradient stroke */
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: #fff;
  border-color: rgba(77, 140, 255, 0.6);
  background: rgba(46, 107, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 107, 255, 0.22);
}

/* Telegram — brand-flavoured action */
.btn--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(42, 171, 238, 0.30);
}

.btn--telegram:hover,
.btn--telegram:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 171, 238, 0.45), 0 0 30px rgba(42, 171, 238, 0.25);
}

.btn--telegram-outline {
  background: rgba(42, 171, 238, 0.10);
  color: #8ED6FA;
  border: 1px solid rgba(42, 171, 238, 0.45);
}

.btn--telegram-outline:hover,
.btn--telegram-outline:focus-visible {
  background: rgba(42, 171, 238, 0.20);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42, 171, 238, 0.28);
}

/* Icon-only circular action (header Telegram shortcut) */
.btn--icon {
  --btn-py: 0;
  --btn-px: 0;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
}

.btn--icon svg { width: 19px; height: 19px; }

.btn--lg {
  --btn-py: 1.075rem;
  --btn-px: 2.15rem;
  font-size: var(--fs-base);
}

.btn--sm {
  --btn-py: 0.6rem;
  --btn-px: 1.1rem;
  font-size: var(--fs-xs);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

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

/* Soft pulsing halo behind the most important CTA */
.btn-pulse {
  position: relative;
}

.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  filter: blur(16px);
  opacity: 0.45;
  z-index: -2;
  animation: haloPulse 3.2s var(--ease-in-out) infinite;
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.30; transform: scale(0.98); }
  50%      { opacity: 0.60; transform: scale(1.04); }
}

/* --------------------------------------------------------------------------
   6. GLASS CARD BASE
   -------------------------------------------------------------------------- */

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-inset-top);
}

.glass-hover {
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.glass-hover:hover,
.glass-hover:focus-within {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(77, 140, 255, 0.42);
  box-shadow: var(--shadow-card-lg), 0 0 34px rgba(90, 80, 251, 0.28);
}

/* Gradient-stroke frame (padding-box / border-box double background) */
.gradient-frame {
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(var(--color-bg-secondary), var(--color-bg-secondary)) padding-box,
    var(--gradient-primary) border-box;
}

.gradient-frame--soft {
  background:
    linear-gradient(160deg, rgba(30, 30, 54, 0.9), rgba(12, 12, 24, 0.95)) padding-box,
    linear-gradient(135deg, rgba(46, 107, 255, 0.7), rgba(123, 47, 247, 0.7)) border-box;
}

/* --------------------------------------------------------------------------
   7. FLOATING ORBS (atmosphere — hero & CTA bands only)
   -------------------------------------------------------------------------- */

.orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--z-orbs);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}

.orb--1 { width: 320px; height: 320px; top: -60px;  left: -80px;  background: rgba(46, 107, 255, 0.55); animation: drift1 20s var(--ease-in-out) infinite alternate; }
.orb--2 { width: 380px; height: 380px; top: 30%;    right: -120px; background: rgba(123, 47, 247, 0.50); animation: drift2 17s var(--ease-in-out) infinite alternate; }
.orb--3 { width: 220px; height: 220px; bottom: -70px; left: 28%;  background: rgba(77, 140, 255, 0.40); animation: drift3 14s var(--ease-in-out) infinite alternate; }
.orb--4 { width: 180px; height: 180px; top: 12%;    left: 46%;    background: rgba(157, 92, 255, 0.32); animation: drift1 23s var(--ease-in-out) infinite alternate-reverse; }

@keyframes drift1 { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(40px, 50px, 0) scale(1.14); } }
@keyframes drift2 { from { transform: translate3d(0, 0, 0) scale(1.06); } to { transform: translate3d(-50px, 40px, 0) scale(0.94); } }
@keyframes drift3 { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(56px, -34px, 0); } }

/* Animated gradient mesh — the signature hero backdrop */
.mesh-bg {
  position: absolute;
  inset: -20% -10%;
  z-index: var(--z-orbs);
  pointer-events: none;
  background:
    radial-gradient(38% 44% at 22% 32%, rgba(46, 107, 255, 0.34) 0%, transparent 68%),
    radial-gradient(34% 40% at 78% 26%, rgba(123, 47, 247, 0.32) 0%, transparent 66%),
    radial-gradient(46% 42% at 52% 82%, rgba(77, 140, 255, 0.22) 0%, transparent 70%);
  background-size: 160% 160%;
  animation: meshDrift 18s var(--ease-in-out) infinite alternate;
}

@keyframes meshDrift {
  0%   { background-position: 0% 40%; }
  50%  { background-position: 60% 60%; }
  100% { background-position: 100% 30%; }
}

/* Fine grid overlay for depth */
.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: var(--z-orbs);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 62% at 50% 32%, #000 20%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 62% at 50% 32%, #000 20%, transparent 76%);
}

/* --------------------------------------------------------------------------
   8. PROMO TICKER (top of page)
   -------------------------------------------------------------------------- */

.ticker {
  position: relative;
  z-index: calc(var(--z-header) + 1);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(46, 107, 255, 0.20), rgba(123, 47, 247, 0.20));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 34s linear infinite;
  padding-left: 1rem;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.ticker__item span[aria-hidden] {
  color: var(--color-electric-blue-bright);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10, 10, 20, 0.62);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 20, 0.90);
  border-bottom-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

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

/* ---- Brand / logo lockup ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  color: var(--color-text-primary);
}

.brand:hover { color: var(--color-text-primary); }

.brand__mark {
  position: relative;
  width: var(--mark-size, 46px);
  height: var(--mark-size, 46px);
  flex: 0 0 var(--mark-size, 46px);
  border-radius: 14px;
  overflow: hidden;
  background: #05050C;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 20px rgba(46, 107, 255, 0.30), var(--shadow-inset-top);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
}

/* Soft aura so the dark app-icon reads clearly against the dark header. */
.brand__mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  border-radius: 50%;
  background: var(--gradient-radial-glow);
  opacity: 0.75;
  pointer-events: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The supplied artwork carries ~10% padding around its own rounded square.
     A light crop fills the frame without clipping the wordmark. */
  transform: scale(1.06);
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 10px 30px rgba(46, 107, 255, 0.50), 0 0 26px rgba(123, 47, 247, 0.38);
}

.brand--lg { --mark-size: 62px; gap: 0.9rem; }
.brand--lg .brand__mark { border-radius: 18px; }
.brand--lg .brand__name { font-size: 1.5rem; }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-white);
  white-space: nowrap;
}

.brand__name em {
  font-style: normal;
  background: var(--gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__tag {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 42%;
}

.nav__link.is-active {
  color: var(--color-white);
  background: rgba(46, 107, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(77, 140, 255, 0.30);
}

.nav__link.is-active::after { width: 42%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.header__cta { display: none; }

/* ---- Hamburger ---- */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.nav-toggle:hover { background: rgba(46, 107, 255, 0.16); border-color: rgba(77, 140, 255, 0.4); }

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--color-text-primary);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

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

/* ---- Mobile drawer ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  grid-template-rows: 1fr;
  background: rgba(6, 6, 14, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  padding: calc(var(--space-6) + 8px) var(--space-5) var(--space-6);
  overflow-y: auto;
  background: linear-gradient(170deg, #14142A 0%, #0A0A14 60%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 380ms var(--ease-out);
}

.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav__close:hover { background: rgba(255, 92, 122, 0.16); border-color: rgba(255, 92, 122, 0.4); }

.mobile-nav__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: var(--space-6) 0 var(--space-3);
}

.mobile-nav__list {
  list-style: none;
  margin: var(--space-7) 0 0;
  padding: 0;
}

.mobile-nav__list li { margin: 0; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.mobile-nav__link::after {
  content: "→";
  color: var(--color-text-muted);
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible { color: var(--color-electric-blue-bright); }

.mobile-nav__link:hover::after { transform: translateX(5px); color: var(--color-electric-blue-bright); }

.mobile-nav__link.is-active { color: var(--color-electric-blue-bright); }

.mobile-nav__actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

body.no-scroll { overflow: hidden; }

/* --------------------------------------------------------------------------
   10. PAGE HERO (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(2.5rem, 1.8rem + 3vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero__inner {
  position: relative;
  z-index: var(--z-content);
  max-width: 900px;
}

.page-hero--center .page-hero__inner {
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-4);
}

.page-hero__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.breadcrumb li { margin: 0; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-secondary); }
.breadcrumb a:hover { color: var(--color-electric-blue-bright); }

.page-hero--center .breadcrumb { justify-content: center; }

/* --------------------------------------------------------------------------
   11. SHARED CONTENT COMPONENTS
   -------------------------------------------------------------------------- */

/* --- Feature / info card --- */
.info-card {
  padding: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-inset-top);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.info-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(77, 140, 255, 0.40);
  box-shadow: var(--shadow-card-lg), 0 0 34px rgba(90, 80, 251, 0.26);
}

.info-card h3,
.info-card h4 { margin-bottom: var(--space-3); }

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

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-4);
  border-radius: 16px;
  background: var(--gradient-primary-soft);
  border: 1px solid rgba(77, 140, 255, 0.28);
  color: var(--color-electric-blue-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.icon-badge svg { width: 24px; height: 24px; }

.icon-badge--purple {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.22), rgba(157, 92, 255, 0.12));
  border-color: rgba(157, 92, 255, 0.32);
  color: var(--color-royal-purple-bright);
}

.icon-badge--success {
  background: linear-gradient(135deg, rgba(0, 230, 160, 0.18), rgba(0, 230, 160, 0.06));
  border-color: rgba(0, 230, 160, 0.30);
  color: var(--color-success);
}

/* --- Stat tiles --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.stat {
  padding: var(--space-5) var(--space-4);
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inset-top);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(90, 80, 251, 0.24);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  background: var(--gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

/* --- Trust chips --- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.chip svg { width: 14px; height: 14px; color: var(--color-success); }

/* --- Phone mockup (hero + download) --- */
.phone-mockup {
  position: relative;
  width: min(300px, 78vw);
  margin-inline: auto;
  aspect-ratio: 300 / 610;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(155deg, #35375C 0%, #14142A 42%, #0B0B18 100%);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 0 60px rgba(46, 107, 255, 0.28);
  animation: phoneBob 6s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.phone-mockup::before {
  /* glow bloom behind the device */
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: var(--gradient-radial-glow);
  filter: blur(24px);
  animation: bloomPulse 7s var(--ease-in-out) infinite alternate;
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #05050C;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-mockup__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: #05050C;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.phone-mockup__notch::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2E6BFF, #10102A);
}

.phone-mockup__glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 32px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.16) 0%, transparent 34%, transparent 62%, rgba(123, 47, 247, 0.14) 100%);
}

.phone-mockup__side {
  position: absolute;
  right: -3px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #4A4C78, #1A1B32);
}

.phone-mockup__side--power { top: 132px; height: 62px; }
.phone-mockup__side--vol { top: 96px; height: 30px; left: -3px; right: auto; border-radius: 3px 0 0 3px; }

@keyframes phoneBob {
  from { transform: translateY(-10px) rotate(-1.2deg); }
  to   { transform: translateY(12px) rotate(1.2deg); }
}

@keyframes bloomPulse {
  from { opacity: 0.55; transform: scale(0.94); }
  to   { opacity: 0.95; transform: scale(1.08); }
}

/* Floating glass badges pinned around the mockup */
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(16, 16, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.float-card__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: #fff;
  flex: 0 0 34px;
}

.float-card__icon svg { width: 17px; height: 17px; }

.float-card__icon--green { background: linear-gradient(135deg, #00E6A0, #00A97A); }
.float-card__icon--gold { background: linear-gradient(135deg, #FFD166, #FF9F1C); color: #241700; }

.float-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.float-card__label {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.float-card--a { top: 12%; left: -6%; animation: floatA 5.5s var(--ease-in-out) infinite alternate; }
.float-card--b { bottom: 20%; right: -8%; animation: floatB 6.5s var(--ease-in-out) infinite alternate; }
.float-card--c { bottom: 4%; left: -4%; animation: floatA 7.5s var(--ease-in-out) infinite alternate-reverse; }

@keyframes floatA { from { transform: translateY(0); } to { transform: translateY(-16px); } }
@keyframes floatB { from { transform: translateY(0); } to { transform: translateY(18px); } }

/* --- FAQ accordion --- */
.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq {
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: var(--glass-border);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.faq.is-open {
  border-color: rgba(77, 140, 255, 0.42);
  box-shadow: 0 0 28px rgba(46, 107, 255, 0.18);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: 1.15rem 1.3rem;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.faq__q:hover { background: rgba(255, 255, 255, 0.03); color: var(--color-electric-blue-bright); }

.faq__icon {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(46, 107, 255, 0.16);
  border: 1px solid rgba(77, 140, 255, 0.3);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-electric-blue-bright);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}

.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms var(--ease-out);
}

.faq.is-open .faq__a { grid-template-rows: 1fr; }

.faq__a > div { overflow: hidden; }

.faq__a p,
.faq__a ul {
  margin: 0 1.3rem 1.25rem;
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.faq__a ul { padding-left: 2.4rem; }
.faq__a p + p { margin-top: -0.4rem; padding-top: 0.75rem; }

/* --- Notice / callout blocks --- */
.callout {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(30, 30, 54, 0.55);
  border-left: 3px solid var(--color-electric-blue);
}

.callout--warn {
  background: rgba(255, 201, 77, 0.07);
  border-left-color: var(--color-warning);
}

.callout--danger {
  background: rgba(255, 92, 122, 0.07);
  border-left-color: var(--color-error);
}

.callout--success {
  background: rgba(0, 230, 160, 0.07);
  border-left-color: var(--color-success);
}

.callout h3,
.callout h4 { margin-bottom: var(--space-2); }
.callout p:last-child { margin-bottom: 0; }

/* --- Data table --- */
.data-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(23, 23, 40, 0.5);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  min-width: 460px;
  font-size: var(--fs-sm);
}

.data-table th,
.data-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table th {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.data-table td { color: var(--color-text-secondary); }
.data-table td:first-child { color: var(--color-text-primary); font-weight: 500; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tbody tr { transition: background var(--dur-fast) var(--ease-out); }
.data-table tbody tr:hover { background: rgba(46, 107, 255, 0.06); }

/* --- Checklist --- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  line-height: var(--lh-base);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 230, 160, 0.14);
  border: 1px solid rgba(0, 230, 160, 0.45);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.82em;
  width: 5px;
  height: 9px;
  border: solid var(--color-success);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-list--blue li::before { background: rgba(46, 107, 255, 0.14); border-color: rgba(77, 140, 255, 0.5); }
.check-list--blue li::after { border-color: var(--color-electric-blue-bright); }

/* --- CTA band --- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
}

.cta-band__inner {
  position: relative;
  z-index: var(--z-content);
  padding: clamp(2rem, 1.4rem + 3vw, 3.75rem);
  border-radius: var(--radius-2xl);
  text-align: center;
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, rgba(24, 24, 46, 0.94), rgba(11, 11, 22, 0.96)) padding-box,
    linear-gradient(135deg, rgba(46, 107, 255, 0.75), rgba(123, 47, 247, 0.75)) border-box;
  box-shadow: var(--shadow-card-lg), 0 0 60px rgba(90, 80, 251, 0.20);
}

.cta-band__inner h2 { margin-bottom: var(--space-4); }

.cta-band__inner p {
  max-width: 640px;
  margin-inline: auto;
  font-size: var(--fs-md);
}

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

/* --- Back to top --- */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--z-overlay);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(16, 16, 32, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text-primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base), box-shadow var(--dur-base) var(--ease-out);
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { box-shadow: var(--shadow-glow-blue); border-color: rgba(77, 140, 255, 0.5); }
.to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   12. RESPONSIBLE GAMING BLOCK
   -------------------------------------------------------------------------- */

.responsible {
  position: relative;
  padding: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(255, 92, 122, 0.07), rgba(23, 23, 40, 0.6) 45%);
  border: 1px solid rgba(255, 92, 122, 0.22);
}

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

.responsible__helpline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 92, 122, 0.12);
  border: 1px solid rgba(255, 92, 122, 0.35);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: #FFB3C1;
}

.responsible__helpline a { color: #fff; }

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  margin-top: var(--space-8);
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
  background: linear-gradient(180deg, rgba(10, 10, 20, 0) 0%, #08080F 22%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-line);
}

.footer__grid {
  display: grid;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
}

.footer__brand-col p {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.footer__brand-col .brand { margin-bottom: var(--space-4); }

.footer__heading {
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer__links li { margin: 0; }

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.footer__links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-electric-blue-bright);
  transition: width var(--dur-base) var(--ease-out);
}

.footer__links a:hover { color: var(--color-electric-blue-bright); }
.footer__links a:hover::before { width: 12px; }

/* Telegram cards in footer */
.tg-cards {
  display: grid;
  gap: var(--space-3);
}

.tg-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(42, 171, 238, 0.07);
  border: 1px solid rgba(42, 171, 238, 0.24);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.tg-card:hover {
  transform: translateY(-3px);
  background: rgba(42, 171, 238, 0.14);
  border-color: rgba(42, 171, 238, 0.55);
  box-shadow: 0 10px 28px rgba(42, 171, 238, 0.22);
}

.tg-card__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
}

.tg-card__icon svg { width: 20px; height: 20px; }

.tg-card__text { display: flex; flex-direction: column; line-height: 1.35; }

.tg-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

/* Compliance strip */
.footer__compliance {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer__disclaimer strong { color: var(--color-text-primary); }

.restricted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 92, 122, 0.07);
  border: 1px solid rgba(255, 92, 122, 0.22);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.restricted strong { color: #FFB3C1; }

.age-pill {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(255, 92, 122, 0.14);
  border: 1.5px solid rgba(255, 92, 122, 0.5);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  color: #FF8FA6;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer__bottom p { margin: 0; }

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal-links li { margin: 0; }
.footer__legal-links a { color: var(--color-text-muted); font-size: var(--fs-xs); }
.footer__legal-links a:hover { color: var(--color-electric-blue-bright); }

/* --------------------------------------------------------------------------
   14. COOKIE CONSENT
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: var(--z-overlay);
  /* % (not vw) so a desktop scrollbar can never push the banner off-screen */
  width: min(880px, calc(100% - 32px));
  transform: translate(-50%, 140%);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(14, 14, 28, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  transition: transform 460ms var(--ease-out), opacity 460ms var(--ease-out);
  opacity: 0;
  visibility: hidden;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}

.cookie-banner__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2) !important;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* --------------------------------------------------------------------------
   15. SCROLL REVEAL
   -------------------------------------------------------------------------- */

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

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

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }

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

/* --------------------------------------------------------------------------
   16. GAME CARD (shared: home + games page)
   -------------------------------------------------------------------------- */

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
}

.game-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  color: var(--color-text-primary);
}

.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(77, 140, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(90, 80, 251, 0.35);
  color: var(--color-text-primary);
}

.game-card__media {
  display: block;
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: linear-gradient(160deg, #1B1B33, #101020);
}

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

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

.game-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10, 10, 20, 0.15), rgba(10, 10, 20, 0.85));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

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

.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(46, 107, 255, 0.5);
  transform: translateY(10px);
  transition: transform var(--dur-base) var(--ease-spring);
}

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

.game-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.game-card__tag--hot {
  background: linear-gradient(135deg, #FF5C7A, #FF9F1C);
  border-color: transparent;
  color: #fff;
}

.game-card__body {
  display: block;
  padding: 0.7rem 0.75rem 0.85rem;
}

.game-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   17. TELEGRAM JOIN BAR (sits directly beneath primary CTA rows)
   -------------------------------------------------------------------------- */

.tg-join {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: var(--space-5);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(42, 171, 238, 0.12), rgba(34, 158, 217, 0.04));
  border: 1px solid rgba(42, 171, 238, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tg-join__icon {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42, 171, 238, 0.42);
}

.tg-join__icon svg { width: 23px; height: 23px; }

/* Live "signal" ring so the community invite reads as active */
.tg-join__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(42, 171, 238, 0.65);
  animation: tgRing 2.6s var(--ease-out) infinite;
}

@keyframes tgRing {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.tg-join__text { flex: 1 1 190px; line-height: 1.4; }

.tg-join__title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text-primary);
}

.tg-join__meta {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   18. STEP FLOW (how it works — shared home + download)
   -------------------------------------------------------------------------- */

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

.step {
  position: relative;
  padding: var(--space-6) var(--space-5) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-card), var(--shadow-inset-top);
  counter-increment: step;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 140, 255, 0.42);
  box-shadow: var(--shadow-card-lg), 0 0 32px rgba(90, 80, 251, 0.24);
}

.step__num {
  position: absolute;
  top: -20px;
  left: var(--space-5);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-primary);
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 22px rgba(46, 107, 255, 0.42);
}

.step__num::before { content: counter(step, decimal-leading-zero); }

.step h3 { margin-bottom: var(--space-3); font-size: var(--fs-xl); }
.step p:last-child { margin-bottom: 0; }

.step__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-electric-blue-bright);
}

/* --------------------------------------------------------------------------
   19. SCREENSHOT SLIDER (device carousel)
   -------------------------------------------------------------------------- */

.shots {
  position: relative;
}

.shots__viewport {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-5) var(--space-6);
  /* fade the rails so slides dissolve instead of getting chopped */
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.shots__track {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 0.5rem + 1.6vw, 1.75rem);
  padding-inline: 4px;
  transition: transform 620ms var(--ease-out);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}

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

.shot {
  position: relative;
  flex: 0 0 auto;
  width: var(--shot-w, 210px);
  border-radius: 26px;
  padding: 8px;
  background: linear-gradient(155deg, #35375C 0%, #14142A 45%, #0B0B18 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0.42;
  transform: scale(0.86);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out),
              box-shadow 520ms var(--ease-out);
}

.shot__frame {
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  background: #05050C;
  aspect-ratio: 1280 / 2685;
}

.shot__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 58px;
  height: 13px;
  border-radius: var(--radius-pill);
  background: #05050C;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.shot__caption {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--color-text-secondary);
  opacity: 0;
  transition: opacity 420ms var(--ease-out);
}

.shot.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.66),
              0 0 0 1px rgba(255, 255, 255, 0.14),
              0 0 60px rgba(46, 107, 255, 0.34);
}

.shot.is-active .shot__caption { opacity: 1; }

.shot.is-near { opacity: 0.7; transform: scale(0.93); }

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

.shots__arrow {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.shots__arrow:hover {
  background: rgba(46, 107, 255, 0.18);
  border-color: rgba(77, 140, 255, 0.55);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-2px);
}

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

.shots__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shots__dots li { margin: 0; }

.shots__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.shots__dot.is-active {
  width: 28px;
  background: var(--gradient-primary);
}

/* --------------------------------------------------------------------------
   20. TESTIMONIALS
   -------------------------------------------------------------------------- */

.quote-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-card), var(--shadow-inset-top);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.quote-card:hover { transform: translateY(-4px); border-color: rgba(77, 140, 255, 0.38); }

.quote-card__stars { display: flex; gap: 2px; color: var(--color-gold); }
.quote-card__stars svg { width: 16px; height: 16px; }

.quote-card p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
}

.quote-card__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-card__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
}

.quote-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.quote-card__loc { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   21. CONTENT PROSE (long-form editorial blocks)
   -------------------------------------------------------------------------- */

.prose h2 { margin-top: var(--space-8); }
.prose h3 { margin-top: var(--space-7); }
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose p,
.prose li { font-size: var(--fs-md); line-height: var(--lh-loose); }
.prose ul, .prose ol { margin-bottom: var(--space-5); }

.prose-card {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-card), var(--shadow-inset-top);
}

.prose-card > :last-child { margin-bottom: 0; }

/* Two-column editorial split */
.split {
  display: grid;
  gap: clamp(2rem, 1.4rem + 3vw, 4rem);
  align-items: center;
}

.split__media { position: relative; }

.split__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card-lg);
}

/* Highlight number row inside editorial copy */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: 0;
  list-style: none;
}

.mini-stats li {
  margin: 0;
  padding-left: var(--space-4);
  border-left: 2px solid rgba(77, 140, 255, 0.5);
}

.mini-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

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

/* Spec / "at a glance" definition list */
.version-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(23, 23, 40, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-inset-top);
}

.version-card div { min-width: 0; }

.version-card dt {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.version-card dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text-primary);
  overflow-wrap: anywhere;
}

.version-card dd .ok { color: var(--color-success); }

/* Keyword / topic cloud used at the foot of content sections */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-cloud li { margin: 0; }

.tag-cloud span,
.tag-cloud a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.tag-cloud a:hover { color: var(--color-electric-blue-bright); border-color: rgba(77, 140, 255, 0.45); }

/* --------------------------------------------------------------------------
   22. UTILITIES
   -------------------------------------------------------------------------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.full-bleed-guard { overflow: hidden; }

/* --------------------------------------------------------------------------
   23. BREAKPOINT: 768px+
   -------------------------------------------------------------------------- */

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

  .game-grid { grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); }

  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6); }

  .shot { --shot-w: 236px; }

  .split--media-first .split__media { order: -1; }

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

  .tg-join { padding: 1rem 1.25rem; }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
  }

  .cookie-banner__actions { flex-wrap: nowrap; }

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

  .responsible__grid { grid-template-columns: 1.35fr 1fr; align-items: center; }

  .to-top { right: 26px; bottom: 26px; width: 50px; height: 50px; }
}

/* --------------------------------------------------------------------------
   24. BREAKPOINT: 1024px+
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.25fr 1fr; }
  .split--wide-media { grid-template-columns: 1fr 1.25fr; }
}

/* --------------------------------------------------------------------------
   25. BREAKPOINT: 1200px+  (desktop nav appears)
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .header__cta { display: inline-flex; }

  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: var(--space-6);
  }

  .footer__bottom { padding: var(--space-5) 0 var(--space-6); }

  .game-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

  .shot { --shot-w: 264px; }
}

/* --------------------------------------------------------------------------
   26. REDUCED MOTION — hard requirement
   -------------------------------------------------------------------------- */

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

  .mesh-bg,
  .orb,
  .phone-mockup,
  .float-card,
  .ticker__track,
  .btn-pulse::before,
  .phone-mockup::before,
  .tg-join__icon::after,
  .hero-visual__ring,
  .hero-visual__reel,
  .og-banner__shine,
  .bonus-strip::after,
  .marquee__track {
    animation: none !important;
  }

  /* Slider still works — it just jumps instead of gliding. */
  .shots__track { transition: none !important; }
  .shot { opacity: 1 !important; transform: none !important; }

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

  .game-card:hover,
  .info-card:hover,
  .glass-hover:hover,
  .btn:hover {
    transform: none !important;
  }
}
