/* ==========================================================================
   Six Game — sixapk.pk
   main.css — global reset, layout, components
   Theme: "Obsidian Royale"
   BEM-lite naming: .block__element--modifier
   ========================================================================== */

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--color-obsidian-900);
  background-image:
    radial-gradient(90% 60% at 12% -8%, rgba(212, 175, 55, 0.07) 0%, rgba(5, 6, 10, 0) 60%),
    radial-gradient(80% 55% at 92% 4%, rgba(212, 175, 55, 0.05) 0%, rgba(5, 6, 10, 0) 58%);
  background-attachment: fixed;
  color: var(--color-ivory-200);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a {
  color: var(--color-gold-300);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out-soft);
}

a:hover {
  color: var(--color-gold-100);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-ivory-100);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 var(--space-5);
}

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

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

::selection {
  background: rgba(212, 175, 55, 0.32);
  color: var(--color-ivory-100);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-obsidian-950);
}

::-webkit-scrollbar-thumb {
  background: var(--color-obsidian-600);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-700);
}

/* --------------------------------------------------------------------------
   2. UTILITIES & 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 {
  position: relative;
  padding-block: var(--space-20);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-24);
  }
}

@media (min-width: 1200px) {
  .section {
    padding-block: var(--space-32);
  }
}

.section--tight {
  padding-block: var(--space-16);
}

.section--alt {
  background: linear-gradient(180deg, var(--color-obsidian-950) 0%, var(--color-obsidian-850) 50%, var(--color-obsidian-950) 100%);
}

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

.section__divider {
  height: 1px;
  background: var(--gradient-hairline);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: calc(var(--z-toast) + 1);
  padding: var(--space-3) var(--space-6);
  background: var(--color-gold-500);
  color: var(--color-obsidian-950);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--dur-fast) var(--ease-out-soft);
}

.skip-link:focus {
  top: var(--space-4);
  color: var(--color-obsidian-950);
}

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

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

.text-muted {
  color: var(--color-ivory-400);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY BLOCKS
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold-500);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), var(--color-gold-500));
  flex: none;
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--color-gold-500), rgba(212, 175, 55, 0));
}

.eyebrow--start::before {
  display: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: var(--space-12);
}

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

.section-head__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .section-head__title {
    font-size: var(--fs-4xl);
  }
}

.section-head__lead {
  font-size: var(--fs-md);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

.prose {
  max-width: 78ch;
}

.prose h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-obsidian-600);
}

.prose h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--color-gold-300);
}

.prose h4 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

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

.prose p,
.prose li {
  color: var(--color-ivory-200);
  line-height: var(--lh-loose);
}

.prose ul,
.prose ol {
  margin: 0 0 var(--space-6);
  padding-left: var(--space-6);
}

.prose ul {
  list-style: none;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.prose ol li {
  margin-bottom: var(--space-3);
}

.prose ol li::marker {
  color: var(--color-gold-500);
  font-weight: 700;
}

.prose strong {
  color: var(--color-ivory-100);
  font-weight: 600;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 175, 55, 0.4);
}

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

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

.btn {
  --btn-py: 14px;
  --btn-px: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft),
              color var(--dur-base) var(--ease-out-soft),
              background-color var(--dur-base) var(--ease-out-soft);
}

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

.btn:active {
  transform: translateY(0);
}

.btn__icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: none;
}

/* Works whether .btn__icon is the <svg> itself or a wrapper around it. */
.btn__icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Gold shimmer sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 65%);
  transform: translateX(-120%);
  transition: transform 0s;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
  transition: transform 780ms var(--ease-in-out-soft);
}

/* Primary — solid gold foil */
.btn--primary {
  background: var(--gradient-gold-foil);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--color-obsidian-950);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.28), var(--shadow-inset-foil);
  animation: gold-shimmer 6s var(--ease-in-out-soft) infinite;
}

.btn--primary:hover {
  color: var(--color-obsidian-950);
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.42), var(--shadow-inset-foil);
}

/* Ghost — gold outline on obsidian */
.btn--ghost {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.42);
  color: var(--color-gold-300);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: var(--color-gold-500);
  color: var(--color-gold-100);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: var(--shadow-gold-glow);
}

/* Telegram */
.btn--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(41, 169, 235, 0.3);
}

.btn--telegram:hover {
  color: #fff;
  box-shadow: 0 12px 34px rgba(41, 169, 235, 0.45);
}

.btn--telegram-outline {
  background: rgba(41, 169, 235, 0.08);
  border-color: rgba(41, 169, 235, 0.5);
  color: #7FD0F7;
}

.btn--telegram-outline:hover {
  color: #fff;
  border-color: #29A9EB;
  background: rgba(41, 169, 235, 0.2);
  box-shadow: 0 0 22px rgba(41, 169, 235, 0.32);
}

.btn--lg {
  --btn-py: 18px;
  --btn-px: 40px;
  font-size: var(--fs-base);
}

.btn--sm {
  --btn-py: 10px;
  --btn-px: 20px;
  font-size: var(--fs-xs);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

/* --------------------------------------------------------------------------
   5. HEXAGON FOIL FRAME — signature component
   -------------------------------------------------------------------------- */

.hex {
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  padding: 2px;
  background: var(--gradient-gold-foil);
  background-size: 250% 250%;
  clip-path: var(--hex-clip);
  transition: filter var(--dur-base) var(--ease-out-soft),
              transform var(--dur-base) var(--ease-out-soft);
}

.hex__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-obsidian-800);
  clip-path: var(--hex-clip);
}

.hex__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex--sm {
  max-width: 96px;
}

/* Small hexagon icon badge (steps, features) */
.hex-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 76px;
  flex: none;
  padding: 2px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform var(--dur-base) var(--ease-out-soft),
              filter var(--dur-base) var(--ease-out-soft);
}

.hex-badge__inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--color-obsidian-700), var(--color-obsidian-900));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--color-gold-300);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
}

.hex-badge__inner svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold-300);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hex-badge--lg {
  width: 88px;
  height: 98px;
}

.hex-badge--lg .hex-badge__inner {
  font-size: var(--fs-2xl);
}

/* --------------------------------------------------------------------------
   6. GENERIC CARD / PANEL
   -------------------------------------------------------------------------- */

.panel {
  position: relative;
  padding: var(--space-8);
  background: var(--gradient-obsidian-glass);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: var(--gradient-hairline);
}

.panel--gold {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-card), inset 0 0 60px rgba(212, 175, 55, 0.05);
}

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

.panel--hover:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-card-lg), 0 0 40px rgba(212, 175, 55, 0.12);
}

@media (min-width: 768px) {
  .panel {
    padding: var(--space-10);
  }
}

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 1fr);
}

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

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

/* Grid and flex children default to min-width:auto, which lets wide content
   (scrollable tables, long unbroken strings) push a track past the viewport.
   Opting every layout child down to 0 keeps the page inside its gutters. */
.grid > *,
.split > *,
.steps > *,
.stats__grid > *,
.tg-cta > *,
.hero__inner > *,
.legal > *,
.responsible__grid > *,
.footer__top > *,
.vault__breakdown > *,
.game-grid > * {
  min-width: 0;
}

/* --------------------------------------------------------------------------
   7. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(8, 9, 14, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(38, 42, 56, 0.9);
  transition: background var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}

.site-header.is-stuck {
  background: rgba(5, 6, 10, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--nav-height);
}

/* --- Brand lockup (logo) --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 50px;
  flex: none;
  padding: 1.5px;
  background: var(--gradient-gold-foil);
  background-size: 200% 200%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: filter var(--dur-base) var(--ease-out-soft);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.brand:hover .brand__mark {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
}

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

.brand__name {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-gold-500);
}

.brand__tld {
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-ivory-500);
}

@media (min-width: 768px) {
  .brand__mark {
    width: 50px;
    height: 57px;
  }
  .brand__name {
    font-size: 1.625rem;
  }
  .brand__tld {
    font-size: 0.65rem;
  }
}

.brand--footer .brand__mark {
  width: 54px;
  height: 62px;
}

.brand--footer .brand__name {
  font-size: 1.75rem;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav__link {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-ivory-200);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out-soft);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--color-gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-soft);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--color-gold-300);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.header__tg {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  background: rgba(41, 169, 235, 0.1);
  border: 1px solid rgba(41, 169, 235, 0.4);
  transition: background var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft),
              transform var(--dur-fast) var(--ease-out-soft);
}

.header__tg svg {
  width: 20px;
  height: 20px;
}

.header__tg:hover {
  background: rgba(41, 169, 235, 0.25);
  box-shadow: 0 0 18px rgba(41, 169, 235, 0.4);
  transform: translateY(-2px);
}

.header__cta {
  display: none;
}

@media (min-width: 1000px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .header__tg { display: grid; }
}

/* --- Hamburger --- */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-sm);
  background: rgba(27, 30, 41, 0.6);
  transition: border-color var(--dur-fast) var(--ease-out-soft);
}

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

.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--color-gold-300);
  border-radius: 2px;
  transition: background var(--dur-fast) linear;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-gold-300);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out-soft);
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
}

/* --- Mobile drawer --- */
.mobile-nav {
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(5, 6, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-8) var(--gutter) var(--space-16);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out-soft),
              transform var(--dur-base) var(--ease-out-soft),
              visibility var(--dur-base) linear;
}

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

.mobile-nav__list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.mobile-nav__item + .mobile-nav__item {
  border-top: 1px solid var(--color-obsidian-600);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-ivory-100);
}

.mobile-nav__link[aria-current="page"],
.mobile-nav__link:hover {
  color: var(--color-gold-300);
}

.mobile-nav__link span {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--color-ivory-500);
}

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

@media (min-width: 1000px) {
  .mobile-nav { display: none; }
}

body.nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   8. TOP BANNER STRIP
   -------------------------------------------------------------------------- */

.topbar {
  position: relative;
  background: linear-gradient(90deg, var(--color-obsidian-950), rgba(140, 109, 31, 0.35), var(--color-obsidian-950));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 40px;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--color-ivory-200);
  text-align: center;
}

.topbar strong {
  color: var(--color-gold-300);
}

.topbar__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: var(--space-16) var(--space-20);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--gradient-vault);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("../images/og_banner/og_banner.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: blur(3px) saturate(0.7);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.7) 0%, rgba(10, 12, 18, 0.92) 55%, var(--color-obsidian-900) 100%);
}

/* Animated gold dust */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-300);
  box-shadow: 0 0 8px 2px rgba(233, 204, 122, 0.55);
  opacity: 0;
  animation: float-particle linear infinite;
}

/* Three stacked blocks on mobile — title/lead, then the app mockup, then the
   CTA buttons — so the mockup sits above "Register Now" as requested. At
   desktop width the mockup moves beside the text and spans both rows. */
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "top"
    "mockup"
    "bottom";
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero {
    padding-block: var(--space-20) var(--space-24);
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "top mockup"
      "bottom mockup";
    gap: var(--space-16);
  }
}

.hero__content-top {
  grid-area: top;
  position: relative;
  z-index: 1;
  min-width: 0;
  animation: vault-reveal 1100ms var(--ease-out-soft) both;
}

.hero__content-bottom {
  grid-area: bottom;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--fs-5xl);
  }
}

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

.hero__lead {
  max-width: 58ch;
  font-size: var(--fs-md);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-8);
}

.hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding: 10px 22px 10px 12px;
  margin-bottom: var(--space-6);
  background: linear-gradient(100deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.1);
}

.hero__bonus-chip {
  display: grid;
  place-items: center;
  width: 34px;
  height: 39px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--color-obsidian-950);
  font-weight: 800;
  font-size: 0.9rem;
  animation: coin-pulse 3.2s var(--ease-in-out-soft) infinite;
}

.hero__bonus-text {
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ivory-200);
}

.hero__bonus-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-gold-300);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-obsidian-600);
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ivory-400);
}

.hero__proof li::before {
  content: "";
  width: 8px;
  height: 9px;
  flex: none;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* --------------------------------------------------------------------------
   10. PHONE MOCKUP (hero + download)
   -------------------------------------------------------------------------- */

.mockup {
  grid-area: mockup;
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  padding-block: var(--space-6);
  perspective: 1400px;
}

.mockup__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 118%);
  max-width: 100%; /* never bleed past the gutter on narrow screens */
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0.08) 38%, rgba(212, 175, 55, 0) 68%);
  filter: blur(6px);
  pointer-events: none;
  animation: halo-breathe 6s var(--ease-in-out-soft) infinite;
}

.mockup__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 104%);
  max-width: 100%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.mockup__ring--2 {
  width: min(400px, 84%);
  border-style: dashed;
  border-color: rgba(212, 175, 55, 0.13);
  animation: ring-spin 46s linear infinite;
}

/* The phone itself */
.phone {
  position: relative;
  z-index: 2;
  width: min(300px, 76vw);
  padding: 10px;
  background: linear-gradient(160deg, #2C2F3A 0%, #0C0E14 32%, #05060A 62%, #23262F 100%);
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.28),
    0 40px 90px rgba(0, 0, 0, 0.75),
    0 0 70px rgba(212, 175, 55, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.14);
  transform-style: preserve-3d;
  animation: phone-float 7s var(--ease-in-out-soft) infinite;
  transition: transform var(--dur-slow) var(--ease-out-soft);
}

.phone::before {
  /* notch / speaker */
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #05060A;
  border-radius: var(--radius-pill);
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone::after {
  /* side button glint */
  content: "";
  position: absolute;
  top: 118px;
  right: -2px;
  width: 3px;
  height: 58px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.7), rgba(140, 109, 31, 0.35));
}

.phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--color-obsidian-900);
  aspect-ratio: 1279 / 2381;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.85);
}

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

/* Screen glare sweep */
.phone__glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.13) 48%,
    rgba(255, 255, 255, 0) 58%);
  transform: translateX(-100%);
  animation: screen-glare 7s var(--ease-in-out-soft) infinite;
}

@media (min-width: 768px) {
  .phone {
    width: min(330px, 62vw);
  }
}

@media (min-width: 1000px) {
  .phone {
    width: 340px;
  }
}

/* Floating info chips around the phone.
   These used to hang past the phone's edge with negative left/right offsets
   and forced white-space:nowrap text, sized down at small widths with
   transform:scale(). transform never changes an element's layout box, so the
   pre-scale (full-size, unwrapped) width still counted toward the page's
   scrollable area — that phantom width was the page's horizontal-scroll bug.
   Chips now stay fully inside the mockup box (non-negative insets, capped
   max-width, wrapping text) so there is nothing left to overflow. */
.mockup__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(210px, 60%);
  padding: 9px 14px;
  background: rgba(18, 20, 28, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-card), 0 0 24px rgba(212, 175, 55, 0.12);
  animation: chip-drift 5.5s var(--ease-in-out-soft) infinite;
}

.mockup__chip-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 27px;
  flex: none;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--color-obsidian-950);
  font-size: 0.66rem;
  font-weight: 800;
}

.mockup__chip-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.mockup__chip-text strong {
  font-size: var(--fs-sm);
  color: var(--color-ivory-100);
  font-weight: 700;
  overflow-wrap: break-word;
}

.mockup__chip-text span {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ivory-500);
  overflow-wrap: break-word;
}

.mockup__chip--tl {
  top: 4%;
  left: 2%;
  animation-delay: -1.2s;
}

.mockup__chip--br {
  bottom: 14%;
  right: 2%;
  animation-delay: -3.4s;
}

.mockup__chip--bl {
  bottom: 2%;
  left: 2%;
  animation-delay: -2.2s;
}

@media (min-width: 500px) {
  .mockup__chip {
    max-width: min(230px, 56%);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
  }
  .mockup__chip-text span {
    letter-spacing: 0.14em;
  }
}

@media (max-width: 380px) {
  .mockup__chip {
    max-width: 46%;
    padding: 7px 10px;
    gap: 6px;
  }
  .mockup__chip-icon {
    width: 20px;
    height: 23px;
    font-size: 0.58rem;
  }
  .mockup__chip-text strong {
    font-size: 0.7rem;
  }
  .mockup__chip-text span {
    font-size: 0.54rem;
  }
  .mockup__chip--bl { display: none; }
}

/* --------------------------------------------------------------------------
   11. LIVE STATS TICKER
   -------------------------------------------------------------------------- */

.stats {
  position: relative;
  padding-block: var(--space-12);
  background: linear-gradient(180deg, var(--color-obsidian-950), var(--color-obsidian-900));
  border-block: 1px solid var(--color-obsidian-600);
}

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

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

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

@media (min-width: 900px) {
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0));
  }
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ivory-400);
}

.stat__note {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--color-ivory-500);
}

/* --------------------------------------------------------------------------
   12. GAME CARDS
   -------------------------------------------------------------------------- */

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

@media (min-width: 560px) {
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-8) var(--space-6);
  }
}

@media (min-width: 1200px) {
  .game-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
}

.game-card:hover {
  color: inherit;
}

/* The card is built from <span> elements so it can live inside an <a>.
   Each one needs an explicit box display or width/aspect-ratio are ignored. */
.game-card__frame {
  position: relative;
  display: block;
  width: 100%;
  transition: transform var(--dur-base) var(--ease-out-soft);
}

.game-card__hex {
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  display: block;
  width: 100%;
  /* Close to the 211x260 source ratio so game titles are not cropped away. */
  aspect-ratio: 1 / 1.2;
  padding: 2px;
  background: linear-gradient(150deg, var(--color-gold-700), var(--color-gold-300) 45%, var(--color-gold-100) 52%, var(--color-gold-600) 100%);
  background-size: 200% 200%;
  clip-path: var(--hex-clip);
  transition: filter var(--dur-base) var(--ease-out-soft),
              background-position var(--dur-slow) var(--ease-out-soft);
}

.game-card__img-wrap {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-obsidian-800);
  clip-path: var(--hex-clip);
}

.game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-soft),
              filter var(--dur-base) var(--ease-out-soft);
}

.game-card:hover .game-card__hex {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5));
  background-position: 100% 50%;
}

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

.game-card:hover .game-card__frame {
  transform: translateY(-6px) rotateX(6deg) rotateY(-4deg);
}

.game-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out-soft);
  pointer-events: none;
}

.game-card__play span {
  padding: 7px 16px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-obsidian-950);
  background: var(--gradient-gold-foil);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transform: translateY(8px);
  transition: transform var(--dur-base) var(--ease-out-soft);
}

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

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

.game-card__body {
  display: block;
  width: 100%;
  margin-top: var(--space-3);
}

.game-card__name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-ivory-100);
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease-out-soft);
}

.game-card:hover .game-card__name {
  color: var(--color-gold-300);
}

.game-card__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory-500);
}

.game-card__tag {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 3;
  padding: 3px 9px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-obsidian-950);
  background: var(--gradient-gold-foil);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.game-card__tag--new {
  background: linear-gradient(135deg, #3FAE6A, #7FDCA4);
}

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

/* Filter pills */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.filter-pill {
  padding: 10px 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ivory-400);
  background: rgba(27, 30, 41, 0.7);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out-soft);
}

.filter-pill:hover {
  color: var(--color-gold-300);
  border-color: rgba(212, 175, 55, 0.45);
}

.filter-pill.is-active {
  color: var(--color-obsidian-950);
  background: var(--gradient-gold-foil);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}

.filter-pill__count {
  opacity: 0.6;
  margin-left: 6px;
  font-size: 0.62rem;
}

/* Search */
.search {
  position: relative;
  max-width: 420px;
  margin-bottom: var(--space-6);
}

.search__input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  background: rgba(18, 20, 28, 0.9);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-pill);
  color: var(--color-ivory-100);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}

.search__input::placeholder {
  color: var(--color-ivory-500);
}

.search__input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-500);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.games-empty {
  display: none;
  padding: var(--space-16) var(--space-6);
  text-align: center;
  color: var(--color-ivory-400);
  border: 1px dashed var(--color-obsidian-600);
  border-radius: var(--radius-lg);
}

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

/* --------------------------------------------------------------------------
   13. STEPS (How it works)
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
  counter-reset: step;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
  }
}

.step {
  position: relative;
  padding: var(--space-8);
  background: var(--gradient-obsidian-glass);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft);
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
}

.step:hover .hex-badge {
  transform: rotate(8deg) scale(1.06);
}

.step__num {
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 175, 55, 0.1);
  pointer-events: none;
}

.step__title {
  font-size: var(--fs-xl);
  margin: var(--space-6) 0 var(--space-3);
}

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

.step__list {
  list-style: none;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-obsidian-600);
}

.step__list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-ivory-400);
}

.step__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 9px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* --------------------------------------------------------------------------
   14. BONUS VAULT
   -------------------------------------------------------------------------- */

.vault {
  position: relative;
  padding: var(--space-10) var(--space-6);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0) 62%),
    var(--gradient-obsidian-glass);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg), inset 0 0 90px rgba(212, 175, 55, 0.06);
  overflow: hidden;
  text-align: center;
}

.vault::before,
.vault::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.vault::before {
  top: -110px;
  left: -70px;
}

.vault::after {
  bottom: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
}

@media (min-width: 768px) {
  .vault {
    padding: var(--space-16) var(--space-12);
  }
}

.vault__amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gradient-gold-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 5s var(--ease-in-out-soft) infinite;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.18);
}

.vault__caption {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-ivory-200);
}

.vault__text {
  max-width: 62ch;
  margin: var(--space-6) auto var(--space-8);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

.vault__breakdown {
  display: grid;
  gap: var(--space-4);
  max-width: 780px;
  margin: var(--space-10) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-obsidian-600);
  text-align: left;
}

@media (min-width: 700px) {
  .vault__breakdown {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vault__item {
  padding: var(--space-5);
  background: rgba(5, 6, 10, 0.5);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

.vault__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-gold-300);
  margin-bottom: 4px;
}

.vault__item span {
  font-size: var(--fs-xs);
  color: var(--color-ivory-400);
  line-height: 1.6;
}

.vault__terms {
  margin-top: var(--space-8);
  font-size: var(--fs-xs);
  color: var(--color-ivory-500);
}

/* --------------------------------------------------------------------------
   15. FEATURE GRID
   -------------------------------------------------------------------------- */

.feature {
  position: relative;
  padding: var(--space-8);
  background: linear-gradient(180deg, rgba(27, 30, 41, 0.6), rgba(10, 12, 18, 0.75));
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}

.feature:hover {
  transform: translateY(-6px) rotateX(4deg);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: var(--shadow-card-lg);
}

.feature:hover .hex-badge {
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.45));
}

.feature__title {
  font-size: var(--fs-lg);
  margin: var(--space-5) 0 var(--space-3);
}

.feature__text {
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

/* --------------------------------------------------------------------------
   16. TESTIMONIAL MARQUEE
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-4);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: marquee-scroll 52s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
  animation-duration: 62s;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.testimonial {
  flex: none;
  width: 340px;
  padding: var(--space-6);
  background: var(--gradient-obsidian-glass);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--color-gold-500);
}

.testimonial__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonial__text {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--color-ivory-200);
  margin-bottom: var(--space-5);
}

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

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 39px;
  flex: none;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--color-obsidian-950);
  font-weight: 800;
  font-size: var(--fs-xs);
}

.testimonial__meta strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-ivory-100);
}

.testimonial__meta span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ivory-500);
}

/* --------------------------------------------------------------------------
   17. SCREENSHOT SLIDER
   -------------------------------------------------------------------------- */

.shots {
  position: relative;
}

.shots__viewport {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-6);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.shots__track {
  display: flex;
  gap: var(--space-5);
  transition: transform 700ms var(--ease-out-soft);
  will-change: transform;
}

.shot {
  position: relative;
  flex: 0 0 auto;
  width: 210px;
  border-radius: 26px;
  padding: 7px;
  background: linear-gradient(160deg, #2B2E39 0%, #0B0D13 34%, #05060A 66%, #212430 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 22px 50px rgba(0, 0, 0, 0.6);
  transition: transform var(--dur-slow) var(--ease-out-soft),
              box-shadow var(--dur-slow) var(--ease-out-soft),
              opacity var(--dur-slow) var(--ease-out-soft);
  opacity: 0.55;
  transform: scale(0.92);
}

.shot.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.55),
    0 30px 70px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(212, 175, 55, 0.22);
}

.shot__screen {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-obsidian-900);
  aspect-ratio: 1279 / 2450;
}

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

.shot__label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 5px 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  background: rgba(5, 6, 10, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .shot { width: 250px; }
}

@media (min-width: 1200px) {
  .shot { width: 268px; }
}

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

.shots__btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: rgba(27, 30, 41, 0.8);
  border: 1px solid var(--color-obsidian-600);
  transition: all var(--dur-base) var(--ease-out-soft);
}

.shots__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-300);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shots__btn:hover {
  border-color: var(--color-gold-500);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: var(--shadow-gold-glow);
}

.shots__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shots__dot {
  width: 9px;
  height: 10px;
  background: var(--color-obsidian-600);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all var(--dur-base) var(--ease-out-soft);
}

.shots__dot.is-active {
  width: 15px;
  height: 17px;
  background: var(--gradient-gold-foil);
}

/* --------------------------------------------------------------------------
   18. OG BANNER SECTION
   -------------------------------------------------------------------------- */

.ogbanner {
  position: relative;
}

.ogbanner__frame {
  position: relative;
  padding: 10px;
  background: var(--gradient-gold-foil);
  background-size: 300% 300%;
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: var(--shadow-card-lg), 0 0 70px rgba(212, 175, 55, 0.16);
  animation: gold-shimmer 9s var(--ease-in-out-soft) infinite;
}

.ogbanner__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-obsidian-950);
}

.ogbanner__inner img {
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease-out-soft);
}

.ogbanner__frame:hover .ogbanner__inner img {
  transform: scale(1.03);
}

.ogbanner__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  animation: screen-glare 8s var(--ease-in-out-soft) infinite;
}

.ogbanner__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: rgba(18, 20, 28, 0.7);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

.ogbanner__caption p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  max-width: 62ch;
}

.ogbanner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
  list-style: none;
}

.ogbanner__tags li {
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   19. TELEGRAM CTA BLOCK
   -------------------------------------------------------------------------- */

.tg-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
}

@media (min-width: 800px) {
  .tg-cta {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: linear-gradient(160deg, rgba(41, 169, 235, 0.09), rgba(10, 12, 18, 0.85));
  border: 1px solid rgba(41, 169, 235, 0.3);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}

.tg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 169, 235, 0.6);
  box-shadow: var(--shadow-card-lg), 0 0 40px rgba(41, 169, 235, 0.16);
}

.tg-card--gold {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.09), rgba(10, 12, 18, 0.85));
  border-color: rgba(212, 175, 55, 0.3);
}

.tg-card--gold:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: var(--shadow-card-lg), 0 0 40px rgba(212, 175, 55, 0.16);
}

.tg-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-5);
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  box-shadow: 0 8px 24px rgba(41, 169, 235, 0.34);
}

.tg-card--gold .tg-card__icon {
  background: var(--gradient-gold-foil);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

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

.tg-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}

.tg-card__text {
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-6);
  flex: 1;
}

.tg-card__handle {
  display: inline-block;
  margin-bottom: var(--space-5);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  color: var(--color-ivory-200);
  background: rgba(5, 6, 10, 0.6);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-sm);
}

/* Inline telegram pill used beside hero CTAs */
.tg-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: rgba(41, 169, 235, 0.08);
  border: 1px solid rgba(41, 169, 235, 0.35);
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out-soft);
}

.tg-pill:hover {
  transform: translateY(-2px);
  background: rgba(41, 169, 235, 0.16);
  border-color: rgba(41, 169, 235, 0.7);
  box-shadow: 0 0 24px rgba(41, 169, 235, 0.28);
}

.tg-pill__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.tg-pill__icon svg {
  width: 18px;
  height: 18px;
}

.tg-pill__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.tg-pill__text strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-ivory-100);
}

.tg-pill__text span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7FD0F7;
}

/* --------------------------------------------------------------------------
   20. CTA BANNER
   -------------------------------------------------------------------------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: var(--space-12) var(--space-6);
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0) 60%),
    linear-gradient(180deg, var(--color-obsidian-800), var(--color-obsidian-950));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-16) var(--space-12);
  }
}

.cta-banner__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-banner__title {
    font-size: var(--fs-4xl);
  }
}

.cta-banner__text {
  max-width: 60ch;
  margin: 0 auto var(--space-8);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

/* --------------------------------------------------------------------------
   21. ACCORDION / FAQ
   -------------------------------------------------------------------------- */

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

.acc {
  background: rgba(18, 20, 28, 0.7);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out-soft),
              background var(--dur-base) var(--ease-out-soft);
}

.acc.is-open {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(27, 30, 41, 0.8);
}

.acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-ivory-100);
  transition: color var(--dur-fast) var(--ease-out-soft);
}

.acc__trigger:hover,
.acc.is-open .acc__trigger {
  color: var(--color-gold-300);
}

.acc__sign {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}

.acc__sign::before,
.acc__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-gold-500);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out-soft);
}

.acc__sign::before {
  width: 14px;
  height: 2px;
}

.acc__sign::after {
  width: 2px;
  height: 14px;
}

.acc.is-open .acc__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out-soft);
}

.acc.is-open .acc__panel {
  grid-template-rows: 1fr;
}

.acc__panel-inner {
  overflow: hidden;
}

.acc__body {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

.acc__body p + p {
  margin-top: var(--space-4);
}

.acc__body ul {
  list-style: none;
  margin-top: var(--space-4);
}

.acc__body ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
}

.acc__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 9px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* --------------------------------------------------------------------------
   22. TABLES
   -------------------------------------------------------------------------- */

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
  background: rgba(18, 20, 28, 0.6);
}

.table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.table th,
.table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-obsidian-600);
}

.table thead th {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  background: rgba(5, 6, 10, 0.6);
  white-space: nowrap;
}

.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.table td strong {
  color: var(--color-ivory-100);
}

/* --------------------------------------------------------------------------
   23. FORMS
   -------------------------------------------------------------------------- */

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

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

.field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-500);
}

.field__req {
  color: var(--color-danger);
}

.field__input,
.field__textarea,
.field__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(5, 6, 10, 0.6);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-sm);
  color: var(--color-ivory-100);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}

.field__textarea {
  min-height: 160px;
  resize: vertical;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--color-ivory-500);
}

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.field.has-error .field__input,
.field.has-error .field__textarea,
.field.has-error .field__select {
  border-color: var(--color-danger);
}

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

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

.form__note {
  font-size: var(--fs-xs);
  color: var(--color-ivory-500);
  line-height: 1.7;
}

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

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

.form__status--ok {
  background: rgba(63, 174, 106, 0.12);
  border: 1px solid rgba(63, 174, 106, 0.4);
  color: #8FE0AE;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-16) var(--space-12);
  background:
    radial-gradient(90% 100% at 50% 0%, rgba(212, 175, 55, 0.13), rgba(212, 175, 55, 0) 62%),
    linear-gradient(180deg, var(--color-obsidian-950), var(--color-obsidian-900));
  border-bottom: 1px solid var(--color-obsidian-600);
}

@media (min-width: 768px) {
  .page-hero {
    padding-block: var(--space-20) var(--space-16);
  }
}

.page-hero__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-5);
  max-width: 18ch;
}

.page-hero--center .page-hero__title {
  margin-inline: auto;
}

.page-hero__lead {
  max-width: 66ch;
  font-size: var(--fs-md);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

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

.page-hero--center .page-hero__lead {
  margin-inline: auto;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  list-style: none;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ivory-500);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-gold-700);
}

.crumbs a {
  color: var(--color-ivory-400);
}

.crumbs a:hover {
  color: var(--color-gold-300);
}

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

/* --------------------------------------------------------------------------
   25. TABLE OF CONTENTS (legal pages)
   -------------------------------------------------------------------------- */

.legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-10);
}

@media (min-width: 1000px) {
  .legal {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: var(--space-16);
    align-items: start;
  }
}

.toc {
  position: relative;
  padding: var(--space-6);
  background: rgba(18, 20, 28, 0.7);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

@media (min-width: 1000px) {
  .toc {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
  }
}

.toc__title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-bottom: var(--space-4);
}

.toc__list {
  list-style: none;
  counter-reset: toc;
}

.toc__list li {
  counter-increment: toc;
}

.toc__list a {
  display: block;
  padding: 8px 0 8px var(--space-6);
  position: relative;
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  border-left: 1px solid var(--color-obsidian-600);
  transition: all var(--dur-fast) var(--ease-out-soft);
}

.toc__list a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: var(--space-3);
  font-size: 0.62rem;
  color: var(--color-gold-700);
}

.toc__list a:hover {
  color: var(--color-gold-300);
  border-left-color: var(--color-gold-500);
}

/* --------------------------------------------------------------------------
   26. RESPONSIBLE GAMING
   -------------------------------------------------------------------------- */

.responsible {
  position: relative;
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(160deg, rgba(192, 69, 59, 0.08), rgba(10, 12, 18, 0.9));
  border: 1px solid rgba(192, 69, 59, 0.28);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .responsible {
    padding: var(--space-12);
  }
}

.responsible__grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 800px) {
  .responsible__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .responsible__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.responsible__item {
  padding: var(--space-5);
  background: rgba(5, 6, 10, 0.5);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

.responsible__item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  margin-bottom: var(--space-3);
}

.responsible__item p {
  font-size: var(--fs-xs);
  color: var(--color-ivory-400);
  line-height: 1.75;
}

.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--color-danger);
  color: var(--color-danger);
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   27. KEYWORD / TOPIC CLOUD
   -------------------------------------------------------------------------- */

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
}

.topics li a,
.topics li span {
  display: inline-block;
  padding: 9px 18px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-ivory-400);
  background: rgba(18, 20, 28, 0.8);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out-soft);
}

.topics li a:hover {
  color: var(--color-gold-300);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.07);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   28. SPLIT / MEDIA SECTIONS
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1000px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-16);
  }
  .split--reverse .split__media {
    order: -1;
  }
}

.split__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .split__title {
    font-size: var(--fs-3xl);
  }
}

.split__text {
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

.split__list {
  list-style: none;
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
}

.split__list li {
  position: relative;
  padding-left: var(--space-8);
  font-size: var(--fs-sm);
  color: var(--color-ivory-200);
  line-height: 1.7;
}

.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 13px;
  background: var(--gradient-gold-foil);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.split__list li strong {
  color: var(--color-ivory-100);
}

/* --------------------------------------------------------------------------
   29. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  padding-top: var(--space-20);
  background: linear-gradient(180deg, var(--color-obsidian-950) 0%, #030407 100%);
  border-top: 1px solid var(--color-obsidian-600);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  inset-inline: 0;
  height: 1px;
  background: var(--gradient-hairline);
}

.footer__top {
  display: grid;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

@media (min-width: 800px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: var(--space-12);
  }
}

.footer__about {
  max-width: 46ch;
}

.footer__tagline {
  margin: var(--space-5) 0 var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
  line-height: var(--lh-loose);
}

.footer__title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-bottom: var(--space-5);
}

.footer__list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.footer__list a {
  font-size: var(--fs-sm);
  color: var(--color-ivory-400);
}

.footer__list a:hover {
  color: var(--color-gold-300);
  padding-left: 4px;
}

.footer__list a {
  transition: color var(--dur-fast) var(--ease-out-soft), padding-left var(--dur-fast) var(--ease-out-soft);
}

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

.footer__legal-strip {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-obsidian-600);
}

.footer__disclaimer {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: rgba(5, 6, 10, 0.55);
  border: 1px solid var(--color-obsidian-600);
  border-radius: var(--radius-md);
}

.footer__disclaimer p {
  font-size: var(--fs-xs);
  line-height: 1.85;
  color: var(--color-ivory-400);
  margin: 0;
}

.footer__disclaimer p + p {
  margin-top: var(--space-3);
}

.footer__disclaimer strong {
  color: var(--color-ivory-200);
}

.footer__seo {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-obsidian-600);
}

.footer__seo p {
  font-size: 0.72rem;
  line-height: 1.9;
  color: var(--color-ivory-500);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-block: var(--space-6) var(--space-10);
  border-top: 1px solid var(--color-obsidian-600);
  font-size: var(--fs-xs);
  color: var(--color-ivory-500);
}

@media (min-width: 800px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  list-style: none;
}

.footer__bottom-links a {
  color: var(--color-ivory-400);
}

/* --------------------------------------------------------------------------
   30. STICKY MOBILE CTA
   -------------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--z-nav) - 2);
  display: flex;
  gap: var(--space-3);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 6, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  transform: translateY(110%);
  transition: transform var(--dur-base) var(--ease-out-soft);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  min-width: 0; /* let flex:1 actually shrink instead of forcing the bar wider than the viewport */
  --btn-px: 12px;
  font-size: 0.72rem;
}

.sticky-cta .btn--telegram-outline {
  flex: 0 0 auto;
  --btn-px: 18px;
}

@media (min-width: 1000px) {
  .sticky-cta { display: none; }
}

@media (max-width: 999px) {
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   31. SCROLL REVEAL
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease-out-soft), transform 720ms var(--ease-out-soft);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 90ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 270ms; }
.reveal--delay-4 { transition-delay: 360ms; }
.reveal--delay-5 { transition-delay: 450ms; }
.reveal--delay-6 { transition-delay: 540ms; }

/* --------------------------------------------------------------------------
   32. KEYFRAMES
   -------------------------------------------------------------------------- */

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% { opacity: 0.9; }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(-105vh) translateX(var(--drift, 30px)) scale(1);
    opacity: 0;
  }
}

@keyframes vault-reveal {
  0% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
    filter: blur(6px);
  }
  60% { opacity: 1; }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateY(-9deg) rotateX(3deg) rotateZ(-1deg); }
  50% { transform: translateY(-16px) rotateY(-4deg) rotateX(1deg) rotateZ(0.5deg); }
}

@keyframes screen-glare {
  0%, 62% { transform: translateX(-110%); }
  86%, 100% { transform: translateX(110%); }
}

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

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes chip-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@keyframes coin-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

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

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

  .hero__content-top {
    animation: none;
    clip-path: none;
  }

  .hero__particles,
  .phone__glare,
  .ogbanner__shine {
    display: none;
  }

  .phone {
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   34. PRINT
   -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .mobile-nav,
  .sticky-cta,
  .topbar,
  .hero__particles,
  .marquee {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
