:root {
  --cream: #faf5ee;
  --ivory: #fffdf9;
  --white: #ffffff;
  --maroon: #4e1533;
  --maroon-deep: #3a0f26;
  --saffron: #e87b0c;
  --saffron-light: #f5a623;
  --teal: #15574a;
  --teal-soft: #1e7a68;
  --lotus: #f2c6d0;
  --text: #2c2419;
  --muted: #6b6358;
  --line: rgba(78, 21, 51, 0.1);
  --shadow: 0 16px 40px rgba(58, 15, 38, 0.1);
  --shadow-lg: 0 24px 60px rgba(58, 15, 38, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

/* ===== Animated background ===== */
.lotus-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.lotus-bg__mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(
      ellipse 55% 45% at 18% 22%,
      rgba(242, 198, 208, 0.55),
      transparent 58%
    ),
    radial-gradient(
      ellipse 50% 42% at 82% 18%,
      rgba(232, 123, 12, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 48% 40% at 72% 82%,
      rgba(21, 87, 74, 0.16),
      transparent 52%
    ),
    radial-gradient(
      ellipse 40% 35% at 8% 78%,
      rgba(78, 21, 51, 0.1),
      transparent 50%
    ),
    linear-gradient(165deg, var(--cream) 0%, var(--ivory) 45%, #f3ebe0 100%);
  animation: lotus-mesh-shift 18s ease-in-out infinite alternate;
}

.lotus-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 21, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 21, 51, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 15%, transparent 72%);
  animation: lotus-grid-drift 32s linear infinite;
}

.lotus-bg__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 123, 12, 0.14);
  animation: lotus-ring-spin var(--dur, 28s) linear infinite;
}

.lotus-bg__ring--a {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  --dur: 36s;
}

.lotus-bg__ring--b {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: -60px;
  border-color: rgba(21, 87, 74, 0.16);
  --dur: 24s;
  animation-direction: reverse;
}

.lotus-bg__petal {
  position: absolute;
  width: var(--w, 18px);
  height: var(--h, 28px);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(
    135deg,
    rgba(242, 198, 208, 0.75),
    rgba(232, 123, 12, 0.35)
  );
  opacity: var(--op, 0.45);
  transform: rotate(var(--rot, 25deg));
  animation: lotus-petal-float var(--dur, 16s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(0.3px);
}

.lotus-bg__orb {
  position: absolute;
  width: var(--sz, 10px);
  height: var(--sz, 10px);
  border-radius: 50%;
  background: var(--c, rgba(232, 123, 12, 0.55));
  box-shadow: 0 0 18px var(--glow, rgba(232, 123, 12, 0.35));
  animation: lotus-orb-pulse var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes lotus-mesh-shift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(2%, -1.5%);
  }
}

@keyframes lotus-grid-drift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(52px);
  }
}

@keyframes lotus-ring-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lotus-petal-float {
  0%,
  100% {
    transform: rotate(var(--rot, 25deg)) translate(0, 0) scale(1);
    opacity: var(--op, 0.45);
  }
  33% {
    transform: rotate(calc(var(--rot, 25deg) + 18deg)) translate(24px, -32px)
      scale(1.08);
    opacity: calc(var(--op, 0.45) * 1.3);
  }
  66% {
    transform: rotate(calc(var(--rot, 25deg) - 12deg)) translate(-18px, 22px)
      scale(0.92);
  }
}

@keyframes lotus-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

/* ===== Foreground motion ===== */
@keyframes lotus-rise {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lotus-reveal {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lotus-hero-glow {
  0%,
  100% {
    box-shadow:
      0 24px 60px rgba(58, 15, 38, 0.14),
      0 0 0 0 rgba(232, 123, 12, 0);
  }
  50% {
    box-shadow:
      0 28px 70px rgba(58, 15, 38, 0.18),
      0 0 0 6px rgba(232, 123, 12, 0.12);
  }
}

@keyframes lotus-img-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes lotus-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes lotus-perk-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes lotus-stat-pulse {
  0%,
  100% {
    transform: scale(1);
    color: var(--saffron);
  }
  50% {
    transform: scale(1.06);
    color: var(--saffron-light);
  }
}

@keyframes lotus-promo-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes lotus-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 123, 12, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 123, 12, 0);
  }
}

@keyframes lotus-strip-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.hero-content > * {
  animation: lotus-rise 0.75s ease-out both;
}

.hero-kicker {
  animation-delay: 0.05s !important;
}

.hero h1 {
  animation-delay: 0.15s !important;
}

.hero-lead {
  animation-delay: 0.25s !important;
}

.hero-actions {
  animation-delay: 0.35s !important;
}

.hero-perks {
  animation-delay: 0.45s !important;
}

.hero-visual {
  animation:
    lotus-rise 0.85s ease-out 0.2s both,
    lotus-hero-glow 4s ease-in-out 1s infinite;
}

.hero-visual img {
  animation: lotus-img-breathe 8s ease-in-out infinite;
  transform-origin: center center;
}

.perk {
  animation: lotus-perk-bob 4s ease-in-out infinite;
}

.perk:nth-child(1) {
  animation-delay: 0s;
}
.perk:nth-child(2) {
  animation-delay: 0.6s;
}
.perk:nth-child(3) {
  animation-delay: 1.2s;
}
.perk:nth-child(4) {
  animation-delay: 1.8s;
}

.perk-icon {
  animation: lotus-badge-pulse 2.8s ease-in-out infinite;
}

.stat strong {
  animation: lotus-stat-pulse 3s ease-in-out infinite;
}

.stat:nth-child(2) strong {
  animation-delay: 0.5s;
}
.stat:nth-child(3) strong {
  animation-delay: 1s;
}

.promo-card {
  transition: transform 0.25s ease, background 0.25s ease;
}

.promo-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.14);
}

.step-card,
.feature-panel,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover,
.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
}

.reveal.is-visible {
  animation: lotus-reveal 0.7s ease-out forwards;
}

.reveal-delay-1 {
  animation-delay: 0.1s !important;
}
.reveal-delay-2 {
  animation-delay: 0.2s !important;
}
.reveal-delay-3 {
  animation-delay: 0.3s !important;
}
.reveal-delay-4 {
  animation-delay: 0.4s !important;
}

.brand img {
  animation: lotus-perk-bob 5s ease-in-out infinite;
}

.age-card {
  animation: lotus-rise 0.5s ease-out both;
}

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

  .lotus-bg__mesh,
  .lotus-bg__grid,
  .lotus-bg__ring,
  .lotus-bg__petal,
  .lotus-bg__orb {
    animation: none !important;
  }

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

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--maroon);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--maroon);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(58, 15, 38, 0.72);
  backdrop-filter: blur(8px);
}

.age-overlay.is-hidden {
  display: none;
}

.age-card {
  width: min(440px, 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.age-card img {
  margin: 0 auto 1rem;
}

.age-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--maroon);
  margin: 0 0 0.75rem;
}

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

.age-actions {
  display: grid;
  gap: 0.65rem;
}

.age-no {
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

/* Top strip */
.top-strip {
  background: linear-gradient(
    90deg,
    var(--maroon-deep) 0%,
    var(--maroon) 35%,
    #6b2248 50%,
    var(--maroon) 65%,
    var(--maroon-deep) 100%
  );
  background-size: 200% 100%;
  animation: lotus-strip-flow 8s linear infinite;
  color: rgba(255, 253, 249, 0.92);
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  text-align: center;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.5rem;
  padding: 0 0.45rem;
  border-radius: 6px;
  background: var(--saffron);
  color: var(--maroon-deep);
  font-weight: 700;
  font-size: 0.75rem;
  animation: lotus-badge-pulse 2.5s ease-in-out infinite;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(58, 15, 38, 0.06);
  animation: lotus-rise 0.6s ease-out both;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--maroon);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--saffron);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(58, 15, 38, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

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

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}

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

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 123, 12, 0.28);
  background-image: linear-gradient(
    110deg,
    var(--saffron) 0%,
    var(--saffron-light) 45%,
    #ffbe4d 50%,
    var(--saffron-light) 55%,
    var(--saffron) 100%
  );
  background-size: 220% 100%;
  animation: lotus-shimmer 4s linear infinite;
}

.btn-primary:hover {
  background: var(--saffron-light);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--line);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
  background: transparent;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(21, 87, 74, 0.08);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  color: var(--maroon);
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.perk {
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}

.perk-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 123, 12, 0.12);
  color: var(--saffron);
  font-size: 1rem;
}

.perk strong {
  display: block;
  font-size: 0.82rem;
  color: var(--maroon);
}

.perk span {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-photo {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.content-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-photo figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--white);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.section--cream {
  background: transparent;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  max-width: 560px;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--maroon);
  margin: 0 0 0.65rem;
}

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

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.game-card {
  border-radius: var(--radius);
  background: var(--ivory);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.game-card-body {
  padding: 1rem 1rem 1.15rem;
}

.game-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.game-tag--new {
  background: rgba(232, 123, 12, 0.15);
  color: var(--saffron);
}

.game-tag--hot {
  background: rgba(242, 198, 208, 0.55);
  color: var(--maroon);
}

.game-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--maroon);
}

.game-card p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.game-card .btn {
  width: 100%;
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--saffron);
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.feature-panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  font-family: var(--font-serif);
  color: var(--maroon);
  margin: 0 0 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "✦";
  color: var(--saffron);
  flex-shrink: 0;
}

.signup-box {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(21, 87, 74, 0.06);
  font-size: 0.9rem;
  color: var(--text);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(78, 21, 51, 0.12);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  color: var(--maroon);
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Promo band */
.promo-band {
  padding: 3rem;
  background: linear-gradient(
    -45deg,
    var(--maroon-deep),
    var(--maroon),
    var(--teal),
    #1a6b5c,
    var(--maroon-deep)
  );
  background-size: 320% 320%;
  animation: lotus-promo-flow 10s ease infinite;
  color: var(--ivory);
  border-radius: var(--radius-lg);
  margin-inline: auto;
  width: min(var(--max), calc(100% - 2.5rem));
  position: relative;
  overflow: hidden;
}

.promo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: lotus-shimmer 6s linear infinite;
  pointer-events: none;
}

.promo-band .section-label {
  color: var(--saffron-light);
}

.promo-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 2rem;
  max-width: 28rem;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.promo-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.promo-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.promo-card p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.88;
}

.promo-disclaimer {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 0.65rem;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: var(--maroon);
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--saffron);
  transition: transform 0.2s;
}

.faq-item.is-open button::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Responsible */
.responsible-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.responsible-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.responsible-list li {
  margin-bottom: 0.45rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.trust-badge {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.responsible-org-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--maroon);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.responsible-org-link:hover {
  color: var(--teal);
  border-color: rgba(21, 87, 74, 0.35);
  box-shadow: var(--shadow);
}

.footer-responsible {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-responsible .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer-responsible p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.85;
}

.footer-responsible .responsible-links {
  margin: 0;
}

.footer-responsible .responsible-org-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 253, 249, 0.92);
}

.footer-responsible .responsible-org-link:hover {
  color: var(--saffron-light);
  border-color: rgba(245, 166, 35, 0.45);
}

.age-notice-box {
  display: flex;
  gap: 0.75rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: rgba(232, 123, 12, 0.08);
  border: 1px solid rgba(232, 123, 12, 0.2);
  margin-top: 1.25rem;
}

.responsible-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
}

.responsible-panel h3 {
  margin: 0 0 0.65rem;
  color: var(--maroon);
}

.responsible-panel p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2rem;
  background: rgba(255, 253, 249, 0.65);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap > * {
  animation: lotus-rise 0.7s ease-out both;
}

.page-hero h1 {
  animation-delay: 0.1s !important;
}

.page-hero p {
  animation-delay: 0.2s !important;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--maroon);
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

.prose {
  padding: 2.5rem 0 4rem;
}

.prose h2 {
  font-family: var(--font-serif);
  color: var(--maroon);
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

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

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

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

/* Footer */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(255, 253, 249, 0.88);
}

.footer-grid {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.5rem;
}

.site-footer .brand {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--saffron-light);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: rgba(255, 253, 249, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--saffron-light);
}

.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0.8;
  margin-top: 0.75rem;
}

.footer-age-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.88rem;
}

.footer-disclaimer {
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-disclaimer p {
  margin: 0 0 0.65rem;
}

.footer-disclaimer a {
  color: var(--saffron-light);
}

.footer-bottom {
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--maroon-deep);
  color: var(--ivory);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-cookie-decline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Game modal */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.game-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 15, 38, 0.75);
}

.game-modal-panel {
  position: relative;
  width: min(960px, 100%);
  height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--maroon-deep);
  box-shadow: var(--shadow-lg);
}

.game-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--maroon);
  color: var(--ivory);
}

.game-modal-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.game-modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--ivory);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.game-modal-frame {
  flex: 1;
  border: none;
  width: 100%;
  background: #000;
}

.game-modal-note {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 253, 249, 0.75);
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero-grid,
  .about-split,
  .responsible-block {
    grid-template-columns: 1fr;
  }

  .hero-perks,
  .steps-grid,
  .promo-cards,
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    z-index: 160;
  }

  .header-actions {
    position: relative;
    z-index: 170;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 170;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 150;
    width: min(280px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    background: var(--ivory);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.25s;
  }

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

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

@media (max-width: 520px) {
  .games-grid,
  .hero-perks,
  .steps-grid,
  .promo-cards,
  .about-stats {
    grid-template-columns: 1fr;
  }
}
