/* =========================================================
   CozyLakeNest — Stylesheet
   Pure CSS3. No frameworks.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0B0E;
  --surface: #16161B;
  --surface-2: #1F1F26;
  --gold: #C9A961;
  --gold-bright: #E8C77E;
  --gold-dim: #8C7A47;
  --crimson: #B22222;
  --crimson-bright: #E63946;
  --cream: #F5F1E8;
  --silver: #A8A29E;
  --silver-dim: #6E6A65;
  --forest: #4A7A48;
  --divider: #2A2A33;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 32px rgba(201, 169, 97, 0.25);

  --container: 1280px;
  --gutter: 24px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-num: "Bebas Neue", "Inter", sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;
}

@media (min-width: 768px) {
  :root {
    --gutter: 48px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding-top: 112px; padding-bottom: 112px; }
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--cream);
  margin: 12px 0 16px;
}
.section-head p {
  color: var(--silver);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #1A1A1A;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(201, 169, 97, 0.45);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--silver-dim);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
}
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { min-height: 56px; padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(11, 11, 14, 0.7);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 11, 14, 0.92);
  border-bottom-color: var(--divider);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo span.gold { color: var(--gold); }
.nav-primary {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 900px) {
  .nav-primary { display: flex; }
}
.nav-primary a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver);
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease);
}
.nav-primary a:hover, .nav-primary a[aria-current="page"] {
  color: var(--cream);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  background: var(--crimson);
  color: var(--cream);
  font-family: var(--font-num);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--cream);
}
.menu-toggle:hover { background: var(--surface-2); }
.menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 900px) {
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(11, 11, 14, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid var(--divider);
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: 24px; }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--cream);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding: 20px 0;
  align-items: center;
}
@media (min-width: 768px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); padding: 24px 0; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(178, 34, 34, 0.18), transparent 55%),
    linear-gradient(180deg, #0B0B0E 0%, #16161B 50%, #0B0B0E 100%);
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../imgs/slot-machine-lifestyle.png");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: contrast(1.1) saturate(1.1) brightness(0.55);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
}
.hero-bg::after {
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
.hero-glow-1 { top: -10%; right: -10%; }
.hero-glow-2 { bottom: -20%; left: -10%; background: radial-gradient(circle, rgba(178, 34, 34, 0.16) 0%, transparent 60%); }
@keyframes floatGlow {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 700;
}
.hero p.lede {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--silver);
  max-width: 540px;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--cream);
}
.hero-meta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero visual: floating token card */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.hero-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(201, 169, 97, 0.15);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(201, 169, 97, 0.18), transparent 50%);
  pointer-events: none;
}
.hero-card-label {
  font-family: var(--font-num);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--silver);
}
.hero-card-value {
  font-family: var(--font-num);
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201, 169, 97, 0.45);
}
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--silver);
}
.hero-card-row .gold { color: var(--gold-bright); font-weight: 600; }
.hero-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
}
.hero-sym {
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
}
.hero-sym svg { width: 60%; height: 60%; }
.hero-sym.win {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(201, 169, 97, 0.05));
  border-color: var(--gold);
  animation: winGlow 1.5s ease-in-out infinite;
}
@keyframes winGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 169, 97, 0); }
  50% { box-shadow: 0 0 24px rgba(201, 169, 97, 0.6); }
}
.hero-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
  font-size: 0.8rem;
  color: var(--silver);
}
.hero-card-foot strong { color: var(--cream); font-weight: 600; }

/* ---------- Daily Bonus Strip ---------- */
.daily-strip {
  background: linear-gradient(135deg, #1F1F26 0%, #16161B 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .daily-strip {
    flex-direction: row;
    text-align: left;
    padding: 32px 40px;
    justify-content: space-between;
  }
}
.daily-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(201, 169, 97, 0.12), transparent 50%);
  pointer-events: none;
}
.daily-strip-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: grid; place-items: center;
  color: #1A1A1A;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.daily-strip-icon svg { width: 32px; height: 32px; }
.daily-strip-content { flex: 1; }
.daily-strip h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.daily-strip p {
  color: var(--silver);
  font-size: 0.95rem;
}
.daily-strip-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gold);
}

/* ---------- Game Cards ---------- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
.game-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-md), 0 0 40px rgba(201, 169, 97, 0.15);
}
.game-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.game-card:hover .game-thumb img { transform: scale(1.05); }
.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 14, 0.7) 100%);
  pointer-events: none;
}
.game-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(11, 11, 14, 0.85);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.game-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.game-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.game-body p {
  color: var(--silver);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
}
.game-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--silver);
}
.game-stats span { display: inline-flex; align-items: center; gap: 4px; }
.game-stats strong { color: var(--gold); font-weight: 600; }
.game-card .btn { width: 100%; }

/* Featured game card (larger) */
.game-card.featured {
  grid-column: 1 / -1;
}
@media (min-width: 1024px) {
  .game-card.featured {
    grid-column: span 2;
    grid-template-columns: 1.2fr 1fr;
    display: grid;
  }
  .game-card.featured .game-thumb { aspect-ratio: auto; height: 100%; min-height: 320px; }
  .game-card.featured .game-body { padding: 32px; justify-content: center; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  }
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-num);
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.step p {
  color: var(--silver);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease);
}
.benefit:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 97, 0.1);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.benefit p { color: var(--silver); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial p {
  color: var(--cream);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: grid; place-items: center;
  font-family: var(--font-num);
  color: #1A1A1A;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-meta { font-size: 0.85rem; }
.testimonial-meta strong { display: block; color: var(--cream); font-weight: 600; }
.testimonial-meta span { color: var(--silver); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq-item[open] { border-color: var(--gold-dim); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--t-base) var(--ease);
  margin-right: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-body {
  padding: 0 24px 20px;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Responsible Gaming CTA ---------- */
.rg-cta {
  position: relative;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.15) 0%, rgba(11, 11, 14, 0.5) 100%);
  border: 1px solid rgba(178, 34, 34, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.rg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(178, 34, 34, 0.15), transparent 50%);
  pointer-events: none;
}
.rg-cta-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(178, 34, 34, 0.15);
  border: 1.5px solid var(--crimson);
  display: grid; place-items: center;
  color: var(--crimson-bright);
}
.rg-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
}
.rg-cta p {
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 24px;
  position: relative;
}
.rg-cta .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  padding-top: 64px;
  padding-bottom: 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; } }
.footer-brand p {
  color: var(--silver);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--font-num);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--silver);
  font-size: 0.9rem;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.disclaimer {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.disclaimer p {
  color: var(--silver);
  font-size: 0.8rem;
  line-height: 1.6;
}
.disclaimer strong { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p {
  color: var(--silver-dim);
  font-size: 0.8rem;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  color: var(--silver);
  transition: all var(--t-base) var(--ease);
}
.footer-socials a:hover {
  background: var(--gold);
  color: #1A1A1A;
  transform: translateY(-2px);
}
.footer-socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--divider);
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.08), transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 16px 0;
}
.page-hero p {
  color: var(--silver);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

/* ---------- Compliance banner (top of every page) ---------- */
.compliance-top {
  background: var(--crimson);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 70;
}
.compliance-top a { text-decoration: underline; font-weight: 600; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-md);
}
.about-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin: 16px 0 20px;
}
.about-grid p { color: var(--silver); margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
}
.stat .num {
  font-family: var(--font-num);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  color: var(--silver);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ---------- Terms / Privacy content ---------- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.legal-content h2:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin: 24px 0 12px;
}
.legal-content p, .legal-content li {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li, .legal-content ol li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--cream); }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--silver);
}
.legal-meta strong { color: var(--cream); display: block; margin-bottom: 2px; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 48px; } }
.contact-info {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  height: fit-content;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.contact-info p { color: var(--silver); font-size: 0.9rem; margin-bottom: 24px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.1);
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-body { font-size: 0.85rem; }
.contact-item-body strong { display: block; color: var(--cream); margin-bottom: 2px; font-weight: 600; }
.contact-item-body span { color: var(--silver); }
.contact-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.form-row label .req { color: var(--crimson-bright); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease);
}
.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, 169, 97, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-row .help { font-size: 0.8rem; color: var(--silver-dim); margin-top: 4px; }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(74, 122, 72, 0.15);
  border: 1px solid var(--forest);
  border-radius: var(--radius-sm);
  color: var(--cream);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-success.visible { display: block; }

/* ---------- Game page ---------- */
.game-page {
  padding-top: 100px;
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.06), transparent 60%);
}
.game-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}
.game-bar-info { display: flex; align-items: center; gap: 12px; }
.game-bar-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); }
.game-bar-balance {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-pill);
}
.game-bar-balance .label {
  font-size: 0.75rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.game-bar-balance .value {
  font-family: var(--font-num);
  font-size: 1.4rem;
  color: var(--gold);
}
.game-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .game-stage { grid-template-columns: 1fr 320px; }
}
.slot-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(160deg, #2A1F0E 0%, #16161B 60%);
  border: 2px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  align-self: start;
}
.slot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.2), transparent 50%);
  pointer-events: none;
}
.slot-frame::after {
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.slot-title {
  text-align: center;
  font-family: var(--font-num);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 14px;
  text-shadow: 0 0 16px rgba(201, 169, 97, 0.5);
  position: relative;
}
.slot-reels-wrap {
  position: relative;
  background: #0B0B0E;
  border-radius: var(--radius-md);
  padding: 10px;
  border: 1px solid var(--divider);
  overflow: hidden;
}
.slot-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  position: relative;
}
.slot-reel {
  position: relative;
  background: linear-gradient(180deg, #16161B 0%, #0B0B0E 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  height: 180px;
  overflow: hidden;
}
.slot-reel-inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
}
.slot-symbol {
  height: 60px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  position: relative;
}
.slot-symbol svg { width: 40px; height: 40px; }
.slot-reel.spinning .slot-reel-inner {
  animation: spinReel var(--spin-time, 1500ms) cubic-bezier(0.25, 0.1, 0.25, 1);
}
@keyframes spinReel {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(-60px * var(--symbols-count, 9) * 2)); }
}
.slot-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    #0B0B0E 0%,
    transparent 25%,
    transparent 75%,
    #0B0B0E 100%);
  z-index: 2;
}
.slot-win-line {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  top: 60px;
  border-top: 1px dashed rgba(201, 169, 97, 0.4);
  border-bottom: 1px dashed rgba(201, 169, 97, 0.4);
  pointer-events: none;
  z-index: 3;
}
.slot-win-line::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--gold);
}
.slot-win-line::after {
  content: "";
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--gold);
}
.slot-payline {
  position: absolute;
  left: 6px; right: 6px;
  top: 10px;
  bottom: 10px;
  pointer-events: none;
  z-index: 1;
}
.slot-payline span {
  position: absolute;
  left: 0; right: 0;
  height: 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.slot-payline span:nth-child(1) { top: 60px; }
.slot-payline span:nth-child(2) { top: 120px; }

.slot-cell-win {
  position: relative;
}
.slot-cell-win::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(201, 169, 97, 0.25);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  animation: winPulse 0.6s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes winPulse {
  from { box-shadow: 0 0 0 rgba(201, 169, 97, 0); }
  to   { box-shadow: 0 0 16px rgba(201, 169, 97, 0.6); }
}

.slot-controls {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .slot-controls { grid-template-columns: repeat(4, 1fr); }
}
.slot-ctrl {
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  text-align: center;
}
.slot-ctrl label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silver);
  margin-bottom: 8px;
}
.slot-ctrl-bet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.slot-ctrl-bet button {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--gold);
  font-size: 1rem;
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease);
}
.slot-ctrl-bet button:hover { background: var(--gold); color: #1A1A1A; }
.slot-ctrl-bet .bet-value {
  font-family: var(--font-num);
  font-size: 1.4rem;
  color: var(--gold);
  flex: 1;
  text-align: center;
}
.spin-btn {
  height: 48px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--crimson) 100%);
  color: var(--cream);
  font-family: var(--font-num);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: all var(--t-base) var(--ease);
  border: 2px solid var(--gold-bright);
}
.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.5);
}
.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.spin-btn.spinning {
  background: linear-gradient(135deg, var(--silver-dim), var(--crimson));
}

.game-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 20px;
}
.panel h3 {
  font-family: var(--font-num);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.paytable { display: flex; flex-direction: column; gap: 10px; }
.paytable-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 0.85rem;
}
.paytable-row .sym {
  display: grid; place-items: center;
  background: var(--surface-2);
  border-radius: 4px;
  width: 40px; height: 40px;
  margin: 0 auto;
}
.paytable-row .sym svg { width: 28px; height: 28px; }
.paytable-row .name { color: var(--cream); font-weight: 500; }
.paytable-row .payout { font-family: var(--font-num); color: var(--gold); }

.history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}
.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-track { background: var(--bg); }
.history-list::-webkit-scrollbar-thumb { background: var(--divider); border-radius: 2px; }
.history-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--silver);
  align-items: center;
}
.history-item .ts { font-family: var(--font-num); color: var(--silver-dim); }
.history-item .bet { color: var(--cream); }
.history-item .win { font-family: var(--font-num); }
.history-item .win.positive { color: var(--gold); }
.history-item .win.zero { color: var(--silver-dim); }
.history-empty { color: var(--silver-dim); font-size: 0.85rem; text-align: center; padding: 16px 0; }

.daily-bonus-card {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(178, 34, 34, 0.1) 100%);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.daily-bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.daily-bonus-card .reward {
  font-family: var(--font-num);
  font-size: 2.2rem;
  color: var(--gold);
  margin: 8px 0;
}
.daily-bonus-card p { color: var(--silver); font-size: 0.85rem; margin-bottom: 12px; }
.daily-bonus-card .btn { width: 100%; }
.daily-bonus-card .btn:disabled { opacity: 0.5; cursor: not-allowed; }

.last-win-banner {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(178, 34, 34, 0.15));
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  z-index: 4;
}
.last-win-banner.visible { display: block; animation: winPop 0.4s var(--ease); }
.last-win-banner .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
}
.last-win-banner .amount {
  font-family: var(--font-num);
  font-size: 2.2rem;
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(201, 169, 97, 0.6);
}
@keyframes winPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.confetti span {
  position: absolute;
  top: -20px;
  width: 10px; height: 14px;
  background: var(--gold);
  opacity: 0.95;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #1A1A1A;
  padding: 8px 16px;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Helpers ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.text-center { text-align: center; }
.text-silver { color: var(--silver); }
.text-gold { color: var(--gold); }
