/* Fonts loaded via <link> in HTML for faster rendering */

:root {
  --bg: #0f0b10;
  --bg-soft: #18121c;
  --bg-panel: #221828;
  --bg-card: #2a1f32;
  --rose: #c4708a;
  --rose-light: #e8a4b8;
  --champagne: #d4b896;
  --champagne-light: #f0dfc8;
  --cream: #f7f2ea;
  --text: #f3ece4;
  --text-muted: #b8a8b4;
  --line: rgba(212, 184, 150, 0.22);
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.15);
  --danger: #e07a6a;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --pad-x: max(var(--gutter), env(safe-area-inset-left, 0px));
  --pad-x-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  --header-h: 72px;
  --header-shell: 120px;
  --nav-break: 1024px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 112, 138, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(139, 92, 246, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

#site-header {
  position: sticky;
  top: 0;
  z-index: 1220;
  width: 100%;
}

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

main { flex: 1; width: 100%; min-width: 0; overflow-x: hidden; }

a {
  color: var(--champagne-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover { color: var(--rose-light); }

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x-right);
  box-sizing: border-box;
}

.site-main {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x-right);
  box-sizing: border-box;
}

/* Age ribbon */
/* Age strip (header banner) */
.age-strip {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.age-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.age-strip-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.age-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5c2438, #3a1525);
  border: 1px solid rgba(196, 112, 138, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--rose-light);
}

.age-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
}

.age-strip-text {
  flex: 1;
  min-width: 200px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.age-strip-text strong {
  color: var(--cream);
  font-weight: 600;
}

.age-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-left: auto;
}

.age-strip-tags li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--champagne-light);
}

/* Header */
.site-header {
  background: rgba(15, 11, 16, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.logo-link img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: italic;
  color: var(--champagne);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cream);
  background: var(--accent-soft);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #9d4d6a);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(196, 112, 138, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(196, 112, 138, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 184, 150, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(34, 24, 40, 0.95);
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1230;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--champagne-light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 8, 0.72);
  backdrop-filter: blur(3px);
  z-index: 1200;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.is-visible {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-play,
.btn-cookie,
.btn-age-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne), #b8956a);
  color: #1a1210;
  box-shadow: 0 8px 24px rgba(212, 184, 150, 0.25);
}

.btn-primary:hover { color: #1a1210; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn-outline:hover { background: var(--bg-panel); color: var(--cream); }

.btn-play {
  padding: 10px 22px;
  font-size: 14px;
  background: var(--accent-soft);
  color: var(--champagne-light);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.btn-play:hover { color: #fff; background: rgba(139, 92, 246, 0.35); }

/* Hero stage */
.hero-stage {
  padding: clamp(56px, 9vw, 100px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.hero-stage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 12px rgba(196, 112, 138, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-stage-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
}

.hero-stage-copy h1 em {
  font-style: italic;
  color: var(--champagne);
}

.hero-stage-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 24px;
}

.hero-perks {
  list-style: none;
  margin-bottom: 32px;
}

.hero-perks li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--champagne);
  transform: rotate(45deg);
}

.hero-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stage-visual {
  position: relative;
  overflow: hidden;
}

.hero-frame {
  position: relative;
  padding: 12px 12px 12px 0;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0 12px 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  background: rgba(34, 24, 40, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.hero-float-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}

.hero-float-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
  max-width: 10ch;
}

/* Metrics bar */
.metrics-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.metrics-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.metric:last-child { border-right: none; }

.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--champagne);
  margin-bottom: 4px;
}

.metric span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Disclaimer */
.disclaimer-panel {
  margin: 48px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(224, 122, 106, 0.08), rgba(196, 112, 138, 0.06));
  border: 1px solid rgba(224, 122, 106, 0.25);
  border-radius: var(--radius);
}

.disclaimer-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--danger);
  margin-bottom: 10px;
}

.disclaimer-panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.disclaimer-panel p:last-child { margin-bottom: 0; }

/* Section */
.section-block { padding: clamp(56px, 8vw, 88px) 0; }

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

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 12px;
}

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

/* Split rows */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.split-row:last-child { margin-bottom: 0; }

.split-row.reverse .split-media { order: 2; }
.split-row.reverse .split-content { order: 1; }

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 5/4;
  object-fit: cover;
}

.split-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.split-content ul {
  margin: 16px 0 0 18px;
  color: var(--text-muted);
}

.split-content li { margin-bottom: 8px; }

/* Game showcase */
.game-showcase {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.game-showcase-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.game-showcase-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.game-showcase-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.game-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 13px;
  color: var(--champagne-light);
  margin-bottom: 20px;
}

.game-iframe-shell {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.game-iframe-shell iframe {
  display: block;
  width: 100%;
  height: min(520px, 70vh);
  min-height: 280px;
  border: none;
  background: #000;
}

/* Game cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 184, 150, 0.4);
}

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

.game-card-body {
  padding: 22px;
}

.game-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-item {
  padding: 32px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(212, 184, 150, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--champagne);
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

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

/* Page hero */
.page-hero {
  padding: clamp(48px, 7vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 60ch;
}

.page-content {
  padding: clamp(40px, 6vw, 64px) 0 80px;
}

/* Legal */
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin: 32px 0 12px;
}

.legal-content h2:first-of-type { margin-top: 24px; }

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-content ul { margin-left: 20px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-row:last-child { border-bottom: none; }

.contact-row strong { color: var(--champagne); }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
}

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

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.15);
  color: var(--champagne-light);
  font-size: 14px;
}

.form-success.show { display: block; }

/* About */
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.fact-box {
  padding: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.fact-box strong {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.resource-card {
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.resource-card h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-brand-band {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.footer-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand-name em {
  font-style: italic;
  color: var(--champagne);
}

.footer-brand-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42ch;
}

.footer-notice-box {
  padding: 24px 28px;
  background: rgba(224, 122, 106, 0.06);
  border: 1px solid rgba(224, 122, 106, 0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--danger);
}

.footer-notice-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 10px;
}

.footer-notice-box p:last-child {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 48px 0;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}

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

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-light) !important;
}

.footer-trust-row {
  padding: 28px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.footer-age-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(224, 122, 106, 0.12);
  border: 2px solid var(--danger);
  font-weight: 800;
  font-size: 15px;
  color: var(--danger);
  flex-shrink: 0;
}

.footer-trust-copy {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.footer-trust-logos a { text-decoration: none; }

.footer-trust-logos img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-trust-logos a:hover img { opacity: 1; }

.footer-compliance {
  padding: 20px 0;
  background: rgba(15, 11, 16, 0.6);
}

.footer-compliance p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: center;
}

.footer-compliance p:last-child { margin-bottom: 0; }

.footer-compliance strong { color: var(--danger); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
}

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

.footer-bottom-note {
  opacity: 0.7;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: 18px 0;
  padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  background: rgba(34, 24, 40, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.hidden { display: none; }

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.btn-cookie {
  background: var(--champagne);
  color: #1a1210;
  padding: 10px 24px;
  flex-shrink: 0;
}

/* Age gate modal */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad-x);
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  background: rgba(6, 4, 8, 0.94);
  backdrop-filter: blur(12px);
}

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

.age-modal {
  width: 100%;
  max-width: 460px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.age-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: linear-gradient(90deg, #3a1830, #221828);
  border-bottom: 1px solid var(--line);
}

.age-modal-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(196, 112, 138, 0.2);
  border: 1px solid rgba(196, 112, 138, 0.45);
  font-size: 13px;
  font-weight: 800;
  color: var(--rose-light);
}

.age-modal-header-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
}

.age-modal-body {
  padding: 28px 28px 32px;
}

.age-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.age-modal-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.age-modal-list {
  list-style: none;
  margin-bottom: 28px;
}

.age-modal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.age-modal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--champagne);
  font-weight: 700;
  font-size: 13px;
}

.age-modal-list strong {
  color: var(--cream);
  font-weight: 600;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-age-enter {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--champagne), #a88858);
  color: #1a1210;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(212, 184, 150, 0.2);
}

.btn-age-enter:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(212, 184, 150, 0.3);
}

.btn-age-decline {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-age-decline:hover { color: var(--rose-light); }

.hidden { display: none !important; }

.main-nav .nav-mobile-item { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --gutter: clamp(24px, 5.5vw, 40px);
  }

  .header-cta { display: none; }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 86vw);
    height: 100dvh;
    height: 100vh;
    flex: none;
    display: block;
    padding: calc(var(--header-shell, 120px) + 16px) 20px 32px;
    background: #1a1220;
    border-left: 2px solid rgba(212, 184, 150, 0.35);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
    z-index: 1210;
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--cream) !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 184, 150, 0.12);
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--champagne-light) !important;
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.35);
  }

  .main-nav .nav-mobile-item {
    display: list-item;
  }

  .main-nav .nav-mobile-cta {
    display: block;
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), #9d4d6a);
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
  }

  .hero-stage-grid,
  .split-row,
  .game-showcase-inner,
  .contact-grid,
  .footer-brand-inner,
  .footer-columns,
  .resource-cards { grid-template-columns: 1fr; }

  .split-row.reverse .split-media,
  .split-row.reverse .split-content { order: unset; }

  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .metrics-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric { border-bottom: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-trust-inner { flex-direction: column; align-items: flex-start; }
  .footer-trust-logos { margin-left: 0; }
  .age-strip-inner { flex-direction: column; align-items: flex-start; }
  .age-strip-tags { margin-left: 0; }
  .games-grid--duo { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --gutter: clamp(22px, 6vw, 32px);
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-link img {
    width: 38px;
    height: 38px;
  }

  .games-grid { grid-template-columns: 1fr; }
  .metrics-bar-grid { grid-template-columns: 1fr; }
  .metric { border-right: none; }
  .hero-float-card { left: 0; bottom: 12px; }
  .hero-stage-actions { flex-direction: column; }
  .hero-stage-actions .btn-primary,
  .hero-stage-actions .btn-outline { width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }

  .game-iframe-shell iframe {
    height: min(420px, 58vh);
    min-height: 260px;
  }

  .section-block {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .about-facts { grid-template-columns: 1fr; }

  .logo-text { display: none; }

  .hero-stage-copy h1 {
    font-size: 1.85rem;
  }
}
