:root {
  --bg: #070317;
  --bg-deep: #12072c;
  --surface: rgba(18, 11, 44, 0.78);
  --surface-strong: rgba(14, 7, 36, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(174, 133, 255, 0.22);
  --line-strong: rgba(255, 168, 64, 0.34);
  --text: #f8f5ff;
  --muted: #b9b0d7;
  --accent: #ff4fb6;
  --accent-2: #ff9d39;
  --accent-3: #52e8ff;
  --success: #90ffbf;
  --max-width: 1180px;
  --radius: 30px;
  --radius-sm: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", Tahoma, Verdana, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(14, 8, 36, 0.72) 0%, rgba(8, 4, 23, 0.8) 52%, rgba(5, 2, 15, 0.88) 100%),
    radial-gradient(circle at 14% 10%, rgba(65, 36, 157, 0.42), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(0, 196, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(255, 92, 166, 0.1), transparent 30%),
    url("images/site-background-atmosphere.jpg") center top / cover fixed no-repeat,
    linear-gradient(180deg, #160733 0%, #090319 52%, #05020f 100%);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -12rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 47, 212, 0.28), rgba(90, 47, 212, 0));
  filter: blur(6px);
}

body::after {
  left: -12rem;
  bottom: 5rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 213, 255, 0.14), rgba(0, 213, 255, 0));
}

body.has-age-gate {
  overflow: hidden;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.rain-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.rain-drop {
  position: absolute;
  top: -18vh;
  left: var(--rain-left, 50%);
  width: var(--rain-width, 2px);
  height: var(--rain-height, 72px);
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(180deg, rgba(82, 232, 255, 0), rgba(190, 246, 255, 0.9) 45%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 10px rgba(82, 232, 255, 0.12);
  transform: translate3d(0, -16vh, 0);
  will-change: transform, opacity;
  animation: rain-fall var(--rain-duration, 1.5s) linear infinite;
  animation-delay: var(--rain-delay, 0s);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section--tight {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-3);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.page-intro h1,
.legal-hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.lead,
.section-heading p,
.page-intro p,
.legal-hero p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 3, 23, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 157, 57, 0.9), rgba(255, 79, 182, 0.78) 45%, rgba(82, 232, 255, 0.78)),
    url("images/logo.png") center/cover no-repeat;
  box-shadow:
    0 14px 30px rgba(255, 79, 182, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.header-note {
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(255, 79, 182, 0.08), rgba(255, 157, 57, 0.1), rgba(82, 232, 255, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1.2rem;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(3rem, 8vw, 5.7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 59ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: fit-content;
  max-width: 100%;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #834bff 58%, var(--accent-2));
  box-shadow:
    0 16px 40px rgba(255, 79, 182, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.button-secondary {
  background: rgba(82, 232, 255, 0.12);
  color: var(--text);
  border-color: rgba(82, 232, 255, 0.2);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(82, 232, 255, 0.08);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-pill {
  min-height: 92px;
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  box-shadow: var(--shadow);
}

.trust-pill strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  min-height: 540px;
  padding: 1.25rem;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(22, 9, 54, 0.92), rgba(8, 4, 23, 0.96));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 4, 20, 0.1), rgba(7, 4, 20, 0.18) 38%, rgba(7, 4, 20, 0.46) 72%, rgba(7, 4, 20, 0.62) 100%),
    linear-gradient(90deg, rgba(7, 4, 20, 0.38), transparent 42%, rgba(7, 4, 20, 0.18) 100%);
}

.hero-stage__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(9, 5, 25, 0.18), rgba(13, 4, 31, 0.76)),
    radial-gradient(circle at 30% 24%, rgba(95, 66, 255, 0.34), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(255, 79, 182, 0.32), transparent 26%),
    url("images/hero-neon-players.jpg") 72% center/cover no-repeat;
}

.hero-stage__grid {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 8;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel-card,
.info-card,
.feature-tile,
.game-card,
.policy-card,
.legal-section,
.contact-card,
.story-copy,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.panel-card {
  width: 100%;
  padding: 1.2rem;
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.metric-card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(12, 7, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  color: var(--accent-3);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 0.45rem;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  letter-spacing: 0.05em;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card {
  position: relative;
  z-index: 2;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(8, 5, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: drift 6s ease-in-out infinite;
}

.float-card--top {
  grid-column: 9 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  max-width: 14rem;
}

.float-card--mid {
  grid-column: 1 / span 4;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  max-width: 14rem;
  animation-delay: -2s;
}

.float-card--bottom {
  grid-column: 8 / -1;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  max-width: 14rem;
  animation-delay: -4s;
}

.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.info-grid,
.feature-strip,
.catalog-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.feature-tile,
.game-card,
.policy-card,
.contact-card,
.story-copy {
  padding: 1.35rem;
  border-radius: 26px;
  backdrop-filter: blur(10px);
}

.info-card h3,
.feature-tile h3,
.game-card h3,
.policy-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card p,
.feature-tile p,
.game-card p,
.policy-card p,
.story-copy p,
.support-stack p,
.footer-copy p {
  margin: 0;
  color: var(--muted);
}

.feature-tile p,
.game-card p,
.policy-card p,
.legal-section p,
.legal-section li {
  line-height: 1.65;
}

.info-card strong {
  display: inline-flex;
  min-width: 2.3rem;
  margin-bottom: 1rem;
  color: var(--accent-2);
  font-size: 1.9rem;
  line-height: 1;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
}

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

.info-grid > *,
.feature-strip > *,
.catalog-grid > *,
.policy-grid > *,
.footer-grid > * {
  min-width: 0;
  height: 100%;
}

.feature-tile,
.policy-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-tile__media,
.game-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 79, 182, 0.16), rgba(82, 232, 255, 0.06)),
    var(--tile-image, none) center/cover no-repeat;
}

.feature-tile__media {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.game-card__media {
  aspect-ratio: 16 / 11;
  margin-bottom: 1rem;
}

.media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 3, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tile .button {
  margin-top: auto;
  align-self: flex-start;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story-media {
  min-height: 430px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 4, 26, 0.2), rgba(8, 3, 22, 0.82)),
    radial-gradient(circle at 25% 25%, rgba(82, 232, 255, 0.25), transparent 18%),
    radial-gradient(circle at 72% 18%, rgba(255, 79, 182, 0.26), transparent 16%),
    url("images/story-light-trails.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.story-media::after {
  content: "NEON EVENINGS / BALANCED PLAY / INSTANT ACCESS";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(7, 4, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy > p {
  margin-bottom: 0.2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 182, 0.18), rgba(255, 157, 57, 0.22));
  color: var(--accent-2);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.page-intro,
.legal-hero {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 79, 182, 0.08), rgba(82, 232, 255, 0.06)),
    rgba(10, 5, 25, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-intro h1,
.legal-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin-bottom: 1rem;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.game-card {
  display: flex;
  flex-direction: column;
}

.game-card__body {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
}

.game-card__body .button {
  margin-top: auto;
  width: 100%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-note,
.page-note {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  padding: 1.2rem 1.3rem;
  background: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.faq-toggle span:last-child {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-toggle span:first-child {
  flex: 1;
}

.faq-toggle:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-panel {
  padding: 0 1.3rem 1.3rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

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

.field label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

[data-contact-form] {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.contact-card .hero-actions {
  margin: 0.25rem 0 0;
}

input,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(82, 232, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(82, 232, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

textarea {
  min-height: 168px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(185, 176, 215, 0.72);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 62ch;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
  color: #effff4;
  background: rgba(58, 155, 90, 0.2);
  border: 1px solid rgba(144, 255, 191, 0.32);
}

.support-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 4, 22, 0.58), rgba(8, 4, 22, 0.86)),
    url("images/contact-orbit.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(82, 232, 255, 0.18), transparent 20%),
    radial-gradient(circle at 80% 24%, rgba(255, 79, 182, 0.22), transparent 18%);
}

.support-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
}

.support-stack h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-points {
  display: grid;
  gap: 0.75rem;
}

.support-points strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.84rem;
  color: var(--accent-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.policy-card {
  gap: 0.9rem;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.policy-card span {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 232, 255, 0.2);
  background: rgba(22, 13, 50, 0.86);
}

.game-frame-shell {
  min-height: calc(100vh - 205px);
  background: #05020f;
}

.game-frame {
  display: block;
  width: 100%;
  min-height: calc(100vh - 205px);
  border: 0;
  background: #05020f;
}

.legal-shell {
  padding: 2rem 0 5rem;
}

.legal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-section {
  padding: 1.5rem;
  border-radius: 26px;
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  line-height: 1;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 2, 14, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 0.85fr;
  gap: 1.3rem;
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  display: grid;
  gap: 0.9rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.footer-list a {
  display: inline-flex;
  width: fit-content;
  padding: 0.08rem 0;
  border-radius: 10px;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-list a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 1, 10, 0.82);
  backdrop-filter: blur(16px);
}

.age-gate__card {
  width: min(100%, 560px);
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 79, 182, 0.12), rgba(82, 232, 255, 0.08)),
    rgba(11, 6, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.age-gate__card h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 0.96;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.age-gate__card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.age-gate__list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.brand:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.faq-toggle:focus-visible,
.policy-card:focus-visible,
.footer-list a:focus-visible,
.age-gate__actions .button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(8, 4, 23, 0.9),
    0 0 0 5px rgba(82, 232, 255, 0.42);
}

.policy-card:focus-visible {
  transform: translateY(-3px);
}

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

@keyframes rain-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -16vh, 0);
  }
  12% {
    opacity: var(--rain-opacity, 0.36);
  }
  88% {
    opacity: var(--rain-opacity, 0.36);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 124vh, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    padding: 0.75rem;
    border-radius: 24px;
    background: rgba(7, 3, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-tag {
    display: none;
  }

  .hero-trust,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: auto;
  }

  .hero-stage__grid,
  .float-card--top,
  .float-card--mid,
  .float-card--bottom {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }

  .hero-stage__grid {
    grid-row: 1;
  }

  .float-card--top {
    grid-row: 2;
  }

  .float-card--mid {
    grid-row: 3;
    align-self: auto;
  }

  .float-card--bottom {
    grid-row: 4;
    align-self: auto;
  }
}

@media (max-width: 720px) {
  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .info-grid,
  .feature-strip,
  .catalog-grid,
  .policy-grid,
  .footer-grid,
  .form-grid,
  .hero-trust,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .page-intro,
  .legal-hero,
  .contact-card,
  .story-copy,
  .support-stack {
    padding: 1.35rem;
  }

  .game-frame,
  .game-frame-shell {
    min-height: 74vh;
  }

  .hero-stage {
    min-height: auto;
    padding: 1rem;
  }

  .hero-actions,
  .age-gate__actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-card .button,
  .age-gate__actions .button,
  .game-card__body .button,
  .feature-tile .button {
    width: 100%;
  }

  .feature-tile .button {
    align-self: stretch;
  }

  .faq-toggle {
    padding: 1rem 1.05rem;
    font-size: 0.92rem;
  }

  .header-note {
    font-size: 0.84rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .rain-layer {
    display: none;
  }
}
