/* ============================================================
   CheerOakNest — main.css
   Shared design tokens, layout, components, utilities.
   Mobile-first. No frameworks.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --bg-deep: #071a12;
  --bg-felt: #0d3a25;
  --bg-felt-2: #14472f;
  --bg-card: #103a25;
  --bg-card-2: #0c2f1d;
  --gold: #c9a55c;
  --gold-bright: #e6c478;
  --gold-deep: #8c6f2c;
  --cream: #f5ebd6;
  --cream-dim: #b8a980;
  --red: #a23a2a;
  --red-bright: #c8483a;
  --win: #4ade80;
  --border: rgba(201, 165, 92, 0.25);
  --border-strong: rgba(201, 165, 92, 0.5);
  --overlay: rgba(7, 26, 18, 0.85);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 0 1px rgba(201, 165, 92, 0.4), 0 8px 32px rgba(201, 165, 92, 0.15);

  /* Typography */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing (8pt) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 220ms;
  --t-slow: 380ms;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Felt texture background (CSS only) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(20, 71, 47, 0.6), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(20, 71, 47, 0.4), transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, #081f15 50%, var(--bg-deep) 100%);
}

/* Subtle felt noise */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(201, 165, 92, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(201, 165, 92, 0.03) 0%, transparent 50%);
  opacity: 0.6;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--gold-bright); }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { font-size: clamp(1rem, 0.3vw + 0.95rem, 1.0625rem); color: var(--cream-dim); }
.lead { font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem); color: var(--cream); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-6); } }
.section { padding-block: var(--sp-8); position: relative; }
@media (min-width: 768px) { .section { padding-block: var(--sp-9); } }
.section--tight { padding-block: var(--sp-7); }

/* ---------- 4. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 26, 18, 0.95) 0%, rgba(7, 26, 18, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--t-base) var(--ease-out);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header__logo:hover { color: var(--cream); }
.header__logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.header__logo-mark svg { width: 100%; height: 100%; }

.header__nav {
  display: none;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__nav a {
  color: var(--cream);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: var(--sp-2) 0;
}
.header__nav a:hover { color: var(--gold); }
.header__nav a.is-active { color: var(--gold); }
.header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.balance-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: linear-gradient(135deg, rgba(201,165,92,0.18), rgba(201,165,92,0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.9375rem;
  white-space: nowrap;
}
.balance-chip svg { width: 16px; height: 16px; }

.menu-toggle {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--cream);
}
.menu-toggle:hover { background: rgba(201,165,92,0.1); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 90vw);
  background: var(--bg-felt);
  border-left: 1px solid var(--border);
  z-index: 60;
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-menu__nav a {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  color: var(--cream);
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a.is-active { color: var(--gold); }
.mobile-menu__disclaimer {
  margin-top: auto;
  padding-top: var(--sp-5);
  font-size: 0.75rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Disclaimer strip */
.disclaimer-strip {
  background: var(--red);
  color: var(--cream);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: var(--sp-2) var(--sp-4);
  position: relative;
  z-index: 40;
}
.disclaimer-strip strong { color: #fff; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s var(--ease-out);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(230, 196, 120, 0.7), 0 12px 40px rgba(201, 165, 92, 0.35);
  color: #1a1206;
}
.btn--primary:hover::after { left: 100%; }
.btn--primary:active { transform: translateY(0); }
.btn--primary:disabled, .btn--primary[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(201,165,92,0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn--lg { padding: var(--sp-4) var(--sp-6); font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: 0.875rem; min-height: 36px; }

/* ---------- 6. Cards & surfaces ---------- */
.card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.card--frame {
  background:
    linear-gradient(180deg, rgba(20, 71, 47, 0.6) 0%, rgba(13, 58, 37, 0.8) 100%);
  border: 1px solid var(--border-strong);
}
.card--frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: calc(var(--r-lg) - 4px);
  pointer-events: none;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--sp-2);
  color: var(--cream);
}
.card__text { color: var(--cream-dim); font-size: 0.9375rem; }

/* Decorative filigree corner */
.filigree {
  position: absolute;
  width: 60px; height: 60px;
  opacity: 0.4;
  pointer-events: none;
}
.filigree--tl { top: 0; left: 0; }
.filigree--tr { top: 0; right: 0; transform: scaleX(-1); }
.filigree--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.filigree--br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 540px;
  padding-block: var(--sp-7) var(--sp-8);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(20, 71, 47, 0.6), transparent 70%),
    linear-gradient(180deg, var(--bg-felt-2) 0%, var(--bg-deep) 100%);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-8);
  }
}
.hero__title {
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
  color: var(--cream);
  max-width: 540px;
  margin-bottom: var(--sp-5);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.hero__live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--win);
  box-shadow: 0 0 0 0 var(--win);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero__preview {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-soft), var(--shadow-gold);
  transform: rotate(-1deg);
}
.hero__preview::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 165, 92, 0.2);
  border-radius: calc(var(--r-xl) - 6px);
  pointer-events: none;
}
.preview-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.04em;
}
.preview-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
  flex: 1;
}
.preview-reel {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .preview-reel { font-size: 2.5rem; } }
.preview-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,165,92,0.05), transparent 30%, transparent 70%, rgba(0,0,0,0.4));
}
.preview-cta {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- 8. Sections common ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-7); }
.section-head__eyebrow { margin-bottom: var(--sp-3); justify-content: center; }
.section-head__title { margin-bottom: var(--sp-3); }
.section-head__lead { color: var(--cream-dim); font-size: 1.0625rem; }

/* ---------- 9. Featured games grid ---------- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }

.game-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--gold);
}
.game-card__preview {
  aspect-ratio: 16 / 10;
  background: radial-gradient(ellipse at center, var(--bg-felt-2) 0%, var(--bg-deep) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.game-card__preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,165,92,0.1), transparent 60%);
}
.game-card__preview-icons {
  display: flex;
  gap: var(--sp-2);
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.game-card__preview-icons span { animation: floaty 3s var(--ease-out) infinite; }
.game-card__preview-icons span:nth-child(2) { animation-delay: 0.3s; }
.game-card__preview-icons span:nth-child(3) { animation-delay: 0.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.game-card__tag {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--gold);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  z-index: 2;
}
.game-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}
.game-card__text { font-size: 0.875rem; color: var(--cream-dim); flex: 1; }
.game-card__cta { display: flex; justify-content: space-between; align-items: center; }
.game-card__rtp {
  font-size: 0.75rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.game-card__rtp strong { color: var(--gold); }

/* Featured (larger) variant */
.game-card--featured { grid-column: span 1; }
@media (min-width: 1024px) { .game-card--featured { grid-column: span 2; } }
.game-card--featured .game-card__preview { aspect-ratio: 21 / 9; }
.game-card--featured .game-card__preview-icons { font-size: 4rem; gap: var(--sp-4); }

/* ---------- 10. How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  position: relative;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
.step {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-gold);
}
.step__title { margin-bottom: var(--sp-2); }
.step__text { font-size: 0.9375rem; color: var(--cream-dim); }

/* ---------- 11. Why free / USPs ---------- */
.usps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px) { .usps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usps { grid-template-columns: repeat(4, 1fr); } }
.usp {
  text-align: left;
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.usp__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,165,92,0.2), rgba(201,165,92,0.05));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.usp__icon svg { width: 24px; height: 24px; }
.usp__title { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: var(--sp-2); }
.usp__text { font-size: 0.875rem; color: var(--cream-dim); }

/* ---------- 12. FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease-out);
}
.faq__item[open] { border-color: var(--gold); }
.faq__q {
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  list-style: none;
  font-size: 1.0625rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--t-base) var(--ease-out);
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--cream-dim);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- 13. Newsletter ---------- */
.newsletter {
  background:
    linear-gradient(135deg, var(--bg-felt-2) 0%, var(--bg-felt) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.newsletter::before, .newsletter::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,92,0.15), transparent 70%);
  pointer-events: none;
}
.newsletter::before { top: -100px; left: -50px; }
.newsletter::after { bottom: -100px; right: -50px; }
.newsletter__title { margin-bottom: var(--sp-3); position: relative; }
.newsletter__text { margin-bottom: var(--sp-5); position: relative; }
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 600px) {
  .newsletter__form { flex-direction: row; }
}
.newsletter__input {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(7, 26, 18, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: 0.9375rem;
  min-height: 44px;
  transition: border-color var(--t-base) var(--ease-out);
}
.newsletter__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,92,0.2);
}
.newsletter__input::placeholder { color: var(--cream-dim); }
.newsletter__hint { font-size: 0.75rem; color: var(--cream-dim); margin-top: var(--sp-3); position: relative; }
.newsletter__success {
  display: none;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(74,222,128,0.1);
  border: 1px solid var(--win);
  border-radius: var(--r-md);
  color: var(--win);
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: var(--sp-3);
}
.newsletter.is-success .newsletter__success { display: block; }
.newsletter.is-success .newsletter__form { display: none; }

/* ---------- 14. Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #050f0a 100%);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-7);
  margin-top: var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
@media (min-width: 600px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-6); } }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: var(--sp-3);
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__col ul li { margin-bottom: var(--sp-2); }
.footer__col a { color: var(--cream-dim); font-size: 0.875rem; }
.footer__col a:hover { color: var(--gold); }
.footer__brand { max-width: 360px; }
.footer__brand p { font-size: 0.875rem; margin-top: var(--sp-3); }
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}
.footer__logo svg { width: 40px; height: 40px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__legal { font-size: 0.75rem; color: var(--cream-dim); line-height: 1.6; }
.footer__legal p { font-size: 0.75rem; color: var(--cream-dim); }
.footer__legal a { color: var(--cream-dim); }
.footer__legal a:hover { color: var(--gold); }
.footer__badges { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; justify-content: center; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #fff;
}
.badge-18 strong { font-size: 0.9375rem; }
.badge-rgc {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(201,165,92,0.1);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- 15. Age Gate Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.modal-backdrop.is-open { display: flex; opacity: 1; }
.modal {
  background: linear-gradient(180deg, var(--bg-felt-2) 0%, var(--bg-felt) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--gold);
  transform: scale(0.95);
  transition: transform var(--t-base) var(--ease-out);
}
.modal-backdrop.is-open .modal { transform: scale(1); }
.modal__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-4);
  border: 2px solid #fff;
  box-shadow: var(--shadow-soft);
}
.modal__title { margin-bottom: var(--sp-3); font-size: 1.75rem; }
.modal__text { margin-bottom: var(--sp-5); color: var(--cream-dim); font-size: 0.9375rem; }
.modal__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.modal__disclaimer {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ---------- 16. Toasts ---------- */
.toast {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-soft);
  max-width: calc(100vw - 32px);
  transition: transform var(--t-base) var(--ease-out);
  font-size: 0.9375rem;
  font-weight: 600;
}
.toast.is-show { transform: translateX(-50%) translateY(0); }
.toast--win { border-color: var(--win); }
.toast--warn { border-color: var(--red-bright); }
.toast__icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.toast--win .toast__icon { background: var(--win); color: var(--bg-deep); }
.toast--warn .toast__icon { background: var(--red-bright); color: #fff; }
.toast--info .toast__icon { background: var(--gold); color: var(--bg-deep); }

/* ---------- 17. Big-win banner ---------- */
.big-win {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 70;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.big-win.is-show { opacity: 1; }
.big-win__content {
  text-align: center;
  transform: scale(0.5);
  transition: transform var(--t-slow) var(--ease-out);
}
.big-win.is-show .big-win__content { transform: scale(1); }
.big-win__label {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(230, 196, 120, 0.5);
  letter-spacing: 0.04em;
  line-height: 1;
}
.big-win__amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--cream);
  margin-top: var(--sp-3);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Coin rain canvas */
.coin-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 65;
}

/* ---------- 18. Slot machine (game page) ---------- */
.slot {
  background: linear-gradient(180deg, #1a4d33 0%, #0a2e1f 100%);
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  position: relative;
  box-shadow: var(--shadow-soft), 0 0 0 4px var(--bg-deep), 0 0 0 5px var(--gold);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) { .slot { padding: var(--sp-5); } }
.slot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  gap: var(--sp-3);
}
.slot__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-align: center;
  flex: 1;
}
.slot__info-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,165,92,0.15);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slot__info-btn:hover { background: rgba(201,165,92,0.3); }
.slot__info-btn svg { width: 18px; height: 18px; }

.slot__reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
  background: var(--bg-deep);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
@media (min-width: 768px) {
  .slot__reels { min-height: 320px; gap: var(--sp-3); padding: var(--sp-4); }
}
.slot__reels::before, .slot__reels::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  pointer-events: none;
  z-index: 2;
}
.slot__reels::before {
  top: var(--sp-3);
  background: linear-gradient(180deg, var(--bg-deep), transparent);
}
@media (min-width: 768px) { .slot__reels::before { top: var(--sp-4); } }
.slot__reels::after {
  bottom: var(--sp-3);
  background: linear-gradient(0deg, var(--bg-deep), transparent);
}
@media (min-width: 768px) { .slot__reels::after { bottom: var(--sp-4); } }

.reel {
  background: linear-gradient(180deg, #051a10 0%, #0a2e1f 50%, #051a10 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 200px;
}
@media (min-width: 768px) { .reel { height: 270px; } }
.reel__track {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0; left: 0; right: 0;
  will-change: transform;
}
.reel.is-spinning .reel__track {
  animation: reel-spin 0.3s linear infinite;
}
.reel.is-stopped .reel__track {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes reel-spin {
  from { transform: translateY(0); }
  to { transform: translateY(-66.66%); }
}
.reel__symbol {
  flex: 0 0 auto;
  height: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
@media (min-width: 768px) { .reel__symbol { font-size: 3rem; } }
.reel.is-stopped .reel__symbol.is-win {
  animation: symbol-win 0.6s var(--ease-out) 2;
}
@keyframes symbol-win {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); filter: drop-shadow(0 0 16px var(--gold-bright)); }
}
.payline-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.payline-overlay.is-active::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 33.333%;
  background: rgba(230, 196, 120, 0.15);
  border-top: 1px dashed var(--gold);
  border-bottom: 1px dashed var(--gold);
  animation: payline-glow 1s var(--ease-out) infinite alternate;
}
@keyframes payline-glow {
  from { box-shadow: 0 0 8px var(--gold); }
  to { box-shadow: 0 0 24px var(--gold-bright); }
}

.slot__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
@media (min-width: 600px) {
  .slot__bottom { grid-template-columns: 1fr 1fr; align-items: center; }
}
.slot__controls {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.slot__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(7,26,18,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.slot__control-label {
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.slot__control-value {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  color: var(--gold-bright);
}
.slot__control-buttons { display: flex; gap: var(--sp-1); }
.slot__step-btn {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,165,92,0.15);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--gold);
  transition: all var(--t-fast) var(--ease-out);
}
.slot__step-btn:hover { background: rgba(201,165,92,0.3); }
.slot__step-btn svg { width: 14px; height: 14px; }

.slot__spin-area {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: stretch;
}
.spin-btn {
  width: 100%;
  min-height: 64px;
  font-size: 1.125rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.slot__last-win {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(7,26,18,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.slot__last-win-label { color: var(--cream-dim); }
.slot__last-win-value { color: var(--gold-bright); font-weight: 700; }

/* Paytable modal */
.paytable {
  max-width: 720px;
  width: 100%;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
}
.paytable h3 { margin-bottom: var(--sp-4); text-align: center; }
.paytable__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.paytable__table th, .paytable__table td {
  padding: var(--sp-3);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.paytable__table th {
  background: rgba(201,165,92,0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
}
.paytable__table td:first-child {
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.paytable__table td:first-child span { font-size: 1.5rem; }
.paytable__table tr:hover td { background: rgba(201,165,92,0.05); }
.paytable__paylines {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.paytable__payline {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2);
  background: rgba(7,26,18,0.4);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
}
.paytable__payline-grid {
  display: grid;
  grid-template-columns: repeat(5, 24px);
  gap: 4px;
  flex-shrink: 0;
}
.paytable__payline-cell {
  width: 24px; height: 24px;
  background: rgba(201,165,92,0.1);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
}
.paytable__payline-cell.is-on { background: var(--gold); color: var(--bg-deep); }

/* History panel */
.history-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  max-height: 360px;
  overflow-y: auto;
}
.history-panel__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history-panel__clear {
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  font-weight: 700;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease-out);
}
.history-panel__clear:hover { color: var(--red-bright); background: rgba(162,58,42,0.1); }
.history-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-2);
  align-items: center;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(7,26,18,0.4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
}
.history-item__time { color: var(--cream-dim); font-size: 0.75rem; }
.history-item__win { font-weight: 700; }
.history-item__win--pos { color: var(--win); }
.history-item__win--neg { color: var(--cream-dim); }
.history-empty {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.875rem;
  padding: var(--sp-5);
}

/* Daily bonus modal */
.bonus-content {
  text-align: center;
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin: var(--sp-4) 0;
}
.bonus-coins { display: inline-flex; gap: var(--sp-2); margin: var(--sp-3) 0; }
.bonus-coin {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.bonus-countdown {
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-top: var(--sp-3);
}

/* ---------- 19. Page hero (inner pages) ---------- */
.page-hero {
  padding: var(--sp-8) 0 var(--sp-6);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(20, 71, 47, 0.5), transparent 70%),
    linear-gradient(180deg, var(--bg-felt) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.0625rem; }

/* Content blocks for inner pages */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-7) var(--sp-4);
}
.content h2 { margin: var(--sp-6) 0 var(--sp-3); }
.content h2:first-child { margin-top: 0; }
.content h3 { margin: var(--sp-5) 0 var(--sp-2); font-size: 1.25rem; }
.content p { margin-bottom: var(--sp-4); }
.content ul, .content ol { padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.content ul li, .content ol li {
  list-style: disc;
  color: var(--cream-dim);
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-2);
}
.content ol li { list-style: decimal; }
.content strong { color: var(--cream); }
.content a { color: var(--gold-bright); text-decoration: underline; }
.content a:hover { color: var(--gold); }

/* RG specific */
.helpline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
@media (min-width: 600px) { .helpline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .helpline-grid { grid-template-columns: repeat(3, 1fr); } }
.helpline {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.helpline__region {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.helpline__name { font-weight: 700; color: var(--cream); font-size: 1rem; }
.helpline__contact {
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.helpline__contact a { color: var(--gold-bright); text-decoration: none; font-weight: 600; }
.helpline__contact a:hover { color: var(--gold-bright); text-decoration: underline; }

.checklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-4) 0;
}
.checklist li {
  list-style: none;
  padding: var(--sp-2) 0;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  margin-top: 2px;
}
.checklist strong { color: var(--cream); display: block; margin-bottom: 2px; }

/* Take a break tool */
.break-tool {
  background: linear-gradient(180deg, rgba(162, 58, 42, 0.15), rgba(162, 58, 42, 0.05));
  border: 1px solid var(--red);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin: var(--sp-5) 0;
}
.break-tool__title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}
.break-tool__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: var(--sp-4) 0;
}
.break-option {
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--cream);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
}
.break-option:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}
.break-option.is-active {
  background: var(--red);
  border-color: var(--red-bright);
  color: #fff;
}
.break-tool__active {
  display: none;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(7,26,18,0.6);
  border-radius: var(--r-md);
  text-align: center;
}
.break-tool.is-active .break-tool__active { display: block; }
.break-tool.is-active .break-tool__options { display: none; }
.break-countdown {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red-bright);
  font-weight: 700;
  margin: var(--sp-3) 0;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: var(--sp-5) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-row label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
}
.form-row label small { color: var(--cream-dim); font-weight: 400; }
.form-row input, .form-row textarea, .form-row select {
  padding: var(--sp-3) var(--sp-4);
  background: rgba(7,26,18,0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--cream);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  min-height: 44px;
  transition: all var(--t-base) var(--ease-out);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,92,0.2);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--cream-dim); }
.form-row.is-error input, .form-row.is-error textarea { border-color: var(--red-bright); }
.form-error { color: var(--red-bright); font-size: 0.8125rem; margin-top: var(--sp-1); display: none; }
.form-row.is-error .form-error { display: block; }

/* About values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.value__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-3);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.value__icon svg { width: 28px; height: 28px; }
.value__title { font-family: var(--font-display); margin-bottom: var(--sp-2); }
.value__text { font-size: 0.9375rem; color: var(--cream-dim); }

/* ---------- 20. Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-cream-dim { color: var(--cream-dim); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: var(--sp-3) auto;
  opacity: 0.6;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: var(--sp-2) var(--sp-4);
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ---------- 21. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .preview-reel, .hero__live-dot, .game-card__preview-icons span {
    animation: none !important;
  }
}

/* ---------- 22. Focus states ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
