:root {
  color-scheme: dark;
  --bg: #0a090d;
  --bg-soft: #111014;
  --panel: #151419;
  --panel-high: #1b191f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f7f4ee;
  --muted: #aaa5af;
  --muted-strong: #cbc5cf;
  --gold: #f0c873;
  --gold-deep: #d69f3d;
  --violet: #b879ff;
  --violet-deep: #7c3fe1;
  --green: #6ee7b7;
  --header-height: 82px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(116, 61, 179, 0.13), transparent 26rem),
    radial-gradient(circle at 12% 34%, rgba(218, 158, 52, 0.06), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

main,
.site-header,
.site-footer {
  max-width: 100%;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0, transparent 75%);
  content: "";
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: rgba(240, 200, 115, 0.95);
  color: #17120a;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
}

.page-glow--one {
  top: 13rem;
  right: -22rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(159, 80, 255, 0.14), transparent 67%);
}

.page-glow--two {
  top: 90rem;
  left: -28rem;
  width: 54rem;
  height: 54rem;
  background: radial-gradient(circle, rgba(219, 158, 52, 0.08), transparent 66%);
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  box-shadow: 0 0 12px rgba(184, 121, 255, 0.45);
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(10, 9, 13, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  transition:
    height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(10, 9, 13, 0.88);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 162px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition:
    right 180ms ease,
    left 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-badge {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn svg,
.text-link svg,
.footer-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.btn:hover,
.text-link:hover,
.footer-link:hover {
  transform: translateY(-2px);
}

.btn:hover svg,
.text-link:hover svg,
.footer-link:hover svg {
  transform: translateX(3px);
}

.btn--compact {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 12px;
}

.btn--hero {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f1cb79 0%, #e4ad4e 100%);
  box-shadow: 0 14px 38px rgba(214, 159, 61, 0.18);
  color: #151008;
}

.btn--primary::before {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 28%;
  height: 180%;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transform: rotate(20deg);
  transition: left 450ms ease;
}

.btn--primary:hover {
  box-shadow: 0 18px 46px rgba(214, 159, 61, 0.28);
}

.btn--primary:hover::before {
  left: 125%;
}

.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(240, 200, 115, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn--light {
  background: #f8f4eb;
  box-shadow: 0 15px 40px rgba(30, 12, 47, 0.2);
  color: #171019;
}

.btn--light:hover {
  box-shadow: 0 18px 50px rgba(30, 12, 47, 0.3);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-block: 68px 84px;
}

.hero-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(34px, 5vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.75);
}

.eyebrow-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: inherit;
  animation: ping 2.2s ease-out infinite;
  content: "";
}

@keyframes ping {
  0% {
    opacity: 0.9;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6vw, 6.8rem);
  font-weight: 780;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  margin-top: 0.1em;
  background: linear-gradient(100deg, var(--gold) 0%, #f6e2b1 38%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.mini-age {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(240, 200, 115, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 8px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}

.hero-mirror-image {
  width: min(112%, 700px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.36));
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: provider-marquee 42s linear infinite;
}

.provider-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(32px, 3.8vw, 58px);
  padding: 17px clamp(16px, 2vw, 30px);
}

.provider-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
}

.provider-mark img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.48;
  filter: brightness(0) invert(1);
  transition: opacity 180ms ease, filter 180ms ease;
}

.provider-mark:hover img {
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(84%) sepia(40%) saturate(587%) hue-rotate(350deg)
    brightness(99%) contrast(91%);
}

.ticker:hover .provider-track {
  animation-play-state: paused;
}

@keyframes provider-marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: 116px;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 50px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
}

.section-heading h2,
.experience-copy h2,
.faq-intro h2,
.final-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.6vw, 4.9rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 480px;
  margin: 0 0 4px auto;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading--compact {
  grid-template-columns: 1fr;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.06), transparent 30%),
    var(--panel);
  grid-template-columns: 1fr auto;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    background-color 250ms ease;
}

.game-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 18, 0.94) 0%, rgba(15, 14, 18, 0.62) 47%, rgba(15, 14, 18, 0.05) 100%),
    linear-gradient(0deg, rgba(15, 14, 18, 0.96) 0%, rgba(15, 14, 18, 0.25) 58%, rgba(15, 14, 18, 0.04) 100%);
  content: "";
  pointer-events: none;
}

.game-card::before {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  content: "";
  filter: blur(4px);
  opacity: 0.11;
  pointer-events: none;
  transform: translate(45%, -40%);
  transition: opacity 250ms ease;
}

.game-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 40%;
  opacity: 0.88;
  scale: 1.02;
  transition:
    opacity 300ms ease,
    scale 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.game-card:hover .game-art img {
  opacity: 0.98;
  scale: 1.075;
}

.game-card--slots::before {
  top: 0;
  right: 0;
  background: var(--gold);
}

.game-card--live::before {
  top: 0;
  right: 0;
  background: var(--violet);
}

.game-card--sport::before {
  top: 0;
  right: 0;
  background: var(--green);
}

.game-card--new::before {
  top: 0;
  right: 0;
  background: #f178a3;
}

.game-card:hover {
  border-color: rgba(240, 200, 115, 0.28);
  background-color: var(--panel-high);
  transform: translateY(-6px);
}

.game-card:hover::before {
  opacity: 0.18;
}

.game-number {
  position: absolute;
  top: 25px;
  left: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  z-index: 2;
}

.game-icon {
  position: absolute;
  top: 24px;
  right: 25px;
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(5deg);
  transition: transform 250ms ease;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.game-card:hover .game-icon {
  transform: rotate(0) scale(1.04);
}

.game-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.game-card--live .game-icon svg {
  stroke: var(--violet);
}

.game-card--sport .game-icon svg {
  stroke: var(--green);
}

.game-card--new .game-icon svg {
  stroke: #f68bae;
}

.game-card-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 77%;
}

.game-card-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.game-card--live .game-card-copy > span {
  color: var(--violet);
}

.game-card--sport .game-card-copy > span {
  color: var(--green);
}

.game-card--new .game-card-copy > span {
  color: #f68bae;
}

.game-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 720;
  letter-spacing: -0.045em;
}

.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.round-link {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  z-index: 2;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.round-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.game-card:hover .round-link {
  border-color: var(--gold);
  background: var(--gold);
  color: #16110a;
}

.experience-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 3% 100%, rgba(240, 200, 115, 0.09), transparent 32%),
    radial-gradient(circle at 100% 0, rgba(184, 121, 255, 0.12), transparent 34%),
    #121116;
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(45px, 8vw, 110px);
}

.experience-panel::before {
  position: absolute;
  top: 0;
  left: 49%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line), transparent);
  content: "";
}

.experience-copy {
  align-self: center;
}

.experience-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
}

.experience-copy p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.75;
}

.text-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease;
}

.feature-list {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: grid;
  min-height: 136px;
  align-items: center;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
}

.feature-item:first-child {
  padding-top: 0;
}

.feature-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-index {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 80px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.8;
  text-align: center;
}

.feature-item > div {
  min-width: 0;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.feature-item p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: 300px;
  align-items: flex-end;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #09080b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.step-card::before,
.step-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.step-card::before {
  z-index: -2;
  background-image: var(--step-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.step-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 6, 9, 0.02) 0%, rgba(7, 6, 9, 0.12) 44%, rgba(7, 6, 9, 0.6) 100%),
    linear-gradient(90deg, rgba(7, 6, 9, 0.2), transparent 68%);
}

.step-card--open {
  --step-image: url("assets/step_1.webp");
}

.step-card--account {
  --step-image: url("assets/step_2.webp");
}

.step-card--choose {
  --step-image: url("assets/step_3.webp");
}

.step-card:hover::before {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.055);
}

.step-card > span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(240, 200, 115, 0.28);
  border-radius: 50%;
  background: rgba(7, 6, 9, 0.68);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.step-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 17px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 11, 16, 0.86), rgba(13, 11, 16, 0.66));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px) saturate(1.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.step-card:hover .step-copy {
  border-color: rgba(240, 200, 115, 0.28);
  background: linear-gradient(135deg, rgba(13, 11, 16, 0.9), rgba(13, 11, 16, 0.72));
  transform: translateY(-2px);
}

.step-line {
  width: 42px;
  height: 2px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), rgba(240, 200, 115, 0.14));
  box-shadow: 0 0 14px rgba(240, 200, 115, 0.24);
}

.step-card h3 {
  margin: 0 0 7px;
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.step-card p {
  margin: 0;
  max-width: 40ch;
  color: rgba(247, 244, 238, 0.72);
  font-size: 13px;
  line-height: 1.52;
  letter-spacing: 0.002em;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 10vw, 150px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 60px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-plus {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.final-section {
  padding-bottom: 64px;
}

.final-cta {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 380px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(34px, 6vw, 74px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(125deg, rgba(36, 20, 45, 0.18), transparent 60%),
    linear-gradient(118deg, #bc7cf8 0%, #8152d8 58%, #6038b7 100%);
  box-shadow: 0 35px 100px rgba(92, 51, 158, 0.22);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.final-copy .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.final-copy h2 {
  margin-bottom: 20px;
  color: #fff;
}

.final-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.final-cta > .btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.final-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.final-orb--one {
  top: -160px;
  right: 120px;
  width: 390px;
  height: 390px;
}

.final-orb--two {
  right: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
}

.responsible {
  display: grid;
  align-items: start;
  padding-block: 34px 64px;
  grid-template-columns: 70px 1fr;
  gap: 22px;
}

.responsible-age {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 800;
}

.responsible h2 {
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 700;
}

.responsible p {
  max-width: 900px;
  margin: 0;
  color: #77727d;
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #08070a;
}

.footer-main {
  display: grid;
  align-items: center;
  padding-block: 44px;
  grid-template-columns: auto minmax(250px, 1fr) auto;
  gap: 56px;
}

.brand--footer .brand-logo {
  width: 150px;
}

.footer-main > p {
  max-width: 630px;
  margin: 0;
  color: #77727d;
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 19px 24px;
  border-top: 1px solid var(--line);
  color: #67626c;
  font-size: 11px;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(20, 18, 23, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  transform: translateY(140%);
  transition: transform 250ms ease;
}

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

.mobile-cta > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mobile-cta-logo {
  width: 92px;
  height: auto;
  margin-bottom: 3px;
}

.mobile-cta span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.noscript-note {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #19171d;
  color: var(--text);
  text-align: center;
}

.noscript-note a {
  color: var(--gold);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay-small {
  transition-delay: 80ms;
}

.reveal--delay {
  transition-delay: 150ms;
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1000px);
  }

  .main-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.4rem);
  }

  .experience-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
  }

  .final-cta {
    align-items: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    visibility: hidden;
    overflow: hidden;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(20, 18, 23, 0.97);
    box-shadow: var(--shadow);
    gap: 2px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .main-nav a {
    padding: 13px 15px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-block: 64px 76px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(3.5rem, 11vw, 6.5rem);
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .hero-mirror-image {
    width: min(100%, 680px);
  }

  .section {
    padding-block: 92px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading p {
    max-width: 650px;
    margin-left: 0;
  }

  .experience-panel {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .experience-panel::before {
    display: none;
  }

  .feature-list {
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro p {
    max-width: 650px;
  }

  .final-cta {
    min-height: 420px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 26px;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 25px;
  }

  .page-glow {
    display: none;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .brand-logo {
    width: 132px;
  }

  .header-cta,
  .age-badge {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 62px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(3rem, 15vw, 4.9rem);
    line-height: 0.93;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 26px;
  }

  .btn--hero {
    width: 100%;
  }

  .hero-meta {
    gap: 10px 16px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-mirror-image {
    width: 100%;
    max-width: 100%;
  }

  .provider-group {
    gap: 28px;
    padding: 14px 16px;
  }

  .provider-mark,
  .provider-mark img {
    width: 34px;
    height: 34px;
  }

  .provider-mark {
    flex-basis: 34px;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .section-heading h2,
  .experience-copy h2,
  .faq-intro h2,
  .final-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1;
  }

  .section-heading p,
  .experience-copy p,
  .faq-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .game-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 290px;
    padding: 23px;
  }

  .game-number {
    top: 21px;
    left: 23px;
  }

  .game-icon {
    top: 21px;
    right: 21px;
    width: 66px;
    height: 66px;
    border-radius: 21px;
  }

  .game-card-copy {
    max-width: calc(100% - 42px);
  }

  .round-link {
    right: 22px;
    bottom: 22px;
  }

  .experience-panel {
    padding: 28px 22px;
    gap: 47px;
  }

  .feature-item {
    min-height: 132px;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .step-card {
    min-height: 300px;
    padding: 14px;
  }

  .step-card > span {
    top: 16px;
    left: 16px;
  }

  .step-copy {
    padding: 15px 16px 14px;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 14px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 13px;
  }

  .final-section {
    padding-bottom: 46px;
  }

  .final-cta {
    min-height: 470px;
    gap: 32px;
    padding: 30px 22px;
  }

  .final-copy p {
    font-size: 14px;
  }

  .responsible {
    grid-template-columns: 48px 1fr;
    padding-block: 26px 46px;
    gap: 14px;
  }

  .responsible-age {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 36px;
  }

  .footer-main > p {
    grid-row: auto;
  }

  .footer-link {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-meta li:nth-child(2) {
    display: none;
  }

  .mobile-cta .btn {
    padding-inline: 14px;
  }
}

.redirect-error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #09080c;
}

.redirect-error-card {
  width: min(100%, 520px);
  padding: clamp(28px, 6vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: #111015;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.redirect-error-card span {
  color: #f0c873;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.redirect-error-card h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 7vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.redirect-error-card p {
  margin: 0 0 24px;
  color: rgba(247, 244, 238, 0.64);
  line-height: 1.7;
}

.redirect-error-card a {
  display: inline-flex;
  padding: 13px 20px;
  border-radius: 14px;
  background: #f0c873;
  color: #09080c;
  font-weight: 800;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .provider-track {
    animation: none !important;
  }
}
