/* ============================================================
   VOODOO CASINO UK — STYLESHEET
   Palette: deep purple #0a0615, dark #170d2b, mid #1a0f35,
            gold #b8860b, light gold #d4a017, white #f0ece8,
            accent purple #3d1f6e
   Fonts: Rajdhani (display), Inter (body)
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep:    #0a0615;
  --bg-dark:    #170d2b;
  --bg-mid:     #1a0f35;
  --bg-card:    #201244;
  --gold:       #b8860b;
  --gold-light: #d4a017;
  --gold-dim:   #6b4e07;
  --purple-acc: #3d1f6e;
  --text-main:  #e8e0f0;
  --text-muted: #9a8fb5;
  --text-dim:   #5a4f72;
  --white:      #f0ece8;
  --green:      #4caf50;
  --red:        #f44336;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:0 0 20px rgba(184,134,11,0.2);
  --transition: 0.25s ease;
  --max-w:      1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; letter-spacing: 1px; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text-main); font-size: 0.97rem; }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.2rem; }
li { margin-bottom: 0.35rem; font-size: 0.95rem; color: var(--text-main); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--purple-acc);
  color: var(--white);
  border: 1px solid var(--purple-acc);
}

.btn-primary:hover {
  background: #4e2a8a;
  border-color: #4e2a8a;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(184,134,11,0.12);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0615;
  border: none;
  box-shadow: 0 2px 16px rgba(184,134,11,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8b820 100%);
  box-shadow: 0 4px 24px rgba(184,134,11,0.55);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.full-width {
  width: 100%;
  margin-top: 1rem;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

.btn-text-link:hover { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,6,21,0.95);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  text-decoration: none;
}

.main-nav a:hover { color: var(--gold-light); }

.header-ctas {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   TOP BONUS BANNER
   ============================================================ */

.top-bonus-banner {
  background: linear-gradient(90deg, #2a1654 0%, #0e0820 50%, #2a1654 100%);
  border-bottom: 1px solid rgba(184,134,11,0.4);
}

.tbb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  flex-wrap: wrap;
}

.tbb-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tbb-label {
  font-size: 0.72rem;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.tbb-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.tbb-note {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

section { padding: 72px 0; }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.two-col-reverse {
  grid-template-columns: 380px 1fr;
}

.text-block p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: radial-gradient(ellipse at 60% 0%, #2a1654 0%, #0a0615 60%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-visual { display: flex; justify-content: center; }

.voodoo-skull-art {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(184,134,11,0.2));
}

.voodoo-skull-art svg { width: 100%; height: auto; }

/* ============================================================
   QUICK STATS
   ============================================================ */

.quick-stats {
  background: var(--bg-dark);
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(184,134,11,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-card {
  background: var(--bg-dark);
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;
}

/* ============================================================
   ABOUT / INFO TABLE
   ============================================================ */

.section-about { background: var(--bg-deep); }

.info-sidebar { position: sticky; top: 90px; }

.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(184,134,11,0.25);
  margin-bottom: 1rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(184,134,11,0.1);
  color: var(--text-main);
}

.info-table tr:last-child td { border-bottom: none; }

.info-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 45%;
  background: rgba(26,15,53,0.4);
}

.info-table td:last-child {
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */

.section-bonus { background: var(--bg-mid); }

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.bonus-card:hover {
  border-color: rgba(184,134,11,0.5);
  transform: translateY(-2px);
}

.bonus-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #201244 0%, #2a1654 100%);
  box-shadow: var(--shadow-gold);
  grid-column: span 1;
}

.bonus-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.bonus-card-icon svg { width: 48px; height: 48px; }

.bonus-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.bonus-terms {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
  border-top: 1px solid rgba(184,134,11,0.1);
  padding-top: 0.8rem;
}

.bonus-terms li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.bonus-terms li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.bonus-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(26,15,53,0.6);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.bonus-note svg { flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   MID BANNER
   ============================================================ */

.mid-banner {
  background: linear-gradient(90deg, #170d2b 0%, #3d1f6e 50%, #170d2b 100%);
  border-top: 1px solid rgba(184,134,11,0.3);
  border-bottom: 1px solid rgba(184,134,11,0.3);
  padding: 28px 0;
}

.mid-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mid-banner-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.mid-banner-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */

.section-games { background: var(--bg-deep); }

.game-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-cat-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.game-cat-card:hover {
  border-color: rgba(184,134,11,0.4);
  box-shadow: var(--shadow-gold);
}

.game-cat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.game-cat-icon svg { width: 50px; height: 50px; }

.game-cat-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.game-cat-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* ============================================================
   PROVIDERS
   ============================================================ */

.providers-section {
  background: var(--bg-mid);
  padding: 56px 0;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.provider-badge { cursor: default; }
.provider-badge svg { display: block; }

/* ============================================================
   LIVE CASINO
   ============================================================ */

.section-live { background: var(--bg-deep); }

.live-visual { display: flex; flex-direction: column; gap: 1.2rem; }

.live-art-box {
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.live-art-box svg { width: 100%; height: auto; display: block; }

.live-stats-row {
  display: flex;
  gap: 1rem;
}

.live-stat {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius);
  padding: 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.live-stat span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.live-stat small {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   PAYMENTS
   ============================================================ */

.section-payments { background: var(--bg-mid); }

.payments-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.2);
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.payments-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.payments-table thead {
  background: var(--bg-card);
}

.payments-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(184,134,11,0.2);
  white-space: nowrap;
}

.payments-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(184,134,11,0.08);
  color: var(--text-main);
  white-space: nowrap;
}

.payments-table tbody tr:nth-child(even) td {
  background: rgba(26,15,53,0.3);
}

.payments-table tbody tr:last-child td { border-bottom: none; }

.payments-table tbody tr:hover td {
  background: rgba(61,31,110,0.2);
}

.payments-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.payment-note-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.payment-note-card h3 {
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.payment-note-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   MOBILE SECTION
   ============================================================ */

.section-mobile { background: var(--bg-deep); }

.mobile-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.mf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(184,134,11,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-feat strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}

.mobile-feat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIBLE GAMBLING
   ============================================================ */

.section-responsible { background: var(--bg-mid); }

.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.rg-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.rg-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
}

.rg-icon svg { width: 44px; height: 44px; }

.rg-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.rg-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.rg-helpline {
  background: rgba(10,6,21,0.8);
  border: 1px solid rgba(184,134,11,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.rg-helpline strong { color: var(--white); }

/* ============================================================
   REVIEW SCORE
   ============================================================ */

.section-review-score { background: var(--bg-deep); }

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pros-card, .cons-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pros-card {
  background: linear-gradient(160deg, #0e2010 0%, #0a1a0e 100%);
  border: 1px solid rgba(76,175,80,0.25);
}

.cons-card {
  background: linear-gradient(160deg, #200e0e 0%, #1a0a0a 100%);
  border: 1px solid rgba(244,67,54,0.25);
}

.pros-card h3, .cons-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.pros-card ul, .cons-card ul {
  list-style: none;
  padding: 0;
}

.pros-card li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(76,175,80,0.08);
}

.pros-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.85rem;
}

.cons-card li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(244,67,54,0.08);
}

.cons-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.85rem;
}

.overall-score-box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.score-breakdown { display: flex; flex-direction: column; gap: 0.8rem; }

.score-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
}

.score-row span:first-child {
  width: 180px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.score-bar {
  flex: 1;
  height: 6px;
  background: rgba(184,134,11,0.12);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
}

.score-num {
  width: 36px;
  text-align: right;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.overall-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.total-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0% 87%, rgba(184,134,11,0.1) 87% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.total-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-card);
}

.total-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.total-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.total-verdict p {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.section-faq { background: var(--bg-mid); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(184,134,11,0.12);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 1.1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: background var(--transition);
}

.faq-q:hover { background: rgba(61,31,110,0.3); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q {
  background: rgba(61,31,110,0.4);
  color: var(--gold-light);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: rgba(10,6,21,0.5);
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 1.2rem 1.5rem;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(184,134,11,0.2);
  padding-top: 56px;
  padding-bottom: 32px;
}

.footer-inner { display: flex; flex-direction: column; gap: 2.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-link-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
}

.footer-link-col a:hover { color: var(--gold-light); }

.footer-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,134,11,0.1);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,134,11,0.1);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid rgba(184,134,11,0.1);
}

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */

@media (max-width: 960px) {
  .two-col-layout,
  .two-col-reverse {
    grid-template-columns: 1fr;
  }

  .two-col-reverse { direction: ltr; }
  .two-col-reverse > *:first-child { order: 2; }
  .two-col-reverse > *:last-child { order: 1; }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; }
  .voodoo-skull-art { max-width: 200px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .bonus-cards-grid { grid-template-columns: 1fr 1fr; }
  .game-cats-grid { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }

  .overall-score-box {
    grid-template-columns: 1fr;
  }

  .overall-total { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .payments-notes { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }

  .info-sidebar { position: static; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */

@media (max-width: 640px) {
  section { padding: 48px 0; }

  .site-header { height: auto; }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0.8rem;
  }

  .main-nav {
    order: 3;
    flex: 0 0 100%;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav a { font-size: 0.82rem; white-space: nowrap; }

  .header-ctas { margin-left: auto; }

  .tbb-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

  .hero { padding: 40px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:last-child { grid-column: span 2; }

  .bonus-cards-grid { grid-template-columns: 1fr; }
  .game-cats-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }

  .providers-grid { gap: 0.6rem; }

  .score-row span:first-child { width: 130px; font-size: 0.8rem; }

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

  .mid-banner-inner { flex-direction: column; align-items: flex-start; }

  .live-stats-row { gap: 0.6rem; }

  .header-ctas .btn-outline { display: none; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:last-child { grid-column: span 1; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL BAR STYLING
   ============================================================ */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: rgba(184,134,11,0.3);
  color: var(--white);
}

/* ============================================================
   FOCUS ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
