:root {
  --bg: #14081C;
  --surface: #22112E;
  --surface-2: #2E183D;
  --accent: #FF5CA8;
  --secondary: #6EFFC4;
  --text: #F7F0FF;
  --muted: #B9A8C9;
  --btn-on-secondary: #06261A;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --header-h: 76px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(255, 92, 168, 0.22), transparent 55%),
    radial-gradient(800px 480px at 95% 5%, rgba(110, 255, 196, 0.14), transparent 50%),
    radial-gradient(700px 420px at 50% 100%, rgba(255, 92, 168, 0.1), transparent 55%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(20, 8, 28, 0.78);
  border-bottom: 1px solid rgba(255, 92, 168, 0.14);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand:hover { color: var(--text); }

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 0 0 2px rgba(110, 255, 196, 0.25);
}

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

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.header-actions [data-auth-guest] {
  display: flex;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  padding: 12px 11px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.player-chip {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 92, 168, 0.25), rgba(110, 255, 196, 0.18));
  border: 1px solid rgba(110, 255, 196, 0.35);
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.player-chip.is-visible {
  display: inline-flex;
}

.player-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #FF5CA8, #FF8AC4);
  color: #2A0A1A;
  box-shadow: 0 10px 28px rgba(255, 92, 168, 0.35);
}

.btn-primary:hover {
  color: #2A0A1A;
  box-shadow: 0 14px 34px rgba(255, 92, 168, 0.45);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--btn-on-secondary);
  box-shadow: 0 10px 28px rgba(110, 255, 196, 0.22);
}

.btn-secondary:hover {
  color: var(--btn-on-secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(185, 168, 201, 0.35);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 92, 168, 0.08);
}

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

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head p {
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: blob-float 10s ease-in-out infinite;
}

.hero::before {
  width: 220px;
  height: 220px;
  background: rgba(255, 92, 168, 0.18);
  top: 8%;
  left: -40px;
}

.hero::after {
  width: 180px;
  height: 180px;
  background: rgba(110, 255, 196, 0.14);
  bottom: 5%;
  right: -30px;
  animation-delay: -4s;
}

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

.hero h1 span {
  background: linear-gradient(120deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

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

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

.stat {
  background: rgba(34, 17, 46, 0.8);
  border: 1px solid rgba(255, 92, 168, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem 0.9rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 36% 64% 42% 58% / 48% 38% 62% 52%;
  box-shadow: var(--shadow);
  border: 3px solid rgba(110, 255, 196, 0.25);
  animation: morph 12s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.blob-orbit {
  position: absolute;
  inset: -8%;
  pointer-events: none;
  z-index: -1;
}

.blob-orbit span {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: blob-float 8s ease-in-out infinite;
}

.blob-orbit span:nth-child(1) {
  width: 70px;
  height: 70px;
  background: rgba(255, 92, 168, 0.45);
  top: 8%;
  right: 4%;
}

.blob-orbit span:nth-child(2) {
  width: 48px;
  height: 48px;
  background: rgba(110, 255, 196, 0.45);
  bottom: 12%;
  left: 2%;
  animation-delay: -2s;
}

.blob-orbit span:nth-child(3) {
  width: 28px;
  height: 28px;
  background: rgba(247, 240, 255, 0.35);
  top: 48%;
  right: -2%;
  animation-delay: -5s;
}

/* Games */
.games-section {
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255, 92, 168, 0.08), transparent 60%),
    transparent;
}

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

.game-card {
  background: var(--surface);
  border: 1px solid rgba(185, 168, 201, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(255, 92, 168, 0.4);
  box-shadow: 0 18px 44px rgba(255, 92, 168, 0.18);
}

.game-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.4deg);
}

.game-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface-2);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.game-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.game-card__body h3 {
  margin: 0;
  color: var(--text);
}

.game-card__body p {
  flex: 1;
  font-size: 0.96rem;
}

.game-card__body .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.games-grid .game-card:nth-child(4),
.games-grid .game-card:nth-child(5) {
  grid-column: span 1;
}

/* Feature split */
.feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(34, 17, 46, 0.95), rgba(46, 24, 61, 0.75));
  border: 1px solid rgba(110, 255, 196, 0.14);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: 1.5rem;
  overflow: hidden;
}

.feature-media {
  position: relative;
}

.feature-media img {
  width: 100%;
  border-radius: 42% 58% 55% 45% / 45% 40% 60% 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid rgba(255, 92, 168, 0.28);
  animation: morph 14s ease-in-out infinite reverse;
}

.feature-copy .check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--accent), var(--secondary));
  margin-top: 0.15rem;
  box-shadow: 0 0 16px rgba(110, 255, 196, 0.25);
}

.check-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.check-list span {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(185, 168, 201, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 255, 196, 0.35);
}

.step::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -20px;
  top: -24px;
  background: rgba(255, 92, 168, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin-bottom: 0.45rem;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.benefit {
  background: rgba(34, 17, 46, 0.85);
  border: 1px solid rgba(185, 168, 201, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 92, 168, 0.35);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--btn-on-secondary);
  background: linear-gradient(135deg, var(--secondary), #A8FFE0);
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px rgba(110, 255, 196, 0.2);
}

.benefit:nth-child(2) .benefit-icon,
.benefit:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, var(--accent), #FF9AC8);
  color: #2A0A1A;
  box-shadow: 0 8px 22px rgba(255, 92, 168, 0.25);
}

/* CTA */
.cta {
  position: relative;
  border-radius: calc(var(--radius-lg) + 10px);
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 640px;
  background: radial-gradient(circle at center, rgba(20, 8, 28, 0.72) 0%, rgba(20, 8, 28, 0.55) 70%, transparent 100%);
}

.cta-overlay h2 {
  color: var(--text);
}

.cta-overlay p {
  color: #E8DCF5;
  margin-bottom: 1.4rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 92, 168, 0.12);
  background: rgba(14, 5, 20, 0.65);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.9rem;
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.footer-col a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(185, 168, 201, 0.12);
  color: var(--muted);
  font-size: 0.88rem;
}

.disclaimer {
  color: var(--secondary);
  font-weight: 700;
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero p {
  max-width: 40rem;
  font-size: 1.1rem;
}

.content-card {
  background: var(--surface);
  border: 1px solid rgba(185, 168, 201, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 4rem;
}

.content-card h2 {
  margin-top: 1.6rem;
  font-size: 1.45rem;
}

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

.content-card ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.content-card li {
  margin-bottom: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card,
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(185, 168, 201, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-display);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(185, 168, 201, 0.22);
  background: rgba(20, 8, 28, 0.55);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 168, 0.18);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-note {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(110, 255, 196, 0.12);
  border: 1px solid rgba(110, 255, 196, 0.3);
  color: var(--secondary);
  font-weight: 700;
}

.contact-note.is-visible {
  display: block;
}

/* Overlays / modals */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 2, 14, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 80;
}

.overlay.is-open {
  display: flex;
  animation: fade-in 0.25s ease;
}

.modal {
  width: min(100%, 440px);
  background: linear-gradient(160deg, #2A1538, #1A0C24);
  border: 1px solid rgba(255, 92, 168, 0.28);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 1.7rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  animation: pop-in 0.3s ease;
}

.modal .brand {
  margin-bottom: 1rem;
}

.modal h2 {
  margin-bottom: 0.4rem;
}

.modal > p {
  margin-bottom: 1.1rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 240, 255, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: rgba(20, 8, 28, 0.55);
  padding: 0.35rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.auth-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}

.auth-tab.is-active {
  background: linear-gradient(135deg, rgba(255, 92, 168, 0.35), rgba(110, 255, 196, 0.22));
  color: var(--text);
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.auth-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 920px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  background: rgba(34, 17, 46, 0.96);
  border: 1px solid rgba(110, 255, 196, 0.28);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.cookie-banner.is-visible {
  display: flex;
  animation: slide-up 0.35s ease;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.92rem;
}

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

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes blob-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-14px) translateX(8px); }
}

@keyframes morph {
  0%, 100% { border-radius: 36% 64% 42% 58% / 48% 38% 62% 52%; }
  33% { border-radius: 58% 42% 60% 40% / 40% 55% 45% 60%; }
  66% { border-radius: 44% 56% 38% 62% / 58% 42% 58% 42%; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pop-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

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

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

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

  .footer-grid {
    gap: 1.5rem;
  }
}

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

  .nav {
    position: absolute;
    top: calc(var(--header-h) + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(34, 17, 46, 0.98);
    border: 1px solid rgba(255, 92, 168, 0.22);
    border-radius: var(--radius-md);
    display: none;
    margin: 0;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(255, 92, 168, 0.1);
  }

  .header-actions {
    margin-left: 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-stats,
  .benefits,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .age-actions,
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

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