/* ═══════════════════════════════════════════════════════════
   Doodle Jump UK — Styles
   Theme: Notebook / Grid-Paper aesthetic (Doodle Jump inspired)
   Colors: Charcoal + Green CTAs + Blue accents + Gold highlights
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Backgrounds */
  --color-bg-dark: #141425;
  --color-bg-main: #1A1A2E;
  --color-bg-card: #1E2A45;
  --color-bg-card-hover: #253454;
  --color-bg-hero: #16213E;

  /* Grid-paper lines (notebook aesthetic) */
  --color-grid-line: rgba(63, 142, 252, 0.06);
  --color-grid-line-accent: rgba(63, 142, 252, 0.12);

  /* Accent Colors (Doodle Jump palette) */
  --color-green: #4CAF50;
  --color-green-hover: #66BB6A;
  --color-green-dark: #388E3C;
  --color-blue: #3F8EFC;
  --color-blue-hover: #5CA0FD;
  --color-blue-dark: #2D6BC4;
  --color-gold: #FFD700;
  --color-gold-hover: #FFDF33;
  --color-gold-dark: #D4A800;
  --color-purple: #7B68EE;
  --color-purple-hover: #8F7FF7;

  /* Text */
  --color-text: #E0E0EC;
  --color-text-muted: #8A8DA8;
  --color-text-heading: #F0F0FF;
  --color-text-dark: #1A1A2E;

  /* Functional */
  --color-success: #66BB6A;
  --color-warning: #FFA726;
  --color-danger: #EF5350;
  --color-info: #42A5F5;

  /* Borders */
  --color-border: rgba(63, 142, 252, 0.2);
  --color-border-hover: rgba(63, 142, 252, 0.4);

  /* Typography */
  --font-heading: 'Patrick Hand', 'Comic Neue', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --header-height: 64px;
  --container-max: 1200px;
  --section-gap: 2.5rem;

  /* Borders & Shadows */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg-main);
  /* Notebook grid-paper background */
  background-image:
    repeating-linear-gradient(0deg, var(--color-grid-line) 0px, var(--color-grid-line) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, var(--color-grid-line) 0px, var(--color-grid-line) 1px, transparent 1px, transparent 32px);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-blue-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

table {
  width: 100%;
  border-collapse: collapse;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-green);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-main) 100%);
  border-bottom: 2px solid var(--color-border);
  box-shadow: var(--shadow-md);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text-heading);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

/* Desktop Nav */
.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  gap: 0.25rem;
}

.header-nav a {
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(63, 142, 252, 0.1);
  color: var(--color-blue);
}

/* Play Now Button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.5);
  color: #fff;
}

/* Burger Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 1rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.mobile-menu a:hover {
  background: rgba(63, 142, 252, 0.1);
  color: var(--color-blue);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  padding: 2rem 0;
  background: linear-gradient(180deg, var(--color-bg-hero) 0%, var(--color-bg-main) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(63, 142, 252, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(76, 175, 80, 0.15);
  color: var(--color-green);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  width: fit-content;
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 640px;
}

/* Quick Stats Grid */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-gold-hover);
}

.btn-blue {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(63, 142, 252, 0.4);
}

.btn-blue:hover {
  box-shadow: 0 6px 20px rgba(63, 142, 252, 0.5);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
}

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
  margin: 0;
}

.content-body {
  max-width: 860px;
  margin: 0 auto;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ── Table of Contents ────────────────────────────────────── */
.toc {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.toc h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-green);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.toc-toggle.collapsed {
  transform: rotate(45deg);
}

.toc ol {
  list-style: decimal;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.toc li {
  list-style: decimal;
}

.toc a {
  color: var(--color-text);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  display: inline-block;
}

.toc a:hover {
  color: var(--color-blue);
}

/* ── Specs Table ──────────────────────────────────────────── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.specs-table th,
.specs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(255, 215, 0, 0.05);
  font-weight: 600;
}

.specs-table td {
  font-size: 0.9375rem;
}

.specs-table tr:hover td {
  background: rgba(63, 142, 252, 0.04);
}

.specs-table .spec-value {
  font-weight: 600;
  color: var(--color-text-heading);
}

/* ── Casino Cards ─────────────────────────────────────────── */
.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.casino-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.casino-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.casino-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.casino-rating {
  color: var(--color-gold);
  font-size: 0.875rem;
}

.casino-bonus {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-green);
  font-weight: 600;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.casino-features span {
  background: rgba(63, 142, 252, 0.1);
  color: var(--color-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.casino-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ── Feature Cards ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0.5rem;
  background: var(--color-bg-card);
}

/* ── Win Calculator ───────────────────────────────────────── */
.calculator {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.calc-group {
  margin-bottom: 1rem;
}

.calc-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-group input,
.calc-group select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.calc-group input:focus,
.calc-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.calc-result-item {
  text-align: center;
}

.calc-result-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.calc-result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

/* ── Author Box (Georg Hurrison) ──────────────────────────── */
.author-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.author-info strong {
  font-size: 1.125rem;
  color: var(--color-text-heading);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.author-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.375rem;
  justify-content: center;
}

.author-social a {
  font-size: 0.8125rem;
  color: var(--color-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(63, 142, 252, 0.1);
}

.author-social a:hover {
  background: rgba(63, 142, 252, 0.2);
}

/* ── Pros & Cons ──────────────────────────────────────────── */
.pros-cons-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.pros {
  border: 1px solid rgba(102, 187, 106, 0.3);
}

.cons {
  border: 1px solid rgba(239, 83, 80, 0.3);
}

.pros h4, .cons h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.pros h4 { color: var(--color-success); }
.cons h4 { color: var(--color-danger); }

.pros ul, .cons ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pros li, .cons li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-success);
  font-size: 1.125rem;
}

.cons li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-danger);
  font-size: 1.125rem;
}

/* ── Final Rating ─────────────────────────────────────────── */
.final-rating {
  text-align: center;
  background: linear-gradient(135deg, rgba(63, 142, 252, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  display: block;
}

.rating-summary {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

/* ── Verdict Box ──────────────────────────────────────────── */
.verdict-box {
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

.verdict-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.verdict-stars {
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--color-bg-card);
  border: none;
  color: var(--color-text-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-bg-card-hover);
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--color-bg-card);
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

/* ══════════════════════════════════════════════════════════
   CSS CHARTS
   ══════════════════════════════════════════════════════════ */

/* ── Chart 1: RTP Comparison Bar Chart ────────────────────── */
.rtp-chart {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 600px;
  margin: 1.5rem auto;
}

.rtp-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: 0.75rem;
}

.rtp-bar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-heading);
  text-align: right;
}

.rtp-bar-track {
  height: 28px;
  background: rgba(63, 142, 252, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.rtp-bar-fill {
  height: 100%;
  border-radius: var(--radius);
  transition: width 1s ease;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}

.rtp-bar-fill.highlight {
  background: linear-gradient(90deg, var(--color-green) 0%, var(--color-green-dark) 100%);
}

.rtp-bar-fill.default {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
}

.rtp-bar-value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* ── Chart 2: Risk/Volatility Meter ───────────────────────── */
.risk-meter {
  max-width: 500px;
  margin: 1.5rem auto;
}

.risk-meter-bar {
  height: 24px;
  border-radius: 12px;
  background: linear-gradient(90deg,
    var(--color-success) 0%,
    var(--color-warning) 50%,
    var(--color-danger) 100%
  );
  position: relative;
  margin-bottom: 0.5rem;
}

.risk-meter-indicator {
  position: absolute;
  top: -8px;
  width: 4px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
  transition: left 0.5s ease;
}

.risk-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Chart 3: Multiplier Distribution ─────────────────────── */
.multiplier-chart {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 600px;
  margin: 1.5rem auto;
}

.multiplier-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 0.75rem;
}

.multiplier-range {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-heading);
  text-align: right;
}

.multiplier-bar {
  height: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(63, 142, 252, 0.08);
}

.multiplier-fill {
  height: 100%;
  border-radius: var(--radius);
}

.multiplier-pct {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ── Chart 4: Bonus Comparison ────────────────────────────── */
.bonus-chart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.bonus-chart-row {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.bonus-chart-row.best {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
}

.bonus-casino-name {
  font-weight: 700;
  color: var(--color-text-heading);
  font-size: 1rem;
}

.bonus-amount {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.125rem;
}

.bonus-wager {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.bonus-bar-track {
  height: 8px;
  background: rgba(63, 142, 252, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bonus-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--color-green);
}

/* ══════════════════════════════════════════════════════════
   CONTENT IMAGES (Float Layout)
   ══════════════════════════════════════════════════════════ */
.content-img-right {
  margin: 0.5rem 0 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.content-img-right img {
  width: 100%;
  height: auto;
}

.content-img-left {
  margin: 0.5rem 0 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.content-img-left img {
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-dark) 100%);
  border-top: 3px solid var(--color-border);
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--color-text-heading);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-green);
  border-radius: 1px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trust-badges img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.trust-badges img:hover {
  opacity: 1;
}

.trust-badges a {
  display: inline-flex;
}

/* Footer Disclaimer */
.footer-disclaimer {
  padding: 1.25rem;
  margin-top: 1.5rem;
  background: rgba(239, 83, 80, 0.06);
  border: 1px solid rgba(239, 83, 80, 0.15);
  border-radius: var(--radius);
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
  padding: 1.25rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════════
   STICKY BOTTOM CTA (Mobile Only)
   ══════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-main) 100%);
  border-top: 2px solid var(--color-green);
  padding: 0.625rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-heading);
}

.sticky-cta .btn-play {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════════════════ */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-blue);
}

.breadcrumbs span {
  margin: 0 0.375rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   STEP-BY-STEP (HowTo)
   ══════════════════════════════════════════════════════════ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: step;
}

.step-item {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════════
   COOKIE CONSENT
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  border-top: 2px solid var(--color-border);
  padding: 1rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.cookie-inner p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-accept {
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   LAZY REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   AFFILIATE DISCLOSURE
   ══════════════════════════════════════════════════════════ */
.affiliate-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 215, 0, 0.04);
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .container { padding: 0 1.5rem; }

  .section { padding: 3rem 0; }

  /* Hero */
  .hero { padding: 3rem 0; }
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .hero-media {
    flex: 1;
    max-width: 50%;
  }
  .hero-text {
    flex: 1;
  }
  .hero-ctas {
    flex-direction: row;
  }
  .quick-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Grids */
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pros-cons-table {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Author box */
  .author-box {
    flex-direction: row;
    text-align: left;
  }
  .author-social {
    justify-content: flex-start;
  }

  /* Content images float */
  .content-img-right {
    float: right;
    max-width: 45%;
    margin: 0.5rem 0 1rem 1.5rem;
  }
  .content-img-left {
    float: left;
    max-width: 45%;
    margin: 0.5rem 1.5rem 1rem 0;
  }

  /* Cookie */
  .cookie-inner {
    flex-direction: row;
    text-align: left;
  }

  /* Bonus chart */
  .bonus-chart-row {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .container { padding: 0 2rem; }

  /* Header Desktop */
  .header-nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }

  /* Hero */
  .hero { padding: 4rem 0; }

  /* Casino grid */
  .casino-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .hero h1 { font-size: 2.75rem; }
}

/* Mobile Sticky CTA: show only on small screens */
@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
  }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .sticky-cta, .cookie-banner,
  .btn-play, .mobile-menu, .hero-ctas { display: none; }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  a { color: #000; text-decoration: underline; }

  .section { padding: 1rem 0; }
}

/* ══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-gold); }
.text-green { color: var(--color-green); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.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;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
