/* === MERGED BASE: ethereal-glass.css (style_library) === */
/*
 * ============================================================================
 * ETHEREAL GLASS — Parametrized CSS Base Template
 * ============================================================================
 *
 * Premium dark editorial: OLED blacks, floating glass nav, mesh gradients,
 * double-bezel cards, noise texture overlay, gold accent. Awwwards-tier.
 *
 * CUSTOMIZATION — Override these CSS custom properties on :root per satellite:
 *
 *   --brand-accent         Main accent color (default: #f0b90b gold)
 *   --brand-accent-hover   Lighter accent for hover states (default: #fcd34d)
 *   --brand-sky            Secondary accent for tags/callouts (default: #38bdf8)
 *   --brand-bg-0           Deepest background (default: #0a0c0f)
 *   --brand-bg-1           Primary surface (default: #12161c)
 *   --brand-bg-2           Elevated surface (default: #1a2028)
 *   --brand-bg-3           Highest surface (default: #242c36)
 *   --brand-font-display   Display/heading font (default: 'Oswald')
 *   --brand-font-body      Body/paragraph font (default: 'Plus Jakarta Sans')
 *
 * USAGE — In your satellite's <style> or separate override file:
 *
 *   :root {
 *     --brand-accent: #e63946;
 *     --brand-accent-hover: #ff6b6b;
 *     --brand-sky: #4cc9f0;
 *     --brand-bg-0: #0b0b0f;
 *     --brand-font-display: 'Inter';
 *   }
 *
 * Only override what you need — all values have sensible defaults.
 *
 * FONTS — Load your chosen fonts via <link> or @import before this file.
 * Default fonts to load: Oswald (700) + Plus Jakarta Sans (400;500;600;700;800)
 *
 * NO oklch() — all colors are hex or rgba for maximum browser compatibility.
 * ============================================================================
 */


/* === Palette — amber-tinted neutrals, fully overridable === */
:root {
  /* Brand-level overrides */
  --brand-accent: #f0b90b;
  --brand-accent-hover: #fcd34d;
  --brand-sky: #38bdf8;
  --brand-bg-0: #0a0c0f;
  --brand-bg-1: #12161c;
  --brand-bg-2: #1a2028;
  --brand-bg-3: #242c36;
  --brand-font-display: 'Oswald';
  --brand-font-body: 'Plus Jakarta Sans';

  /* Internal aliases — derived from brand tokens */
  --bg-0: var(--brand-bg-0);
  --bg-1: var(--brand-bg-1);
  --bg-2: var(--brand-bg-2);
  --bg-3: var(--brand-bg-3);
  --accent: var(--brand-accent);
  --accent-hover: var(--brand-accent-hover);
  --accent-dim: rgba(240, 185, 11, 0.1);
  --accent-glow: rgba(240, 185, 11, 0.3);
  --sky: var(--brand-sky);
  --sky-dim: rgba(56, 189, 248, 0.08);
  --text-0: #f1f3f5;
  --text-1: #c8d0dc;
  --text-2: #8b94a3;
  --border: rgba(50, 58, 72, 0.6);
  --border-hi: rgba(241, 243, 245, 0.06);
  --surface-glow-1: rgba(120, 80, 220, 0.06);
  --surface-glow-2: rgba(60, 180, 120, 0.04);
  --radius: 1.25rem;
  --radius-inner: calc(1.25rem - 6px);
  --radius-sm: 0.625rem;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: var(--brand-font-display), system-ui, sans-serif;
  --font-body: var(--brand-font-body), system-ui, sans-serif;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-0);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Noise overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  pointer-events: none;
  z-index: 50;
  opacity: 0.5;
}

a { color: var(--accent); text-decoration: none; transition: color 0.4s var(--ease); }
a:hover { color: var(--accent-hover); }
img { display: block; max-width: 100%; height: auto; }

/* === Layout === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* === TOPBAR — floating glass pill === */
.topbar {
  position: sticky; top: 12px; z-index: 40;
  margin: 12px 24px 0;
  background: rgba(14, 18, 24, 0.7);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.topbar .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 0; max-width: none; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav { display: flex; gap: 4px; flex: 1; flex-wrap: wrap; }
.nav a {
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; color: var(--text-1);
  transition: all 0.4s var(--ease);
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--text-0); background: rgba(241, 243, 245, 0.06); }
.nav a[aria-current=page] { color: var(--bg-0); background: var(--accent); }

/* CTA buttons — dark text on accent bg for contrast */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #0a0c0f; padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 32px var(--accent-glow); color: #0a0c0f; }
.cta:hover::before { opacity: 1; }
.cta:active { transform: scale(0.97); }

.age-note {
  font-size: 0.65rem; color: var(--text-2);
  text-align: center; padding: 8px 0 0;
  letter-spacing: 0.03em;
}

/* === HERO — editorial split with mesh gradient === */
.hero--diagonal {
  position: relative; overflow: hidden;
  padding: 100px 0 120px;
  min-height: min(520px, 70vh);
}
.hero--diagonal::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, var(--surface-glow-1), transparent),
    radial-gradient(ellipse 60% 80% at 25% 70%, var(--surface-glow-2), transparent),
    linear-gradient(160deg, var(--bg-0) 35%, rgba(20, 15, 40, 0.3) 100%);
  z-index: 0;
}
.hero--diagonal::after {
  content: ""; position: absolute;
  top: -50%; right: -20%; width: 70%; height: 200%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  z-index: 0;
  filter: blur(60px);
}
/* Hero art: image at NATIVE brightness; readability for the left text
   column comes from a separate dark overlay (`::after`), not from dimming
   the image. See ethereal-glass.css base template for rationale. */
.hero-art {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 75%; z-index: 1;
  pointer-events: none;
}
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right,
    var(--bg-0) 0%,
    var(--bg-0) 15%,
    rgba(10, 12, 15, 0.85) 35%,
    rgba(10, 12, 15, 0.35) 60%,
    transparent 85%);
  pointer-events: none;
  z-index: 1;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
}
.hero-body { position: relative; z-index: 2; max-width: 580px; }

.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky);
  padding: 5px 14px;
  background: var(--sky-dim);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-body h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.lead {
  font-size: 1.06rem; line-height: 1.7;
  color: var(--text-1);
  max-width: 48ch;
  font-weight: 500;
}

/* Stat strip */
.stat-strip { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.stat-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 110px;
  box-shadow: inset 0 1px 0 var(--border-hi);
  transition: border-color 0.4s var(--ease);
}
.stat-chip:hover { border-color: var(--accent-glow); }
.stat-chip strong {
  font-size: 1.35rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-chip span {
  font-size: 0.6rem; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* === CONTENT SECTIONS === */
main { padding: 40px 0 80px; }
section { margin: 28px auto; }

/* Rating badge */
.rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 10px 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 var(--border-hi);
}
.rating b {
  font-size: 1.75rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #e6a01e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating span { font-size: 0.85rem; color: var(--text-1); font-weight: 500; }

/* === Double-bezel cards (nested architecture) === */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin: 32px auto; }

.pillar {
  /* Outer shell */
  background: rgba(20, 24, 30, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  transition: all 0.5s var(--ease);
}
.pillar:hover { border-color: rgba(240, 185, 11, 0.2); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }

/* Inner core */
.pillar > :first-child,
.pillar {
  position: relative;
}
.pillar .tag {
  display: inline-flex;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky);
  padding: 3px 10px;
  background: var(--sky-dim);
  border-radius: var(--radius-pill);
  margin: 14px 14px 0;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin: 8px 14px 6px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pillar p { font-size: 0.82rem; color: var(--text-1); margin: 0 14px 14px; line-height: 1.5; }

/* === Content blocks (double-bezel) === */
.content {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.content > * { padding-left: 28px; padding-right: 28px; }
.content > *:first-child { padding-top: 28px; }
.content > *:last-child { padding-bottom: 28px; }
.content + .content { margin-top: 20px; }

.content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-0);
  margin-top: 36px; margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.content h2:first-child { margin-top: 0; }
.content h3 { font-size: 1rem; font-weight: 700; color: var(--text-0); margin-top: 24px; margin-bottom: 8px; }
.content p { font-size: 0.92rem; line-height: 1.75; color: var(--text-1); max-width: 65ch; }
.content li { font-size: 0.92rem; line-height: 1.7; color: var(--text-1); margin: 6px 0; }
.content ul { padding-left: 20px; }
.content li::marker { color: var(--accent); }
.content a { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(240, 185, 11, 0.3); text-underline-offset: 3px; transition: text-decoration-color 0.3s; }
.content a:hover { text-decoration-color: var(--accent); }

/* Tables */
.content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.82rem; }
.content th, .content td { padding: 12px 16px; text-align: left; vertical-align: top; }
.content th {
  background: var(--bg-2);
  color: var(--text-0);
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid var(--accent-dim);
}
.content td { color: var(--text-1); border-bottom: 1px solid var(--border); }
.content tr:last-child td { border-bottom: none; }
.content tr:hover td { background: rgba(241, 243, 245, 0.02); }
.content table { padding-left: 0; padding-right: 0; }
.content table th:first-child, .content table td:first-child { padding-left: 28px; }
.content table th:last-child, .content table td:last-child { padding-right: 28px; }

/* Callout */
.callout {
  background: var(--sky-dim);
  border-left: 3px solid var(--sky);
  padding: 16px 20px !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 28px !important;
  font-size: 0.85rem; color: var(--text-1);
  line-height: 1.65;
}

/* Breadcrumbs */
.crumbs {
  font-size: 0.72rem; color: var(--text-2);
  margin: 0 0 16px; padding: 0;
  display: flex; gap: 6px; align-items: center;
  font-weight: 500;
}
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: 0.4; }

/* === Sponsored block === */
.sponsored {
  margin: 36px 0;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 20px;
  padding: 22px 28px;
  border: 1px solid rgba(240, 185, 11, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-dim), rgba(240, 185, 11, 0.03));
  box-shadow: 0 4px 24px rgba(240, 185, 11, 0.08);
}
.sponsored p { margin: 0; font-size: 0.85rem; color: var(--text-1); line-height: 1.6; padding: 0; }
.sponsored .cta { font-size: 0.78rem; padding: 10px 22px; white-space: nowrap; }
@media (max-width: 560px) {
  .sponsored { grid-template-columns: 1fr; }
  .sponsored .cta { justify-self: start; }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
}
footer .container {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: space-between;
  font-size: 0.72rem; color: var(--text-2);
  letter-spacing: 0.01em;
}
footer a { color: var(--text-2); }
footer a:hover { color: var(--accent); }

/* === Tables — dark-theme (from base template) === */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-1);
  color: var(--text-1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 24px 0;
  font-size: 0.9rem;
}
table thead { background: var(--bg-2); }
table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border-bottom: 2px solid var(--border);
}
table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-0);
  vertical-align: top;
}
table tbody tr { transition: background 0.3s var(--ease); }
table tbody tr:hover { background: rgba(241, 243, 245, 0.04); }
table tbody tr:last-child td { border-bottom: none; }
table a { color: var(--accent); font-weight: 600; }
table a:hover { color: var(--accent-hover); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .topbar { margin: 8px 12px 0; padding: 8px 16px; border-radius: var(--radius); }
  .hero--diagonal { padding: 72px 0 80px; min-height: auto; }
  .hero-body h1 { font-size: 2rem; }
  .hero-art { width: 55%; opacity: 0.35; right: -10%; }
  .stat-strip { gap: 6px; }
  .stat-chip { min-width: 85px; padding: 10px 12px; }
  .content > * { padding-left: 18px; padding-right: 18px; }
  .content > *:first-child { padding-top: 18px; }
  .content > *:last-child { padding-bottom: 18px; }
  .content table th:first-child, .content table td:first-child { padding-left: 18px; }
  .content table th:last-child, .content table td:last-child { padding-right: 18px; }
  .callout { margin: 16px 18px !important; }
  .nav a { padding: 4px 10px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .topbar { flex-direction: column; gap: 8px; }
  .pillars { grid-template-columns: 1fr; }
  .stat-strip { flex-direction: column; }
  .stat-chip { min-width: auto; }
}

/* === MOTION === */
@media (prefers-reduced-motion: no-preference) {
  @keyframes float-up {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  .hero-body { animation: float-up 0.8s var(--ease) both; }
  .stat-strip { animation: float-up 0.8s 0.15s var(--ease) both; }
  .pillar:nth-child(1) { animation: float-up 0.6s 0.1s var(--ease) both; }
  .pillar:nth-child(2) { animation: float-up 0.6s 0.2s var(--ease) both; }
  .pillar:nth-child(3) { animation: float-up 0.6s 0.3s var(--ease) both; }
  .content { animation: float-up 0.7s 0.1s var(--ease) both; }
}

/* === Utilities === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-2); font-size: 0.78rem; }

/* === BRAND OVERRIDE (was the entire styles.css before merge fix) === */
/*
 * LEV DEMO SLOTS — Aggressive Casino Theme
 * Base: ethereal-glass.css (overridden variables)
 * Style ID: aggressive-casino
 */

/* === Brand overrides for aggressive-casino === */
:root {
  --brand-accent: #ffd400;
  --brand-accent-hover: #ffe44d;
  --brand-sky: #00f0ff;
  --brand-bg-0: #0a0a12;
  --brand-bg-1: #12101c;
  --brand-bg-2: #1a1630;
  --brand-bg-3: #241e3a;
  /* Aliases — rules below reference var(--bg-1)/var(--bg-2)/var(--accent), but
     only the --brand-* names were defined here. Without these aliases the body
     background, nav surface, and section dividers resolved to transparent →
     white page, broken top-nav. Pipeline fix (CSS var validation in
     satellite-build wave) will prevent this in future rebuilds. */
  --bg-0: var(--brand-bg-0);
  --bg-1: var(--brand-bg-1);
  --bg-2: var(--brand-bg-2);
  --bg-3: var(--brand-bg-3);
  --accent: var(--brand-accent);
  --accent-hover: var(--brand-accent-hover);
  --sky: var(--brand-sky);
  --font-display: var(--brand-font-display);
  --font-body: var(--brand-font-body);
  --brand-font-display: 'Bebas Neue', 'Oswald';
  --brand-font-body: 'Montserrat', 'Manrope';

  /* Aggressive-casino specific */
  --color-accent-pink: #ff2d6a;
  --color-accent-cyan: #00f0ff;
  --accent-dim: rgba(255, 212, 0, 0.1);
  --accent-glow: rgba(255, 212, 0, 0.35);
  --sky-dim: rgba(0, 240, 255, 0.08);
  --pink-dim: rgba(255, 45, 106, 0.1);
  --pink-glow: rgba(255, 45, 106, 0.25);
  --shadow-cta: 0 0 24px rgba(255, 212, 0, 0.35), 0 0 60px rgba(255, 212, 0, 0.12);
  --shadow-accent: 0 0 16px rgba(255, 45, 106, 0.25);
  --radius-card: 12px;
}

/* === CTA pulse animation === */
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-cta); }
  50% { transform: scale(1.02); box-shadow: 0 0 32px rgba(255, 212, 0, 0.5), 0 0 80px rgba(255, 212, 0, 0.18); }
}

.cta {
  animation: cta-pulse 2.5s ease-in-out infinite;
  box-shadow: var(--shadow-cta);
}

@media (prefers-reduced-motion: reduce) {
  .cta { animation: none; }
  .pillar:hover { transform: none; }
  .slot-card:hover { transform: none; }
  .hero-body, .stat-strip, .pillar, .content { animation: none; }
}

/* === Age notice inline with CTA === */
.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-group .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-accent-pink);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent-pink);
}

/* === Ad disclosure === */
.ad-disclosure {
  background: var(--pink-dim);
  border: 1px solid rgba(255, 45, 106, 0.2);
  border-radius: var(--radius-card);
  padding: 8px 16px;
  font-size: 0.72rem;
  color: #9ca3af;
  text-align: center;
  margin: 12px 24px;
}

/* === Demo Launcher Grid === */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.slot-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.12);
}
.slot-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.slot-card .card-body {
  padding: 14px 16px;
}
.slot-card .card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-0);
}
.slot-card .card-body .meta {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: #9ca3af;
}
.slot-card .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 18, 0.8);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.slot-card:hover .card-overlay {
  opacity: 1;
}
.slot-card .card-overlay span {
  padding: 10px 24px;
  background: var(--brand-accent);
  color: #0a0a12;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === How Demo Works — 3-step === */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.step-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.step-item .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-dim);
  border: 2px solid var(--color-accent-pink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent-pink);
  margin-bottom: 12px;
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--text-0);
}
.step-item p {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.5;
}

/* === Social Proof Ticker / Marquee === */
.ticker-strip {
  overflow: hidden;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin: 32px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; overflow-x: auto; }
}
.ticker-track span {
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 500;
}
.ticker-track strong {
  color: var(--brand-accent);
}

/* === Provider Trust Row === */
.provider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  margin: 32px 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.provider-row .provider-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #9ca3af;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.provider-row .provider-logo:hover {
  opacity: 1;
  color: var(--text-0);
}

/* === CTA Strip === */
.cta-strip {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.08), rgba(255, 212, 0, 0.06));
  border: 1px solid rgba(255, 45, 106, 0.15);
  border-radius: var(--radius-card);
  margin: 32px 0;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 8px;
  color: var(--text-0);
}
.cta-strip p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0 0 20px;
}

/* === Registration Nudge === */
.nudge-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin: 32px 0;
}
.nudge-block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.nudge-block ul li {
  font-size: 0.85rem;
  color: var(--text-1);
  padding: 4px 0;
}
.nudge-block ul li::before {
  content: "✓ ";
  color: var(--color-accent-cyan);
  font-weight: 700;
}
@media (max-width: 640px) {
  .nudge-block { grid-template-columns: 1fr; }
}

/* === Category Tabs === */
.tab-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-nav button {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.tab-nav button:hover,
.tab-nav button.active {
  background: var(--color-accent-pink);
  color: #fff;
  border-color: var(--color-accent-pink);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === FAQ Accordion === */
.faq-list {
  margin: 24px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 16px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-0);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--color-accent-pink);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 0 16px;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* === Responsible Gambling Section === */
.responsible-section {
  text-align: center;
  padding: 32px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin: 32px 0;
}
.responsible-section .big-18 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent-pink);
  margin-bottom: 8px;
}

/* === Sticky Mobile CTA === */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 12px 16px;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
}

/* === Section headings === */
.section-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-0);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.section-subheading {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0 0 24px;
}

/* === Slot page specific === */
.slot-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .slot-hero { grid-template-columns: 1fr; }
}
.slot-hero img {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.slot-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.slot-spec {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.slot-spec .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 4px;
}
.slot-spec .value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-accent);
}

/* === Related Slots Grid === */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.related-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 12px;
  text-align: center;
  transition: all 0.3s;
}
.related-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}
.related-card h4 {
  font-size: 0.82rem;
  margin: 8px 0 4px;
  color: var(--text-0);
}
.related-card span {
  font-size: 0.68rem;
  color: #9ca3af;
}

/* === Guide page === */
.guide-toc {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 24px 0;
}
.guide-toc h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-0);
  margin: 0 0 12px;
}
.guide-toc ol {
  padding-left: 20px;
  margin: 0;
}
.guide-toc li {
  font-size: 0.82rem;
  color: var(--color-accent-cyan);
  padding: 4px 0;
}
.guide-toc li a {
  color: var(--color-accent-cyan);
}

/* === Footer compliance === */
.compliance-footer {
  font-size: 0.7rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 640px;
}

/* === Breadcrumbs override for pink accent === */
.crumbs a:hover { color: var(--color-accent-cyan); }
