/* ========================================================================== 
   SpinParty Vibez — redesigned production stylesheet
   System fonts only: no third-party font request or build step required.
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #080a16;
  --bg-deep: #050610;
  --surface: #101326;
  --surface-2: #15182d;
  --surface-3: #1b1f38;
  --text: #f7f8ff;
  --text-soft: #cbd0e4;
  --muted: #9299b5;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --violet: #7c5cff;
  --purple: #b44dff;
  --pink: #ff4e9b;
  --cyan: #55ddff;
  --green: #54e5a7;
  --warning: #ffca67;
  --danger: #ff6f88;
  --gradient: linear-gradient(135deg, var(--violet), var(--purple) 50%, var(--pink));
  --gradient-soft: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 78, 155, 0.12));
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-glow: 0 24px 80px rgba(180, 77, 255, 0.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 7%, rgba(162, 64, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 5% 42%, rgba(45, 205, 255, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

::selection {
  background: rgba(180, 77, 255, 0.55);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #070914;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

/* --------------------------------------------------------------------------
   Disclosure + header
   -------------------------------------------------------------------------- */

.disclosure-bar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0f1f;
  color: var(--text-soft);
  font-size: 12px;
}

.disclosure-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.disclosure-bar strong {
  color: var(--text);
}

.disclosure-bar__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(84, 229, 167, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 22, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 10, 22, 0.93);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 22px rgba(180, 77, 255, 0.28));
}

.brand__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__text strong {
  color: #dcb9ff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  transition: right 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* --------------------------------------------------------------------------
   Buttons and reusable typography
   -------------------------------------------------------------------------- */

.button {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.button--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 34px rgba(180, 77, 255, 0.24);
}

.button--primary:hover:not(:disabled) {
  box-shadow: 0 18px 42px rgba(180, 77, 255, 0.34);
}

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

.button--secondary:hover:not(:disabled),
.button--quiet:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button--quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
}

.button--light {
  background: #fff;
  color: #151226;
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.16);
}

.button--light:hover:not(:disabled) {
  box-shadow: 0 24px 60px rgba(255, 255, 255, 0.24);
}

.button--large {
  min-height: 56px;
  padding: 15px 24px;
  border-radius: 16px;
  font-size: 16px;
}

.button--compact {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.button--block {
  width: 100%;
}

.eyebrow,
.section-kicker,
.modal__eyebrow {
  color: #d8baff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(190, 124, 255, 0.2);
  border-radius: 999px;
  background: rgba(142, 80, 255, 0.08);
}

.eyebrow__spark {
  color: var(--cyan);
  font-size: 13px;
}

.section {
  padding: 108px 0;
  scroll-margin-top: 88px;
}

.section-kicker {
  margin-bottom: 14px;
}

.section h2,
.legal-hero h1,
.error-page h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.section-intro,
.section-heading-centered > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading-row h2 {
  max-width: 750px;
}

.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading-centered > p:last-child {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 10, 22, 0.96) 0%, rgba(8, 10, 22, 0.86) 45%, rgba(8, 10, 22, 0.54) 100%),
    radial-gradient(circle at 75% 40%, rgba(134, 71, 255, 0.22), transparent 31rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -2;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero__glow--one {
  width: 440px;
  height: 440px;
  top: -140px;
  right: 8%;
  background: radial-gradient(circle, rgba(210, 72, 255, 0.22), transparent 66%);
}

.hero__glow--two {
  width: 360px;
  height: 360px;
  bottom: -130px;
  left: -80px;
  background: radial-gradient(circle, rgba(69, 214, 255, 0.14), transparent 67%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 74px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.8vw, 94px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1::after {
  content: "";
  width: 0.74em;
  height: 0.14em;
  display: inline-block;
  margin-left: 0.13em;
  border-radius: 99px;
  background: var(--gradient);
  vertical-align: 0.12em;
  box-shadow: 0 8px 24px rgba(180, 77, 255, 0.32);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.65;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(84, 229, 167, 0.1);
  color: var(--green);
  font-size: 11px;
}

.hero-showcase {
  position: relative;
  min-height: 530px;
  isolation: isolate;
}

.hero-showcase__halo {
  position: absolute;
  inset: 10% 5% 0 10%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 77, 255, 0.25), rgba(85, 221, 255, 0.08) 45%, transparent 70%);
  filter: blur(18px);
}

.showcase-card {
  position: absolute;
  width: 238px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

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

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 6, 16, 0.86), transparent 45%);
}

.showcase-card--back {
  top: 18px;
  right: 12px;
  transform: rotate(9deg) scale(0.92);
  opacity: 0.72;
}

.showcase-card--middle {
  top: 118px;
  left: 6px;
  transform: rotate(-9deg) scale(0.94);
  opacity: 0.82;
}

.showcase-card--front {
  top: 62px;
  left: 50%;
  z-index: 2;
  width: 270px;
  transform: translateX(-45%) rotate(1.5deg);
  border-color: rgba(220, 185, 255, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(255, 255, 255, 0.025);
}

.showcase-card__caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.showcase-card__caption span {
  display: block;
  margin-bottom: 3px;
  color: #d9c5ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card__caption strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.showcase-fact {
  position: absolute;
  z-index: 5;
  right: -12px;
  bottom: 18px;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(15, 18, 34, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.showcase-fact__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(84, 229, 167, 0.1);
  color: var(--green);
}

.showcase-fact__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-fact span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.showcase-fact strong {
  color: var(--text);
  font-size: 13px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.proof-strip__grid > div:first-child {
  padding-left: 0;
}

.proof-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Games
   -------------------------------------------------------------------------- */

.games-section {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.015), transparent);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-tab {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.filter-tab:hover {
  border-color: var(--line-strong);
  color: #fff;
  transform: translateY(-1px);
}

.filter-tab.is-active {
  border-color: rgba(196, 117, 255, 0.45);
  background: rgba(164, 76, 255, 0.16);
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.game-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(204, 134, 255, 0.45);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(180, 77, 255, 0.08);
}

.game-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #181b32;
}

.game-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 22, 0.92), transparent 46%);
  pointer-events: none;
}

.game-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.game-card:hover .game-card__image,
.game-card:focus-visible .game-card__image {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.game-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 9, 20, 0.76);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.game-card__play {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(180, 77, 255, 0.35);
  transform: translateY(5px);
  transition: transform 0.22s ease;
}

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

.game-card__play svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.game-card__body {
  min-height: 152px;
  padding: 18px 18px 20px;
}

.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  color: #c6a8ef;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.game-card__meta span:last-child {
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.game-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

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

.games-empty,
.noscript-note {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--text-soft);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Value proposition
   -------------------------------------------------------------------------- */

.value-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(85, 221, 255, 0.07), transparent 26rem),
    radial-gradient(circle at 92% 80%, rgba(180, 77, 255, 0.1), transparent 30rem),
    rgba(255, 255, 255, 0.015);
}

.value-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 72px;
}

.value-section__intro {
  position: sticky;
  top: 120px;
}

.value-section__intro h2 {
  font-size: clamp(38px, 4.3vw, 58px);
}

.value-section__intro > p:not(.section-kicker) {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dbc1ff;
  font-weight: 800;
  cursor: pointer;
}

.text-link:hover {
  color: #fff;
}

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

.value-card {
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(15, 18, 36, 0.7);
  box-shadow: var(--shadow-sm);
}

.value-card:nth-child(2),
.value-card:nth-child(4) {
  transform: translateY(30px);
}

.value-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border: 1px solid rgba(198, 128, 255, 0.2);
  border-radius: 15px;
  background: rgba(165, 85, 255, 0.1);
  color: #d9b8ff;
}

.value-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.how-section {
  background: var(--bg);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 77, 255, 0.45), rgba(85, 221, 255, 0.35), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 340px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.step-card__number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(207, 151, 255, 0.3);
  border-radius: 16px;
  background: #111429;
  color: #dfc2ff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.step-card__visual {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.step-card__visual--browse {
  gap: 8px;
}

.step-card__visual--browse span {
  width: 42px;
  height: 62px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.7), rgba(255, 78, 155, 0.28));
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.28);
}

.step-card__visual--browse span:nth-child(2) {
  height: 76px;
  background: linear-gradient(145deg, rgba(255, 78, 155, 0.7), rgba(85, 221, 255, 0.25));
}

.step-card__visual--form {
  flex-direction: column;
  gap: 8px;
  padding-inline: 32px;
}

.step-card__visual--form span {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.step-card__visual--form span:last-child {
  width: 62%;
  background: var(--gradient);
}

.step-card__visual--play span {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 18px;
  background: var(--gradient);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 16px 35px rgba(180, 77, 255, 0.3);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Transparency
   -------------------------------------------------------------------------- */

.transparency-section {
  padding-top: 30px;
}

.transparency-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 62px;
  border: 1px solid rgba(206, 146, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 100%, rgba(85, 221, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 100% 0, rgba(255, 78, 155, 0.14), transparent 28rem),
    #111429;
  box-shadow: var(--shadow-md);
}

.transparency-panel h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 60px);
}

.transparency-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transparency-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.transparency-list li:first-child {
  padding-top: 0;
}

.transparency-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.transparency-list > li > span {
  color: #c994ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.transparency-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.transparency-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-section {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.015));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(40px, 5vw, 68px);
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-intro a,
.faq-answer a {
  color: #d9baff;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 52px 20px 0;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text-soft);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

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

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

.faq-answer {
  max-width: 780px;
  padding: 0 48px 24px 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Final CTA + footer
   -------------------------------------------------------------------------- */

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(135deg, #7250f4, #a743ed 54%, #e8438f);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}

.final-cta::before {
  width: 520px;
  height: 520px;
  top: -340px;
  left: -120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.02);
}

.final-cta::after {
  width: 430px;
  height: 430px;
  right: -180px;
  bottom: -290px;
  background: rgba(85, 221, 255, 0.16);
  filter: blur(30px);
}

.final-cta__inner {
  max-width: 820px;
  text-align: center;
}

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

.final-cta h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.final-cta p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.final-cta__fineprint {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: 74px 0 32px;
  background: #050610;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.75fr);
  gap: 52px;
  padding-bottom: 52px;
}

.site-footer__brand > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__column h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__column a:hover {
  color: #fff;
}

.site-footer__notice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.site-footer__notice strong {
  display: block;
  margin-bottom: 6px;
  color: #d9c1ff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__notice p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: #6f7690;
  font-size: 11px;
}

.site-footer__bottom a {
  color: #aab0c7;
}

.mobile-cta {
  display: none;
}

/* --------------------------------------------------------------------------
   Modal, age gate, signup form
   -------------------------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #111427;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__panel--age {
  width: min(100%, 500px);
  padding: 42px;
  text-align: center;
}

.modal__brand-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
}

.modal__eyebrow {
  margin-bottom: 10px;
}

.modal h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.modal__panel--age > p:not(.modal__eyebrow, .modal__fineprint) {
  margin-bottom: 26px;
  color: var(--text-soft);
}

.modal__actions {
  display: grid;
  gap: 10px;
}

.modal__fineprint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.modal__close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 11, 25, 0.76);
  color: var(--text-soft);
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal__panel--signup {
  width: min(100%, 1020px);
  overflow: hidden;
}

.signup-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 680px;
}

.signup-summary {
  position: relative;
  overflow: hidden;
  padding: 45px 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 78, 155, 0.25), transparent 18rem),
    radial-gradient(circle at 0 100%, rgba(85, 221, 255, 0.12), transparent 20rem),
    linear-gradient(145deg, #1a1736, #13152d);
}

.signup-summary::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -170px;
  bottom: -120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.025), 0 0 0 100px rgba(255, 255, 255, 0.012);
}

.signup-summary__mark {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
}

.signup-summary h2 {
  margin-bottom: 14px;
  font-size: 43px;
}

.signup-summary > p:not(.modal__eyebrow) {
  color: var(--text-soft);
}

.signup-summary ul {
  display: grid;
  gap: 11px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 13px;
}

.signup-summary li {
  position: relative;
  padding-left: 26px;
}

.signup-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.signup-summary__disclosure {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 16px;
  border: 1px solid rgba(255, 202, 103, 0.2);
  border-radius: 14px;
  background: rgba(255, 202, 103, 0.07);
}

.signup-summary__disclosure strong {
  display: block;
  margin-bottom: 4px;
  color: var(--warning);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signup-summary__disclosure p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
}

.signup-form-wrap {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 44px 42px;
  background: #101326;
}

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

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #0c0f20;
  color: var(--text);
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field select {
  appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23aeb4ca' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.form-field input::placeholder {
  color: #676e8a;
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(178, 94, 255, 0.72);
  background-color: #0f1225;
  box-shadow: 0 0 0 4px rgba(178, 94, 255, 0.1);
}

.form-field.is-invalid input,
.form-field.is-invalid select {
  border-color: rgba(255, 111, 136, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 111, 136, 0.08);
}

.form-hint,
.field-error {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1.45;
}

.form-hint {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: #ff94a7;
  font-weight: 650;
}

.field-error:empty {
  display: none;
}

.consent-stack {
  display: grid;
  gap: 10px;
  margin: 22px 0 20px;
}

.consent-box {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--text-soft);
  font-size: 10.8px;
  line-height: 1.55;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.consent-box:hover {
  border-color: var(--line-strong);
}

.consent-box--marketing {
  border-color: rgba(187, 100, 255, 0.18);
  background: rgba(163, 76, 255, 0.045);
}

.consent-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.consent-box__control {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: #090c1a;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.consent-box input:focus-visible + .consent-box__control {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.consent-box input:checked + .consent-box__control {
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 8px 18px rgba(180, 77, 255, 0.25);
}

.consent-box input:checked + .consent-box__control::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-box.is-invalid {
  border-color: rgba(255, 111, 136, 0.65);
}

.consent-box a {
  color: #dfc2ff;
}

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

.button--submit {
  min-height: 53px;
  margin-top: 4px;
}

.button__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.button--submit.is-loading .button__spinner {
  display: block;
}

.form-signature {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-status {
  margin-bottom: 16px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 12px;
}

.form-status--error {
  border: 1px solid rgba(255, 111, 136, 0.25);
  background: rgba(255, 111, 136, 0.08);
  color: #ffb0be;
}

.form-status--success {
  border: 1px solid rgba(84, 229, 167, 0.24);
  background: rgba(84, 229, 167, 0.08);
  color: #a4f5cf;
}

.signup-complete {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
}

.signup-complete__icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: rgba(84, 229, 167, 0.1);
  color: var(--green);
  font-size: 32px;
}

.signup-complete h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.signup-complete p {
  max-width: 420px;
  margin: 0 auto 22px;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Privacy banner
   -------------------------------------------------------------------------- */

.privacy-banner {
  position: fixed;
  z-index: 2200;
  right: 22px;
  bottom: 22px;
  width: min(520px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(13, 16, 31, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.privacy-banner__copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.privacy-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.5;
}

.privacy-banner__copy a {
  color: #d8baff;
}

.privacy-banner__actions {
  display: grid;
  gap: 7px;
}

/* --------------------------------------------------------------------------
   Legal and information pages
   -------------------------------------------------------------------------- */

.inner-page {
  background:
    radial-gradient(circle at 80% 0, rgba(180, 77, 255, 0.12), transparent 28rem),
    var(--bg);
}

.inner-page .site-header {
  border-bottom-color: var(--line);
}

.legal-hero {
  padding: 82px 0 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero__inner {
  max-width: 860px;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  padding: 68px 0 108px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  padding: 9px 11px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  border-left-color: var(--purple);
  color: #fff;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 110px;
  margin-bottom: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  font-size: 14px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-content a {
  color: #d7b6ff;
}

.info-callout {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(190, 119, 255, 0.2);
  border-radius: 16px;
  background: rgba(164, 76, 255, 0.06);
}

.info-callout--warning {
  border-color: rgba(255, 202, 103, 0.22);
  background: rgba(255, 202, 103, 0.06);
}

.info-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

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

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
  padding: 0 !important;
  list-style: none;
}

.state-grid li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

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

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.info-card h2,
.info-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

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

/* --------------------------------------------------------------------------
   Game page
   -------------------------------------------------------------------------- */

.game-page {
  min-height: 100vh;
  background: #060812;
}

.game-page__header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 8, 18, 0.92);
  backdrop-filter: blur(16px);
}

.game-page__header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.game-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.game-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-page__disclosure {
  border-bottom: 1px solid var(--line);
  background: rgba(84, 229, 167, 0.045);
  color: var(--text-soft);
  font-size: 11px;
  text-align: center;
}

.game-page__disclosure .container {
  padding-block: 9px;
}

.game-main {
  padding: 34px 0 48px;
}

.game-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.game-toolbar__eyebrow {
  margin-bottom: 5px;
  color: #c79aff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-toolbar h1 {
  margin-bottom: 5px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.game-toolbar__meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.game-toolbar__actions {
  display: flex;
  gap: 8px;
}

.game-frame-shell {
  position: relative;
  width: 100%;
  min-height: min(72vh, 760px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #0b0e1d;
  box-shadow: var(--shadow-md);
}

.game-frame-shell:fullscreen {
  border: 0;
  border-radius: 0;
}

.game-frame {
  width: 100%;
  height: min(72vh, 760px);
  display: block;
  border: 0;
  background: #090b18;
}

.game-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle, rgba(180, 77, 255, 0.12), transparent 22rem),
    #0a0c19;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-loader.is-done {
  visibility: hidden;
  opacity: 0;
}

.game-loader__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #c98cff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.game-loader p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
}

.game-loader__slow {
  max-width: 380px;
  text-align: center;
}

.game-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.game-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Error page
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-page__code {
  margin-bottom: 10px;
  color: #d2a8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.error-page p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 34px;
  }

  .hero-showcase {
    transform: scale(0.9);
    transform-origin: center;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-section__grid,
  .faq-layout {
    gap: 48px;
  }

  .transparency-panel {
    gap: 44px;
    padding: 50px;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr repeat(3, 0.8fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .site-header__actions > .button {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(12, 15, 30, 0.98);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  }

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

  .site-nav a {
    padding: 13px 14px;
    border-radius: 11px;
  }

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

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__content {
    max-width: 760px;
    text-align: center;
  }

  .eyebrow,
  .hero__actions,
  .trust-list {
    justify-content: center;
    margin-inline: auto;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero-showcase {
    width: min(100%, 600px);
    min-height: 500px;
    margin-inline: auto;
    transform: scale(0.9);
  }

  .proof-strip__grid > div {
    padding-inline: 22px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .value-section__grid,
  .faq-layout,
  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .value-section__intro,
  .faq-intro {
    position: static;
  }

  .value-section__intro {
    max-width: 680px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-card {
    min-height: 0;
  }

  .transparency-panel {
    padding: 42px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .signup-layout {
    grid-template-columns: 1fr;
  }

  .signup-summary {
    padding: 34px;
  }

  .signup-summary ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup-form-wrap {
    max-height: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .legal-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .disclosure-bar__inner {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 4px 7px;
    padding-block: 7px;
    line-height: 1.35;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 16px;
  }

  .site-nav {
    left: 15px;
    right: 15px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 52px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
    text-align: left;
  }

  .hero-showcase {
    min-height: 390px;
    transform: scale(0.72);
    transform-origin: top center;
    margin-bottom: -92px;
  }

  .showcase-fact {
    right: 0;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child,
  .proof-strip__grid > div:last-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section h2 {
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .section-heading-row {
    margin-bottom: 30px;
  }

  .filter-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex: 0 0 auto;
  }

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

  .game-card {
    border-radius: 17px;
  }

  .game-card__body {
    min-height: 132px;
    padding: 14px;
  }

  .game-card h3 {
    font-size: 15px;
  }

  .game-card p {
    display: none;
  }

  .game-card__meta {
    display: grid;
    gap: 2px;
    font-size: 8.5px;
  }

  .game-card__play {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:nth-child(2),
  .value-card:nth-child(4) {
    min-height: 0;
    transform: none;
  }

  .value-card__icon {
    margin-bottom: 24px;
  }

  .transparency-panel {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .faq-list summary {
    min-height: 76px;
    padding-right: 44px;
    font-size: 15px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 10px 15px;
    border-top: 1px solid var(--line-strong);
    background: rgba(8, 10, 22, 0.94);
    backdrop-filter: blur(16px);
  }

  .modal {
    padding: 10px;
  }

  .modal__panel {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .modal__panel--age {
    padding: 34px 24px;
  }

  .signup-summary {
    padding: 30px 24px;
  }

  .signup-summary h2 {
    padding-right: 36px;
    font-size: 37px;
  }

  .signup-summary ul {
    grid-template-columns: 1fr;
    margin: 22px 0;
  }

  .signup-summary__disclosure {
    margin-top: 22px;
  }

  .signup-form-wrap {
    padding: 30px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .privacy-banner {
    left: 12px;
    right: 12px;
    bottom: 84px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .privacy-banner__actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-hero {
    padding: 58px 0 36px;
  }

  .legal-layout {
    padding: 42px 0 80px;
  }

  .legal-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }

  .state-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .game-page__header-inner {
    min-height: 64px;
  }

  .game-page__header .brand__text {
    display: none;
  }

  .game-main {
    padding-top: 22px;
  }

  .game-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .game-toolbar__actions {
    width: 100%;
  }

  .game-toolbar__actions .button {
    flex: 1;
  }

  .game-frame-shell,
  .game-frame {
    min-height: 68vh;
    height: 68vh;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-card__body {
    min-height: 126px;
    padding: 12px;
  }

  .game-card__badge {
    top: 10px;
    left: 10px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .privacy-banner__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .disclosure-bar,
  .site-header,
  .site-footer,
  .mobile-cta,
  .privacy-banner,
  .legal-nav {
    display: none !important;
  }

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

  .legal-layout {
    display: block;
    padding: 0;
  }

  .legal-content p,
  .legal-content li {
    color: #222;
  }
}
