/* ================================================================
   InstantPayoutCasino.net — Global Stylesheet
   Design Tokens + Reset + Typography + Layout + Components
   ================================================================ */

/* ─── CSS Custom Properties (Design Tokens) ─────────────────── */
:root {
  /* Colors — Light Oat Theme */
  --luxe-noir:     #F5F2EA;   /* was dark bg, now warm oat background */
  --deep-noir:     #FFFFFF;   /* was dark surface, now clean white cards */
  --soft-oat:      #1C1A14;   /* was light text, now near-black text */
  --warm-gold:     #B8922E;   /* gold, slightly deeper for contrast on light bg */
  --deep-emerald:  #1A6B55;
  --warm-grey:     #6B6860;   /* was light muted, now warm mid-grey */
  --dark-oat:      #E2DDD3;   /* was dark border, now light warm border */
  --error-red:     #C0392B;
  --highlight-emerald: rgba(26,107,85,0.10);
  --gold-faint:    rgba(184,146,46,0.12);
  --gold-border:   rgba(184,146,46,0.25);
  /* Extra tokens for light theme */
  --page-bg:       #F5F2EA;
  --card-bg:       #FFFFFF;
  --card-bg-alt:   #FDFBF7;
  --border-light:  #E2DDD3;
  --text-primary:  #1C1A14;
  --text-secondary:#3D3B34;
  --text-muted:    #6B6860;
  --on-gold:       #1C1A14;   /* dark text for use ON gold/amber backgrounds */

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 64px;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

input, textarea, select {
  font: inherit;
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: var(--space-lg); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: var(--space-md); margin-top: var(--space-2xl); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: var(--space-sm); margin-top: var(--space-xl); }
h4 { font-size: 1.15rem; margin-bottom: var(--space-sm); margin-top: var(--space-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.8;
}

strong { color: var(--text-primary); font-weight: 600; }

/* ─── Utility / Layout ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

.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;
}

.text-gold   { color: var(--warm-gold); }
.text-muted  { color: var(--text-muted); }
.text-oat    { color: var(--text-primary); }
.text-emerald{ color: var(--deep-emerald); }

.bg-noir     { background: var(--page-bg); }
.bg-surface  { background: var(--card-bg); }

/* ─── Links ──────────────────────────────────────────────────── */
.content-body a:not(.btn) {
  color: var(--warm-gold);
  text-decoration: underline;
  text-decoration-color: rgba(184,146,46,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}
.content-body a:not(.btn):hover {
  text-decoration-color: var(--warm-gold);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--gold {
  background: var(--warm-gold);
  color: #FFFFFF;
}
.btn--gold:hover {
  background: #A07E24;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184,146,46,0.25);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--warm-gold);
  color: var(--warm-gold);
}
.btn--outline:hover {
  background: var(--gold-faint);
}

.btn--emerald {
  background: var(--deep-emerald);
  color: #FFFFFF;
}
.btn--emerald:hover {
  background: #1e7d63;
  box-shadow: 0 4px 16px rgba(26,107,85,0.2);
}

.btn--sm,
.btn--small {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

.btn--lg {
  font-size: 1.0625rem;
  padding: 1rem 2.25rem;
}

.btn--block {
  width: 100%;
}

/* ─── Header / Nav ───────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(28,26,20,0.08);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  height: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

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

.wordmark {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.wordmark__instant { font-weight: 700; color: var(--text-primary); }
.wordmark__casino  { font-weight: 900; color: var(--warm-gold); }
.wordmark__tld     { font-weight: 300; font-size: 0.8em; color: var(--text-muted); }

/* Nav */
.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 2rem);
}

.header__nav a,
.nav__dropdown-btn {
  font-size: clamp(0.8rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-sm) 0;
  position: relative;
  white-space: nowrap;
}
.header__nav a:hover,
.nav__dropdown-btn:hover,
.header__nav a.nav--active {
  color: var(--warm-gold);
}
.header__nav a.nav--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--warm-gold);
  border-radius: 1px;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-btn svg {
  transition: transform var(--transition-fast);
}
.dropdown--open .nav__dropdown-btn svg {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-sm) 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  box-shadow: 0 8px 32px rgba(28,26,20,0.12);
}
.dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav__dropdown-menu li a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__dropdown-menu li a:hover {
  background: rgba(184,146,46,0.08);
  color: var(--warm-gold);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta {
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}
.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav__toggle[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero Section (Homepage) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

.hero__left {
  background: linear-gradient(150deg, #C9A84C 0%, #B8922E 45%, #7A5E1A 100%);
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Sharp diagonal cut — no fuzzy gradient overlay needed */
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
  /* Extend width so clip-path doesn't crop content */
  margin-right: -80px;
  padding-right: calc(var(--space-3xl) + 80px);
  z-index: 1;
}

/* ::after no longer needed — clip-path handles the diagonal */
.hero__left::after {
  display: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-gold);
  background: rgba(0,0,0,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: var(--border-radius-pill);
  width: fit-content;
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--on-gold);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero__cheetah {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 280px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.hero__right {
  background: var(--card-bg-alt);
  padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  z-index: 0;
}

/* ─── Casino Cards ───────────────────────────────────────────── */
.casino-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(28,26,20,0.06);
}
.casino-card:hover {
  border-color: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,146,46,0.15);
}

.casino-card__thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
}

.casino-card__info {
  min-width: 0;
}

.casino-card__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.casino-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.casino-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--border-radius-pill);
}

.badge--speed {
  background: rgba(26,107,85,0.12);
  color: var(--deep-emerald);
}

.badge--bonus {
  background: var(--gold-faint);
  color: var(--warm-gold);
}

.badge--rating {
  background: rgba(28,26,20,0.07);
  color: var(--text-secondary);
}

.casino-card__cta {
  flex-shrink: 0;
}

/* ─── Casino Card (list/money page variant) ──────────────────── */
.casino-list-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 12px rgba(28,26,20,0.07);
}
.casino-list-card:hover {
  border-color: rgba(184,146,46,0.45);
  box-shadow: 0 8px 32px rgba(184,146,46,0.13);
}

/* ── Header strip ── */
.casino-list-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.casino-list-card__rank {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-gold);
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.casino-list-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(28,26,20,0.15);
  flex-shrink: 0;
}

/* name + stars + badges column */
.casino-list-card__header > div:last-child {
  flex: 1;
  min-width: 0;
}

.casino-list-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.casino-list-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}
.casino-list-card__stars img {
  width: 18px;
  height: 18px;
}

.casino-list-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ── Stats grid ── */
.casino-list-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(245,242,234,0.5);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid var(--border-light);
  font-size: 0.875rem;
}
.stat-item:nth-child(3n) {
  border-right: none;
}
/* second row — items 4, 5, 6 */
.stat-item:nth-child(n+4) {
  border-top: 1px solid var(--border-light);
}
.stat-item__icon {
  display: none;
}
.stat-item__label {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-item__value {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-left: 0;
}

/* ── Body text ── */
.casino-list-card__body {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: 0;
}

/* ── Pros / Cons ── */
.casino-list-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding: 0 var(--space-xl) var(--space-lg);
  margin-bottom: 0;
}

.pros-list,
.cons-list {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pros-list li:last-child,
.cons-list li:last-child {
  margin-bottom: 0;
}
.pros-list li::before {
  content: '✓';
  color: var(--deep-emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cons-list li::before {
  content: '✗';
  color: var(--error-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Footer ── */
.casino-list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-light);
  background: rgba(245,242,234,0.35);
}

.casino-list-card__footer a:last-child {
  font-size: 0.875rem;
  color: var(--warm-gold);
  font-weight: 600;
}
.casino-list-card__footer a:last-child:hover {
  text-decoration: underline;
}

/* ─── Payout Ticker ──────────────────────────────────────────── */
.ticker {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  max-width: var(--container-max);
  margin: var(--space-2xl) auto;
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: 0 2px 12px rgba(28,26,20,0.06);
}

.ticker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.ticker__item {
  text-align: center;
  position: relative;
}
.ticker__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: calc(var(--space-xl) / -2);
  height: 80%;
  width: 1px;
  background: var(--border-light);
}

.ticker__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.ticker__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.ticker__bar {
  height: 4px;
  background: rgba(26,107,85,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.ticker__bar-fill {
  height: 100%;
  background: var(--deep-emerald);
  border-radius: 2px;
  animation: pulseBar 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(26,107,85,0.5);
}

@keyframes pulseBar {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

/* ─── Stats Counters ─────────────────────────────────────────── */
.stats {
  padding: var(--space-3xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  text-align: center;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

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

/* ═══════════════════════════════════════════════════════════════
   REVIEW HERO  (.rh)  —  MOBILE-FIRST, fluid 330px → 1500px+
   Base = stacked (mobile). Only ≥1450 switches to 3-col grid.
   Everything uses clamp() so it scales at every pixel.
   ═══════════════════════════════════════════════════════════════ */

/* ── Container — stacked by default ─────────────────────────── */
.rh {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

/* ── LEFT — Gold identity panel ─────────────────────────────── */
.rh__left {
  background: linear-gradient(150deg, #D4A93A 0%, #B8922E 55%, #8A6A18 100%);
  padding: clamp(0.875rem, 3vw, 2rem) clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

/* identity row: logo + name/stars + score badge — always a row */
.rh__identity {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
}

.rh__logo-wrap {
  flex-shrink: 0;
  width: clamp(42px, 7vw, 68px);
  height: clamp(42px, 7vw, 68px);
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.rh__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rh__title-block {
  flex: 1;
  min-width: 0;
}
.rh__name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3vw, 2.25rem);
  color: var(--on-gold);
  line-height: 1.15;
  margin-bottom: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.rh__stars {
  display: flex;
  gap: 2px;
}
.rh__stars img {
  width: clamp(13px, 1.8vw, 18px);
  height: clamp(13px, 1.8vw, 18px);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

.rh__score-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: clamp(0.2rem, 0.5vw, 0.5rem) clamp(0.4rem, 0.8vw, 0.875rem);
  line-height: 1;
  min-width: clamp(42px, 5vw, 66px);
}
.rh__score-num {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 900;
  color: var(--on-gold);
}
.rh__score-label {
  font-size: clamp(0.5rem, 0.7vw, 0.7rem);
  color: rgba(28,26,20,0.65);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* meta row: author + date */
.rh__meta-row {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.8vw, 0.625rem);
  flex-wrap: wrap;
}
.rh__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.675rem, 1.1vw, 0.8125rem);
  color: rgba(28,26,20,0.7);
}
.rh__meta-item img { opacity: 0.65; }
.rh__meta-sep {
  color: rgba(28,26,20,0.45);
  font-size: 0.8125rem;
}

/* badge pills */
.rh__badges {
  display: flex;
  gap: clamp(4px, 0.8vw, 0.625rem);
  flex-wrap: wrap;
}
.rh__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.65rem, 1vw, 0.8125rem);
  font-weight: 700;
  padding: clamp(0.2rem, 0.4vw, 0.35rem) clamp(0.4rem, 0.8vw, 0.85rem);
  border-radius: var(--border-radius-pill);
}
.rh__badge img { width: 13px; height: 13px; flex-shrink: 0; }
.rh__badge--speed { background: var(--deep-emerald); color: #fff; }
.rh__badge--speed img { filter: brightness(10); }
.rh__badge--license {
  background: rgba(255,255,255,0.22);
  color: var(--on-gold);
  border: 1px solid rgba(255,255,255,0.35);
}

/* ── RIGHT — Stats panel ─────────────────────────────────────── */
.rh__right {
  background: var(--card-bg);
  padding: clamp(0.75rem, 2.5vw, 2rem) clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  border-top: 1px solid var(--border-light);
}

/* Stats grid — 2 col by default */
.rh__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.rh__stat {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: 6px;
  padding: clamp(0.4rem, 0.8vw, 0.65rem) clamp(0.45rem, 1vw, 0.875rem);
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  background: var(--card-bg);
  transition: background 0.15s;
}
.rh__stat:hover { background: var(--card-bg-alt); }

/* 2-col border logic */
.rh__stat:nth-child(2n) { border-right: none; }
.rh__stat:nth-last-child(2):not(.rh__stat--payments),
.rh__stat:nth-last-child(3):not(.rh__stat--payments) { border-bottom: none; }

/* payments row — always spans full grid width */
.rh__stat--payments {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-light);
  border-bottom: none;
  border-right: none;
  align-items: start;
}

.rh__stat-icon {
  grid-row: 1 / 3;
  font-size: 1rem;
  line-height: 1;
  padding-top: 2px;
  align-self: start;
}
.rh__stat-label {
  font-size: clamp(0.55rem, 0.85vw, 0.68rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.rh__stat-value {
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}
.rh__stat-value--highlight { color: var(--deep-emerald); }

/* payment icons row */
.rh__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  margin-top: 3px;
}
.rh__payments img {
  height: clamp(16px, 2.2vw, 22px);
  width: auto;
  max-width: 44px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  background: #fff;
  padding: 2px 3px;
}

/* CTA */
.rh__cta {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.rh__disclaimer {
  text-align: center;
  font-size: clamp(0.58rem, 0.8vw, 0.68rem);
  color: var(--text-muted);
  margin: 0;
}

/* ── PREVIEW — screenshot section ─────────────────────────────── */
/* Below 1450px: horizontal strip below stats panel */
/* At 1450px+: vertical column on the right (3rd grid col) */
.rh__preview {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 2.5vw, 1.5rem);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--page-bg);
  border-top: 1px solid var(--border-light);
  overflow: visible;
}
.rh__preview-label {
  font-size: clamp(0.6rem, 0.9vw, 0.6875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  flex-shrink: 0;
}
.rh__preview-devices {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.rh__device--desktop {
  position: relative;
  width: 75%;
  background: #1a1a1a;
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  overflow: hidden;
}
.rh__device-chrome {
  background: #2d2d2d;
  height: clamp(12px, 1.5vw, 18px);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  flex-shrink: 0;
}
.rh__device-dot { width: clamp(4px, 0.6vw, 7px); height: clamp(4px, 0.6vw, 7px); border-radius: 50%; background: #666; }
.rh__device-dot:first-child  { background: #ff5f57; }
.rh__device-dot:nth-child(2) { background: #febc2e; }
.rh__device-dot:nth-child(3) { background: #28c840; }
.rh__device--desktop img { display: block; width: 100%; height: auto; object-fit: cover; }
.rh__device--mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  overflow: hidden;
  border: 2px solid #333;
}
.rh__device-notch {
  background: #1a1a1a;
  height: clamp(6px, 1vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rh__device-notch::before { content: ''; width: clamp(20px, 4vw, 36px); height: clamp(3px, 0.5vw, 6px); background: #333; border-radius: 3px; }
.rh__device--mobile img { display: block; width: 100%; height: auto; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   REVIEW HERO — DESKTOP ≥ 1450px : 3-col grid + preview
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1450px) {
  .rh {
    display: grid;
    grid-template-columns: 38% 36% 26%;
    min-height: 400px;
  }
  .rh__left {
    padding: var(--space-2xl);
    gap: var(--space-lg);
  }
  .rh__right {
    border-top: none;
    border-left: 1px solid var(--border-light);
    padding: var(--space-2xl) var(--space-xl);
    justify-content: center;
  }
  .rh__stat { grid-template-columns: 22px 1fr; column-gap: 8px; }
  /* Preview becomes vertical column */
  .rh__preview {
    flex-direction: column;
    border-top: none;
    border-left: 1px solid var(--border-light);
    padding: var(--space-xl) var(--space-lg);
  }
  .rh__preview-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .rh__preview-devices {
    max-width: none;
  }
  .rh__device--desktop { width: 82%; }
  .rh__device--mobile { width: 32%; border-radius: 12px; }
}

/* ─── Score Bar ──────────────────────────────────────────────── */
.score-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-xl) 0;
}

.score-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.score-bar__item {
  text-align: center;
  position: relative;
}
.score-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: calc(var(--space-xl) / -2);
  height: 80%;
  width: 1px;
  background: var(--border-light);
}

.score-bar__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.score-bar__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.score-bar__progress {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar__progress-fill {
  height: 100%;
  background: var(--deep-emerald);
  border-radius: 2px;
  transition: width 1s ease;
}

/* Aliases for score-bar__track / score-bar__fill used in HTML */
.score-bar__track {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  background: var(--deep-emerald);
  border-radius: 2px;
  transition: width 1s ease;
}

/* ─── Two-Column Content Layout ──────────────────────────────── */
.content-layout {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-3xl) var(--space-lg);
}

.content-layout__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
}

.content-layout__main {
  min-width: 0; /* prevent overflow from tables/images */
}

.content-body h2,
.review-body h2,
.blog-body h2 {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}
.content-body h2:first-child,
.review-body h2:first-child,
.blog-body h2:first-child {
  border-top: none;
  padding-top: 0;
}

.content-body ul,
.content-body ol,
.review-body ul,
.review-body ol,
.blog-body ul,
.blog-body ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}
.content-body ul,
.review-body ul,
.blog-body ul { list-style: disc; }
.content-body ol,
.review-body ol,
.blog-body ol { list-style: decimal; }
.content-body li,
.review-body li,
.blog-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  align-self: start;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28,26,20,0.08);
}

.sidebar-card--sticky {
  position: sticky;
  top: calc(var(--header-height, 64px) + 1.5rem);
}

/* Blog sidebar: sticky wrapper holds both cards together */
.sidebar-sticky-group {
  position: sticky;
  top: calc(var(--header-height, 64px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Logo + score header block */
.sidebar-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 1.5rem auto 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-card__score {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
}

.sidebar-card__score-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

/* Divider sections */
.sidebar-card__section {
  border-top: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
}

.sidebar-card__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sidebar-card__heading--pro {
  color: var(--deep-emerald);
}
.sidebar-card__heading--pro::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--deep-emerald);
  flex-shrink: 0;
}
.sidebar-card__heading--con {
  color: var(--error-red, #c0392b);
}
.sidebar-card__heading--con::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--error-red, #c0392b);
  flex-shrink: 0;
}

/* Pros list */
.sidebar-card__pros,
.sidebar-card__cons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-card__pros li,
.sidebar-card__cons li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.sidebar-card__pros li {
  color: var(--text-primary);
}
.sidebar-card__pros li::before {
  content: '\2713';
  color: var(--deep-emerald);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(22,101,52,0.1);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-card__cons li {
  color: var(--text-secondary);
}
.sidebar-card__cons li::before {
  content: '\2717';
  color: var(--error-red, #c0392b);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(192,57,43,0.08);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA at bottom */
.btn--full {
  display: block;
  width: 100%;
  text-align: center;
}
.sidebar-card .btn--full {
  width: calc(100% - 2.5rem);
  margin: 0 1.25rem 1.25rem;
}

/* Sidebar Pros/Cons */
.sidebar-pros li {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.sidebar-pros li::before {
  content: '✓';
  color: var(--deep-emerald);
  font-weight: 700;
}
.sidebar-cons li {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.sidebar-cons li::before {
  content: '✗';
  color: var(--error-red);
  font-weight: 700;
}

/* ── Blog Sidebar: heading label ── */
.sidebar-card--blog .sidebar-card__heading {
  padding: 1rem 1.25rem 0;
  color: var(--text-muted);
}

/* spacing between sidebar cards */
.sidebar-card--blog + .sidebar-card--blog {
  margin-top: 0;
}

/* ── Blog Sidebar: casino rows ── */
.sidebar-card__casino-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-light);
}
.sidebar-card__casino-row:first-of-type {
  border-top: none;
}
.sidebar-card__casino-row img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.sidebar-card__casino-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sidebar-card__casino-info strong a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}
.sidebar-card__casino-info strong a:hover {
  color: var(--warm-gold);
}
.sidebar-card__badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--deep-emerald);
  background: rgba(22,101,52,0.08);
  border-radius: 20px;
  padding: 1px 8px;
  display: inline-block;
  white-space: nowrap;
}

/* ── Blog Sidebar: related articles list ── */
.sidebar-card__links {
  list-style: none;
  padding: 0 1.25rem 0.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-card__links li {
  border-top: 1px solid var(--border-light);
}
.sidebar-card__links li:first-child {
  border-top: none;
}
.sidebar-card__links li a {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.65rem 0;
  font-size: 0.8375rem;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.45;
  transition: color var(--transition-fast);
}
.sidebar-card__links li a::before {
  content: '→';
  color: var(--warm-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar-card__links li a:hover {
  color: var(--warm-gold);
}

/* ─── Blog Article Header ────────────────────────────────────── */
.article-header {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-light);
}

/* Full-width background image */
.article-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark gradient overlay so text is always readable */
.article-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,16,12,0.82) 0%,
    rgba(18,16,12,0.65) 55%,
    rgba(18,16,12,0.35) 100%
  );
  z-index: 1;
}

/* Content sits above the overlay */
.article-header__grid {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 var(--space-2xl);
  max-width: 700px;
}

.article-header__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--warm-gold);
}
.breadcrumb__sep {
  color: var(--warm-gold);
}

.article-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: #fff;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.article-meta__sep {
  color: var(--border-light);
}

.article-header .breadcrumb,
.article-header .breadcrumb a,
.article-header .breadcrumb__current {
  color: rgba(255,255,255,0.6);
}
.article-header .breadcrumb a:hover {
  color: var(--warm-gold);
}
.article-header .breadcrumb__sep {
  color: var(--warm-gold);
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.article-header__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.article-header__sep {
  color: rgba(255,255,255,0.3);
  margin: 0 0.1rem;
}

/* ─── Content Blocks ─────────────────────────────────────────── */
/* Pull Quote */
.pull-quote {
  background: rgba(184,146,46,0.06);
  border-left: 4px solid var(--warm-gold);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Tip Box */
.tip-box {
  background: rgba(26,107,85,0.07);
  border-left: 4px solid var(--deep-emerald);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.tip-box strong {
  color: var(--text-primary);
}
.tip-box__icon {
  display: inline-block;
  margin-right: var(--space-xs);
}

/* Warning Box */
.warning-box {
  background: rgba(192,57,43,0.07);
  border-left: 4px solid var(--error-red);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ─── Tables ─────────────────────────────────────────────────── */
.content-table {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin: var(--space-xl) 0;
  border: 1px solid var(--border-light);
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

.content-table thead th {
  background: var(--warm-gold);
  color: var(--on-gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  white-space: nowrap;
}

/* First column (Casino name) stretches; other columns stay on one line */
.content-table thead th:first-child { width: 100%; white-space: normal; }

.content-table tbody td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.content-table tbody td:first-child {
  white-space: normal;
}

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

.content-table tbody tr:nth-child(even) {
  background: rgba(245,242,234,0.6);
}

.content-table tbody tr.table-row--highlight {
  background: var(--highlight-emerald);
}

.table-row--highlight .table-highlight-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--deep-emerald);
  font-weight: 600;
}

/* Aliases for review-table / comparison-table used in HTML */
.review-table,
.comparison-table {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin: var(--space-xl) 0;
  border: 1px solid var(--border-light);
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

.review-table thead th,
.comparison-table thead th {
  background: var(--warm-gold);
  color: var(--on-gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  white-space: nowrap;
}

/* First column takes all remaining space; other columns fit their content */
.review-table thead th:first-child,
.comparison-table thead th:first-child {
  width: 100%;
  white-space: normal;
}
.review-table thead th:not(:first-child),
.comparison-table thead th:not(:first-child) {
  width: 1%;
}

.review-table tbody td,
.comparison-table tbody td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

/* First column — method name in teal, allowed to wrap */
.review-table tbody td:first-child,
.comparison-table tbody td:first-child {
  color: var(--deep-emerald);
  font-weight: 500;
  white-space: normal;
}

/* Deposit & Withdrawal columns — gold */
.review-table tbody td:nth-child(2),
.review-table tbody td:nth-child(3),
.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:nth-child(3) {
  color: var(--warm-gold);
  font-weight: 600;
}

/* Fee column — teal */
.review-table tbody td:nth-child(4),
.comparison-table tbody td:nth-child(4) {
  color: var(--deep-emerald);
  font-weight: 600;
}

/* Slower values (e.g. "1–3 Days") — add class="slow" to override gold */
.review-table tbody td.slow,
.comparison-table tbody td.slow {
  color: var(--text-secondary);
  font-weight: 400;
}

.review-table tbody tr:last-child td,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.review-table tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
  background: rgba(245,242,234,0.6);
}
.review-table tbody tr.table-row--highlight,
.comparison-table tbody tr.table-row--highlight {
  background: var(--highlight-emerald);
}
.comparison-table__highlight {
  background: rgba(26,107,85,0.08);
}
.comparison-table__highlight td:first-child {
  font-weight: 600;
  color: var(--deep-emerald);
}

/* Table footnote */
.table-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: calc(var(--space-sm) * -1);
  margin-bottom: var(--space-xl);
  padding-left: 0.25rem;
  line-height: 1.5;
}

/* ─── Payment Methods Badges ─────────────────────────────────── */
.payment-badges {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
}

.payment-badges h3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.payment-badges__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.payment-badges__grid img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.7);
  transition: filter var(--transition-fast);
}
.payment-badges__grid img:hover {
  filter: grayscale(0%) opacity(1);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--page-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.payment-badge img {
  width: 22px;
  height: 14px;
  object-fit: contain;
}

/* ─── "You Might Also Like" ──────────────────────────────────── */
.also-like {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-light);
}

.also-like__title,
.also-like__heading {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.also-like__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.also-like__card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  text-decoration: none;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 1px 4px rgba(28,26,20,0.05);
}
.also-like__card:hover {
  border-color: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,146,46,0.12);
}
.also-like__card img {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}
.also-like__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.also-like__name {
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.also-like__detail {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.also-like__card .btn--small {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
}

/* ─── Author Box ─────────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: var(--space-xl);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-3xl) 0;
  box-shadow: 0 2px 8px rgba(28,26,20,0.06);
}

.author-box__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.author-box__bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.author-box__link {
  font-size: 0.875rem;
  color: var(--warm-gold);
  transition: text-decoration var(--transition-fast);
}
.author-box__link:hover {
  text-decoration: underline;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #EDE9DF;
  border-top: 1px solid var(--border-light);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.footer__brand .header__logo {
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__badges {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}
.footer__badges img {
  height: 32px;
  width: auto;
  filter: invert(1) opacity(0.55);
  transition: filter var(--transition-base);
}
.footer__badges img:hover {
  filter: invert(1) opacity(1);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gold);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer__links a:hover {
  color: var(--warm-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__18plus {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ─── Affiliate Disclosure Banner ────────────────────────────── */
.affiliate-banner {
  background: #EDE9DF;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.affiliate-banner a {
  color: var(--warm-gold);
  text-decoration: underline;
}

/* ─── Page Header (Money/Legal pages) ────────────────────────── */
.page-header {
  padding: var(--space-3xl) 0 var(--space-xl);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-2xl);
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

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

/* Author meta line — used on page-header and article-header pages */
.article-header__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  justify-content: center;
}
.article-header__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.article-header__sep {
  color: var(--dark-oat);
}

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
  margin: var(--space-xl) 0;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--card-bg);
  text-align: left;
  transition: background var(--transition-fast);
}
.faq-question:hover {
  background: rgba(184,146,46,0.05);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--warm-gold);
}
.faq-item.faq--open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-item.faq--open .faq-answer {
  max-height: 600px;
}
.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  background: var(--card-bg);
}

/* ─── Contact Form ───────────────────────────────────────────── */
.contact-form {
  max-width: 600px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── 404 Page ───────────────────────────────────────────────── */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}
.page-404__code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
  opacity: 0.3;
}
.page-404__title {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

/* ─── Legal / Single Column Pages ────────────────────────────── */
.single-column {
  max-width: 800px;
  margin-inline: auto;
  padding: 0 var(--space-lg) var(--space-3xl);
}

.single-column h2 {
  font-size: 1.5rem;
}

.single-column p,
.single-column li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.single-column ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}
.single-column li {
  margin-bottom: var(--space-sm);
}

/* ─── RG Badges Grid (Responsible Gambling page) ─────────────── */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.rg-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: 0 1px 4px rgba(28,26,20,0.05);
}
.rg-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.rg-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.rg-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}
.rg-card__link {
  font-size: 0.8125rem;
  color: var(--warm-gold);
}

/* ─── Comparison Table Responsive Wrapper ────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-xl) 0;
}

/* Make tables in content areas horizontally scrollable on mobile */
.content-body,
.review-body,
.blog-body,
.legal-content {
  overflow-x: visible;
}
.content-body table,
.review-body table,
.blog-body table,
.legal-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── "Read Next" Cards ──────────────────────────────────────── */
.read-next {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-light);
}

.read-next__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
}

.read-next__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.read-next-card {
  text-decoration: none;
  display: block;
}
.read-next-card__image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-light);
}
.read-next-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.read-next-card:hover .read-next-card__image img {
  transform: scale(1.03);
}
.read-next-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-emerald);
  margin-bottom: var(--space-xs);
}
.read-next-card__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  line-height: 1.4;
}
.read-next-card:hover .read-next-card__title {
  color: var(--warm-gold);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .content-layout__grid {
    grid-template-columns: 1fr;
  }
  .article-header__inner {
    grid-template-columns: 1fr;
  }
  .score-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .score-bar__item:nth-child(2)::after {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    clip-path: none;
    margin-right: 0;
    padding: var(--space-2xl);
    border-radius: 0;
  }
  .hero__left::after {
    display: none;
  }
  .hero__right {
    padding: var(--space-2xl);
  }
  .also-like__grid {
    grid-template-columns: 1fr;
  }
  .casino-list-card__pros-cons {
    grid-template-columns: 1fr;
  }
  .casino-list-card__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(3n) {
    border-right: 1px solid var(--border-light);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-child(n+3) {
    border-top: 1px solid var(--border-light);
  }
  .stat-item:nth-child(n+4) {
    border-top: 1px solid var(--border-light);
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 56px;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-bg);
    padding: var(--space-xl);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu--open {
    display: block;
  }
  .header__nav ul {
    flex-direction: column;
    gap: 0;
  }
  .header__nav ul li {
    border-bottom: 1px solid var(--border-light);
  }
  .header__nav a,
  .nav__dropdown-btn {
    display: block;
    width: 100%;
    padding: var(--space-md) 0;
    font-size: 1.0625rem;
    white-space: normal;
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: var(--space-lg);
    background: var(--page-bg);
  }
  .dropdown--open .nav__dropdown-menu {
    display: block;
  }

  .nav__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .ticker__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .ticker__item::after { display: none; }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .score-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .score-bar__item::after { display: none; }

  .casino-card {
    grid-template-columns: 48px 1fr;
    gap: var(--space-sm);
  }
  .casino-card__cta {
    grid-column: 1 / -1;
  }
  .casino-card__thumb {
    width: 48px;
    height: 48px;
  }

  .read-next__grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .casino-list-card__footer {
    flex-direction: column;
    gap: var(--space-md);
  }
  .casino-list-card__footer .btn {
    width: 100%;
  }

  .pull-quote {
    font-size: 1.0625rem;
    padding: var(--space-lg);
  }

  /* Ensure hero CTA button is full-width on mobile */
  .hero__left .btn--lg {
    display: block;
    text-align: center;
  }

  /* Trust strip 2-col on tablet */
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why-trust grid 2 cols */
  .why-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__left {
    padding: var(--space-xl) var(--space-lg);
  }
  .hero__right {
    padding: var(--space-lg);
    gap: var(--space-sm);
  }
  .casino-card {
    grid-template-columns: 44px 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
  }
  .casino-card__thumb {
    width: 44px;
    height: 44px;
  }
  .casino-card__cta {
    grid-column: 1 / -1;
    text-align: center;
  }
  .casino-card__name {
    font-size: 0.9375rem;
  }
  .casino-list-card__stats {
    grid-template-columns: 1fr 1fr;
  }
  .casino-list-card__thumb {
    width: 56px;
    height: 56px;
  }
  .toc__list {
    padding-left: var(--space-md);
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .ticker__grid {
    grid-template-columns: 1fr;
  }
  .btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  .hero__badge {
    font-size: 0.6875rem;
  }
}

/* ================================================================
   BACK-TO-TOP BUTTON
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-gold);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(28,26,20,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #A07E24;
  transform: translateY(-2px);
}

/* ================================================================
   TABLE OF CONTENTS
   ================================================================ */
.toc {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--warm-gold);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28,26,20,0.05);
}
.toc__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(184,146,46,0.06);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.toc__icon {
  font-size: 1.125rem;
}
.toc__toggle {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.toc__toggle:hover {
  color: var(--warm-gold);
  border-color: var(--warm-gold);
}
.toc__nav {
  padding: var(--space-md) var(--space-lg);
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.toc__nav--collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.toc__list {
  list-style: decimal;
  padding-left: var(--space-lg);
  margin: 0;
  counter-reset: none;
}
.toc__list li {
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(226,221,211,0.7);
}
.toc__list li:last-child {
  border-bottom: none;
}
.toc__list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.toc__list a:hover {
  color: var(--warm-gold);
}

/* ================================================================
   SCREENSHOT GALLERY (Review pages)
   ================================================================ */
.screenshot-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.screenshot-gallery figure {
  margin: 0;
}
.screenshot-gallery img {
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
}
.screenshot-gallery figcaption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FEATURED IMAGE
   ================================================================ */
.featured-image {
  margin: var(--space-xl) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   TRUST SIGNALS STRIP
   ================================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: var(--space-2xl) 0;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}
.trust-strip__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.trust-strip__text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.trust-strip__text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================================================
   WHY TRUST US SECTION
   ================================================================ */
.why-trust {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  box-shadow: 0 2px 8px rgba(28,26,20,0.05);
}
.why-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.why-trust__item {
  text-align: center;
  padding: var(--space-lg);
}
.why-trust__item-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}
.why-trust__item h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.why-trust__item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   HOMEPAGE CASINO SHOWCASE GRID
   ================================================================ */
.casino-showcase {
  padding: var(--space-3xl) 0;
}
.casino-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.casino-showcase-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 2px 8px rgba(28,26,20,0.06);
}
.casino-showcase-card:hover {
  border-color: var(--warm-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,146,46,0.14);
}
.casino-showcase-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.casino-showcase-card__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.casino-showcase-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
}
.casino-showcase-card__score {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-gold);
}
.casino-showcase-card__bonus {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  color: var(--warm-gold);
  text-align: center;
  font-weight: 600;
}
.casino-showcase-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.casino-showcase-card__feat {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: rgba(28,26,20,0.06);
  border-radius: var(--border-radius-pill);
  padding: 0.25rem 0.65rem;
}
.casino-showcase-card__actions {
  display: flex;
  gap: var(--space-md);
  margin-top: auto;
}
.casino-showcase-card__actions .btn {
  flex: 1;
  text-align: center;
}
