:root {
  --red: #CC0000;
  --red-bright: #E53333;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --border-red: rgba(204,0,0,0.4);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -60px; left: 0; z-index: 10000;
  background: var(--red); color: var(--white);
  padding: 12px 20px; font-size: 14px; font-weight: 700;
  border-radius: 0 0 6px 0; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}
@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; }
}

/* ── TOP DISCLAIMER BAR ── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}
.top-bar a { text-decoration: underline; opacity: 0.9; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white);
}
.logo span { color: var(--red); }
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white-70);
  transition: color 0.2s;
}
nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-bright); color: var(--white); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 16px;
}
.mobile-nav a { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('uploads/hero-bg.webp');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 55%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 80px 24px;
  max-width: 680px; margin-left: max(24px, calc(50vw - 600px));
}
.hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  border: 1px solid var(--border-red); padding: 5px 12px; border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(52px, 7vw, 96px);
  font-weight: 800; line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p {
  font-size: 17px; line-height: 1.7; color: var(--white-70);
  max-width: 520px; margin-bottom: 36px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white-10); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
}
.hero-tags { font-size: 12px; color: var(--white-30); letter-spacing: 0.04em; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all 0.2s;
  min-height: 48px;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 1px solid var(--white-30); padding: 14px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.2s; min-height: 48px;
}
.btn-outline:hover { border-color: var(--white); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--red); overflow: hidden;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 40px;
}
.ticker-item::after { content: '✦'; margin-left: 40px; opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
.section { padding: 96px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: '✦'; }
.section h2 {
  font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 20px;
}
.section h2 .ghost { -webkit-text-stroke: 1px var(--white-30); color: transparent; }
.section p.lead { font-size: 17px; color: var(--white-70); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }

/* ── GAMES ── */
.games-section { background: var(--black-2); }
.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.game-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; position: relative;
}
.game-card:hover { border-color: var(--border-red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(204,0,0,0.15); }
.game-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.game-card-body { padding: 20px; }
.game-card-body h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.game-stats { display: flex; gap: 16px; margin-bottom: 20px; }
.game-stat { font-size: 13px; color: var(--white-70); }
.btn-play {
  width: 100%; background: var(--red); color: var(--white);
  padding: 12px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; transition: background 0.2s; min-height: 44px;
}
.btn-play:hover { background: var(--red-bright); }

/* ── HOW TO PLAY ── */
.how-section { background: var(--black); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step {
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--black-3); position: relative; transition: border-color 0.2s;
}
.step:hover { border-color: var(--border-red); }
.step-num {
  font-family: var(--font-head); font-size: 72px; font-weight: 800;
  color: var(--white-10); line-height: 1; margin-bottom: 16px;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
}
.step h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--white-70); line-height: 1.65; }

/* ── ABOUT ── */
.about-section { background: var(--black-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--white-70); }
.about-list li::before { content: '✦'; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat-box { padding: 20px; background: var(--black-4); border-radius: var(--radius); border: 1px solid var(--border); text-align: center; }
.stat-box strong { display: block; font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--red); line-height: 1; }
.stat-box span { font-size: 12px; color: var(--white-70); letter-spacing: 0.04em; margin-top: 4px; display: block; }

/* ── TEAM ── */
.team-section { background: var(--black); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--black-3); transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-red); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 20px; }
.team-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 6px;
}
.team-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.team-desc { font-size: 13px; color: var(--white-70); line-height: 1.6; }

/* ── CONTACTS ── */
.contacts-section { background: var(--black-2); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-70); }
.form-group input, .form-group textarea {
  background: var(--black-4); border: 1px solid var(--border);
  color: var(--white); padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; transition: border-color 0.2s; min-height: 44px;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); margin-top: 2px; }
.checkbox-group label { font-size: 13px; color: var(--white-70); line-height: 1.5; }
.checkbox-group a { color: var(--red); }
.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 24px; }
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-item .info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.info-item .info-val { font-size: 15px; color: var(--white-70); }

/* ── FAQ ── */
.faq-section { background: var(--black); }
.faq-list { max-width: 800px; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; user-select: none;
}
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: all 0.2s; color: var(--red);
}
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--white-70); line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-section { background: var(--black-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.review-card {
  padding: 24px; background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-red); }
.review-author {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.review-text { font-size: 14px; color: var(--white-70); line-height: 1.65; font-style: italic; }
.review-text::before { content: '"'; font-size: 28px; color: var(--red); line-height: 0; vertical-align: -8px; margin-right: 2px; }

/* ── DISCLAIMER BLOCK ── */
.disclaimer-section {
  background: var(--black-4); border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.disclaimer-inner { max-width: var(--max); margin: 0 auto; padding: 48px 24px; }
.disclaimer-inner h2 {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.disclaimer-inner h2::before { content: '⚠'; font-size: 24px; }
.disclaimer-inner p { font-size: 14px; color: var(--white-70); line-height: 1.8; margin-bottom: 12px; max-width: 900px; }
.disclaimer-inner a { color: var(--red); }
.disclaimer-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.disc-badge {
  background: var(--black-3); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; color: var(--white-70); letter-spacing: 0.03em;
}

/* ── FOOTER ── */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; color: var(--white-70); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white-70); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--white-70); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-mid {
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-badges-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-badge-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--black-3); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-70);
}
.age-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: var(--red); border-radius: 50%;
  font-size: 11px; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.footer-legal-text { font-size: 12px; color: var(--white-30); line-height: 1.7; max-width: 900px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.footer-company { font-size: 12px; color: var(--white-30); line-height: 1.8; }
.footer-newsletter { display: flex; gap: 0; max-width: 360px; }
.footer-newsletter input {
  flex: 1; background: var(--black-3); border: 1px solid var(--border);
  border-right: none; color: var(--white); padding: 10px 14px;
  border-radius: var(--radius) 0 0 var(--radius); font-size: 13px;
  min-height: 44px;
}
.footer-newsletter input:focus { outline: none; border-color: var(--red); }
.footer-newsletter button {
  background: var(--red); color: var(--white);
  padding: 10px 18px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; min-height: 44px;
}
.footer-newsletter button:hover { background: var(--red-bright); }
.footer-nl-check { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; }
.footer-nl-check input { accent-color: var(--red); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-nl-check label { font-size: 12px; color: var(--white-30); line-height: 1.5; }
.footer-gamble { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-gamble a { font-size: 12px; color: var(--white-30); transition: color 0.2s; }
.footer-gamble a:hover { color: var(--red); }

/* ── AGE GATE ── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate-box {
  background: var(--black-2); border: 1px solid var(--border-red);
  border-radius: 16px; padding: 48px 40px; max-width: 480px; width: 100%;
  text-align: center;
}
.age-gate-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; background: var(--red); border-radius: 50%;
  font-size: 24px; font-weight: 900; color: var(--white);
  margin: 0 auto 24px; font-family: var(--font-head);
}
.age-gate h2 {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px;
}
.age-gate p { font-size: 16px; color: var(--white-70); line-height: 1.7; margin-bottom: 32px; }
.age-gate-btn {
  width: 100%; background: var(--red); color: var(--white);
  padding: 16px; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s; min-height: 52px;
}
.age-gate-btn:hover { background: var(--red-bright); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: var(--black-2); border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 13px; color: var(--white-70); flex: 1; min-width: 240px; line-height: 1.6; }
.cookie-banner a { color: var(--red); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--red); color: var(--white); padding: 10px 22px;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; min-height: 44px;
}
.cookie-accept:hover { background: var(--red-bright); }
.cookie-decline {
  background: transparent; color: var(--white-70);
  border: 1px solid var(--border); padding: 10px 22px;
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; min-height: 44px;
}
.cookie-decline:hover { color: var(--white); border-color: var(--white-30); }

/* ── GAME POPUP ── */
.game-popup {
  position: fixed; inset: 0; z-index: 8500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.game-popup.open { display: flex; }
.game-popup-box {
  background: var(--black-2); border: 1px solid var(--border-red);
  border-radius: 16px; width: 100%; max-width: 960px;
  overflow: hidden; position: relative;
}
.game-popup-header {
  background: var(--red); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.game-popup-header h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.popup-close {
  background: rgba(0,0,0,0.3); color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(0,0,0,0.6); }
.game-popup-body { padding: 16px; }
/* Embedded game frame */
.game-frame-wrapper {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--black); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.game-frame-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--white-70);
  font-family: var(--font-head); font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase;
}
.game-frame-loading .spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid var(--white-10); border-top-color: var(--red);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.game-frame-wrapper.loaded .game-frame-loading { display: none; }
.game-frame {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.slot-disclaimer {
  font-size: 12px; color: var(--white-30); text-align: center;
  margin-top: 12px; line-height: 1.5;
}

/* ── PILL BUTTONS ── */
.btn-primary, .btn-outline, .nav-cta { border-radius: 50px; }
.btn-play, .age-gate-btn, .cookie-accept, .cookie-decline { border-radius: 50px; }
.footer-newsletter button { border-radius: 0 50px 50px 0; }
.footer-newsletter input { border-radius: 50px 0 0 50px; }

/* ── LIGHT SECTION ── */
.section-light { background: #FFFFFF; }
.section-light .section-eyebrow { color: var(--red); }
.section-light h2 { color: #0A0A0A; }
.section-light h2 .ghost { -webkit-text-stroke: 1px rgba(0,0,0,0.15); color: transparent; }
.section-light p.lead { color: #555; }
.section-light .step { background: #F5F5F5; border-color: #E8E8E8; }
.section-light .step:hover { border-color: var(--red); }
.section-light .step-num { color: rgba(0,0,0,0.06); -webkit-text-stroke: 1px rgba(0,0,0,0.05); }
.section-light .step h3 { color: #0A0A0A; }
.section-light .step p { color: #555; }
.section-light .faq-list { border-top: 1px solid #E8E8E8; }
.section-light .faq-item { border-color: #E8E8E8; }
.section-light .faq-q { color: #0A0A0A; }
.section-light .faq-a-inner { color: #555; }
.section-light .faq-item .faq-icon { border-color: #DDD; color: var(--red); }

/* ── CAROUSEL ── */
.carousel-wrapper { position: relative; margin-top: 48px; padding: 0 32px; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.carousel-track .review-card { flex: 0 0 calc(25% - 15px); min-width: 0; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: var(--black); color: var(--white);
  border: 2px solid #E0E0E0;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer; flex-shrink: 0;
}
.car-btn:hover { background: var(--red); border-color: var(--red); }
.car-prev { left: 0; }
.car-next { right: 0; }
/* Reviews on white bg */
.section-light .review-card { background: #F5F5F5; border-color: #E8E8E8; }
.section-light .review-author { color: var(--red); }
.section-light .review-text { color: #444; }

/* ── POLICY PAGE ── */
.policy-hero { background: var(--black-2); padding: 64px 24px 48px; border-bottom: 1px solid var(--border); }
.policy-hero-inner { max-width: var(--max); margin: 0 auto; }
.policy-hero h1 {
  font-family: var(--font-head); font-size: clamp(36px,5vw,64px);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.policy-hero p { font-size: 15px; color: var(--white-70); }
.policy-body { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.policy-body h2 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; margin: 40px 0 12px;
  color: var(--white); padding-top: 8px; border-top: 1px solid var(--border);
}
.policy-body h2:first-child { border-top: none; margin-top: 0; }
.policy-body p { font-size: 15px; color: var(--white-70); line-height: 1.8; margin-bottom: 14px; }
.policy-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.policy-body ul li { font-size: 15px; color: var(--white-70); line-height: 1.7; padding-left: 20px; position: relative; }
.policy-body ul li::before { content: '✦'; color: var(--red); position: absolute; left: 0; font-size: 10px; top: 6px; }
.policy-body strong { color: var(--white); }
.policy-body a { color: var(--red); }
.policy-date { font-size: 12px; color: var(--white-30); margin-bottom: 32px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .hero h1 { font-size: 52px; }
  .games-grid, .steps-grid, .team-grid { grid-template-columns: 1fr; }
  .about-grid, .contacts-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 20px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .age-gate-box { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .age-icon { width: 44px; height: 44px; }
  .footer-gamble { justify-content: flex-start; }
}
