/* ============================================================
   LTCSlots.com — Global Design System
   Palette: Off-white base, deep navy + electric blue accents
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --c-bg:          #F7F8FC;       /* off-white page background */
  --c-surface:     #FFFFFF;       /* cards, panels */
  --c-surface-alt: #EEF1F9;       /* subtle alternate surface */
  --c-navy:        #0B1437;       /* deep navy – headings, header bg */
  --c-blue:        #1A56DB;       /* primary CTA blue */
  --c-blue-light:  #3B82F6;       /* hover / accent */
  --c-blue-glow:   #60A5FA;       /* glow effects */
  --c-gold:        #F59E0B;       /* star ratings, highlights */
  --c-green:       #10B981;       /* pros, badges */
  --c-red:         #EF4444;       /* cons, warnings */
  --c-text:        #1E293B;       /* body text */
  --c-text-muted:  #64748B;       /* secondary text */
  --c-border:      #DDE3F0;       /* dividers */

  /* Typography */
  --font-sans:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,20,55,0.08), 0 1px 2px rgba(11,20,55,0.06);
  --shadow:    0 4px 16px rgba(11,20,55,0.10), 0 2px 6px rgba(11,20,55,0.06);
  --shadow-lg: 0 12px 40px rgba(11,20,55,0.14), 0 4px 12px rgba(11,20,55,0.08);
  --shadow-blue: 0 0 0 3px rgba(26,86,219,0.25);

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

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

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

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { color: var(--c-blue-light); }
ul, ol { padding-left: var(--sp-5); }
button { cursor: pointer; font-family: inherit; }

/* ---------- Typography scale ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--c-navy);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

/* ---------- Layout wrappers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
main { flex: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.65em 1.5em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.btn-primary:hover {
  background: var(--c-blue-light);
  border-color: var(--c-blue-light);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,86,219,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-outline:hover {
  background: var(--c-blue);
  color: #fff;
}

.btn-lg {
  padding: 0.85em 2em;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-cta {
  background: linear-gradient(135deg, #1A56DB 0%, #3B82F6 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.85em 2.2em;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
  transition: box-shadow var(--t-base), transform var(--t-fast);
}
.btn-cta:hover {
  box-shadow: 0 8px 32px rgba(26,86,219,0.55);
  transform: translateY(-2px);
  color: #fff;
}

/* ---------- Cards ---------- */
.card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card__body { padding: var(--sp-6); }
.card__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-alt);
}

/* ══════════════════════════════════════════
   BENTO CASINO GRID  (.bc-*)
══════════════════════════════════════════ */
.bento-section {
  padding: var(--sp-20) 0;
  background: var(--c-navy);
}
.bento-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.bento-section .section-title { color: #fff; }
.bento-section .section-intro { color: rgba(255,255,255,0.55); }

/* Grid: featured spans full width row 1; 4 equal cols row 2 */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bc--featured { grid-column: 1 / -1; }

/* ── Review hero image (review pages only) ── */
.review-hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(11,20,55,0.18);
}

/* ════════════════════════════════
   SMALL CARDS  (#2 – #5)
════════════════════════════════ */
.bc {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.bc:hover {
  border-color: rgba(96,165,250,0.35);
  box-shadow: 0 4px 24px rgba(96,165,250,0.08);
  transform: translateY(-2px);
}

/* Thumbnail wrapper — image + rank badge overlay */
.bc__thumb {
  position: relative;
  flex-shrink: 0;
}
.bc__img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
}
.bc__rank-badge--sm {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11,20,55,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

/* Card body — all text content */
.bc__body {
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.bc__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bc__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc__score {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F59E0B;
  white-space: nowrap;
  flex-shrink: 0;
}
.bc__bonus {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6EE7B7;
  margin: 0;
  line-height: 1.3;
}
.bc__bonus-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  margin: 0;
  line-height: 1.3;
}
.bc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.bc__chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

/* Card footer — always pinned to bottom */
.bc__foot {
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bc__play {
  display: block;
  text-align: center;
  background: #1A56DB;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 160ms ease;
}
.bc__play:hover { background: #1d4ed8; }
.bc__review {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 150ms ease;
}
.bc__review:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════
   FEATURED CARD  (#1)
════════════════════════════════ */
.bc--featured {
  background: linear-gradient(115deg, rgba(26,86,219,0.2) 0%, rgba(8,14,44,0.9) 60%);
  border-color: rgba(96,165,250,0.22);
  border-radius: 16px;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

/* Featured image — left column */
.bc__img--featured {
  display: block;
  width: 340px;
  min-width: 240px;
  height: 100%;
  min-height: 200px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0;
}

/* Featured text block */
.bc--featured .bc__content {
  flex: 1;
  min-width: 0;
  padding: 28px 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

/* Featured rank badge (inside content) */
.bc__rank-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #1A56DB, #3B82F6);
  border-radius: 8px;
  padding: 6px 12px;
  align-self: flex-start;
  line-height: 1;
  gap: 1px;
}
.bc__rank-num   { font-size: 1.25rem; font-weight: 800; color: #fff; }
.bc__rank-label { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

.bc--featured .bc__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bc--featured .bc__name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  white-space: normal;
}
.bc--featured .bc__score {
  font-size: 0.8rem;
  font-weight: 700;
  color: #F59E0B;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 999px;
  padding: 2px 9px;
}
.bc--featured .bc__bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6EE7B7;
  margin: 0;
  line-height: 1.4;
}
.bc--featured .bc__bonus-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: -4px 0 0;
}
.bc--featured .bc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bc--featured .bc__chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Featured actions — right column */
.bc--featured .bc__actions {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  flex-shrink: 0;
  width: 168px;
}
.bc--featured .bc__play {
  display: block;
  text-align: center;
  background: #1A56DB;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 0;
  border-radius: 9px;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease;
}
.bc--featured .bc__play:hover {
  background: #1d4ed8;
  box-shadow: 0 0 20px rgba(26,86,219,0.45);
}
.bc--featured .bc__review {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 150ms ease;
}
.bc--featured .bc__review:hover { color: rgba(255,255,255,0.7); }

/* Glow orb */
.bc__glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
  top: -80px; right: -40px;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bc--featured {
    flex-direction: column;
    grid-column: 1 / -1;
  }
  .bc__img--featured {
    width: 100%;
    height: 220px;
    min-height: 0;
  }
  .bc--featured .bc__content {
    padding: 22px 22px 0;
  }
  .bc--featured .bc__actions {
    flex-direction: row;
    width: auto;
    padding: 12px 22px 22px;
    gap: 10px;
  }
  .bc--featured .bc__play { flex: 1; }
}
@media (max-width: 580px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bc__img { height: 140px; }
  .bc--featured .bc__actions { flex-direction: column; }
}

/* ---------- Casino card ---------- */
.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
  position: relative;
}
.casino-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.casino-card__rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.casino-card__logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--c-surface-alt);
}
.casino-card__info { min-width: 0; }
.casino-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-1);
}
.casino-card__bonus {
  font-size: 0.9rem;
  color: var(--c-green);
  font-weight: 600;
}
.casino-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex-shrink: 0;
  align-items: flex-end;
}
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-gold);
}

/* ---------- Badges / Tags ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.2em 0.65em;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}
.badge--blue   { background: #EFF6FF; color: var(--c-blue); }
.badge--green  { background: #ECFDF5; color: #059669; }
.badge--gold   { background: #FFFBEB; color: #D97706; }
.badge--red    { background: #FEF2F2; color: #DC2626; }
.badge--navy   { background: var(--c-navy); color: #fff; }

/* ---------- Stars ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-gold);
  font-size: 1rem;
}
.stars--sm { font-size: 0.8rem; }

/* ---------- Score ring ---------- */
.score-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--c-blue) calc(var(--pct,0) * 1%), var(--c-border) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-navy);
  position: relative;
}
.score-ring::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--c-surface);
}
.score-ring span { position: relative; z-index: 1; }

/* ---------- Section headings ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--sp-4);
}
.section-intro {
  color: var(--c-text-muted);
  max-width: 620px;
  margin-bottom: var(--sp-8);
}

/* ---------- Pros / Cons ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros-cons__box {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border: 1px solid var(--c-border);
}
.pros-cons__box--pros { border-top: 3px solid var(--c-green); }
.pros-cons__box--cons { border-top: 3px solid var(--c-red); }

.pros-cons__title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-3);
}
.pros-cons__box--pros .pros-cons__title { color: var(--c-green); }
.pros-cons__box--cons .pros-cons__title { color: var(--c-red); }

.pros-cons__list { list-style: none; padding: 0; }
.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.92rem;
  margin-bottom: var(--sp-2);
}
.pros-cons__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.pros-cons__box--pros li::before {
  background-color: var(--c-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pros-cons__box--cons li::before {
  background-color: var(--c-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---------- Info table ---------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--c-border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: 0.92rem;
}
.info-table th {
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
  width: 40%;
}
.info-table td { color: var(--c-text); font-weight: 500; }
.info-table tr:nth-child(odd) td { background: var(--c-surface-alt); }

/* ---------- FAQ accordion ---------- */
.faq { border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq__question:hover { background: var(--c-surface-alt); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
  font-size: 1rem;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}
.faq__item.open .faq__answer {
  max-height: 600px;
}
.faq__answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.93rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ---------- Hero section ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy) 0%, #132047 60%, #1A2E6C 100%);
  color: #fff;
  padding: var(--sp-24) 0 var(--sp-24);
}
.hero__bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-glow::before,
.hero__bg-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__bg-glow::before {
  width: 600px;
  height: 600px;
  background: var(--c-blue);
  top: -150px;
  right: -100px;
}
.hero__bg-glow::after {
  width: 400px;
  height: 400px;
  background: var(--c-blue-glow);
  bottom: -100px;
  left: 5%;
}
.hero__content { position: relative; z-index: 1; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
  color: var(--c-blue-glow);
  border-radius: 999px;
  padding: 0.3em 1em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.hero h1 { color: #fff; margin-bottom: var(--sp-5); }
.hero h1 span { color: var(--c-blue-glow); }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- Particles canvas (shared) ---------- */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Review split section ---------- */
.review-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.review-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 460px;
}
.review-split__img img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.review-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.review-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.review-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.review-step strong {
  display: block;
  margin-bottom: 2px;
}
.review-step p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin: 0;
}
@media (max-width: 860px) {
  .review-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .review-split__img {
    max-height: 300px;
  }
  .review-split__img img {
    max-height: 300px;
  }
}
@media (max-width: 480px) {
  .review-split__img {
    max-height: 220px;
  }
  .review-split__img img {
    max-height: 220px;
  }
}

/* ---------- Section padding ---------- */
.section { padding: var(--sp-20) 0; }
.section--alt { background: var(--c-surface-alt); }
.section--dark {
  background: var(--c-navy);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark .section-label { color: #fff; }
.section--dark .section-label::before { background: var(--c-blue-glow); }
.section--dark p { color: rgba(255,255,255,0.72); }

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
/* Supports both:
   <ol class="breadcrumb"> ... <li> ...
   <nav class="breadcrumb"><ol> ... <li> ... */
.breadcrumb,
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-5);
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '/';
  margin: 0 0.45em;
  opacity: 0.45;
  flex-shrink: 0;
}
.breadcrumb a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 150ms ease;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.95); }
.breadcrumb--dark { color: var(--c-text-muted); }
.breadcrumb--dark a { color: var(--c-blue); }
.breadcrumb--dark li[aria-current="page"] { color: var(--c-text); }

/* ---------- Table of contents ---------- */
.toc {
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-blue);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}
.toc__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.toc ol { counter-reset: toc-counter; list-style: none; padding: 0; }
.toc li {
  counter-increment: toc-counter;
  font-size: 0.92rem;
  margin-bottom: var(--sp-2);
}
.toc li::before {
  content: counter(toc-counter) ". ";
  color: var(--c-blue);
  font-weight: 600;
}
.toc a { color: var(--c-text); }
.toc a:hover { color: var(--c-blue); }

/* ---------- Quick-facts bar (casino hero) ---------- */
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-8);
  backdrop-filter: blur(8px);
}
.quick-facts__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  min-width: 140px;
}
.quick-facts__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(96,165,250,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.quick-facts__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.quick-facts__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

/* ---------- Review score boxes ---------- */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: var(--sp-4);
}
.score-box {
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
}
.score-box__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.score-box__label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--c-surface-alt), var(--c-border));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--sp-6);
  border: 2px dashed var(--c-border);
}
.img-placeholder svg { opacity: 0.4; }

/* ---------- Trust badges strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.trust-strip__item svg { color: var(--c-blue); }

/* ---------- Notification / callout ---------- */
.callout {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-blue);
  background: #EFF6FF;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.callout--warn {
  border-color: var(--c-gold);
  background: #FFFBEB;
}
.callout--danger {
  border-color: var(--c-red);
  background: #FEF2F2;
}
.callout--success {
  border-color: var(--c-green);
  background: #ECFDF5;
}

/* ---------- Animated LTC coin (CSS only) ---------- */
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(8deg); }
}
@keyframes coinSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp { from { opacity:0; } to { opacity:1; } }

.animate-fadeInUp  { animation: fadeInUp  0.6s ease both; }
.animate-fadeIn    { animation: fadeIn    0.5s ease both; }
.animate-slideLeft { animation: slideInLeft 0.5s ease both; }

[data-delay="1"] { animation-delay: 0.1s; }
[data-delay="2"] { animation-delay: 0.2s; }
[data-delay="3"] { animation-delay: 0.3s; }
[data-delay="4"] { animation-delay: 0.4s; }
[data-delay="5"] { animation-delay: 0.5s; }

/* ---------- Scroll-to-top button ---------- */
#scroll-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  background: var(--c-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--t-base), transform var(--t-fast);
  z-index: 999;
  font-size: 1.2rem;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover {
  background: var(--c-blue-light);
  transform: translateY(-3px);
}

/* ---------- Responsible gambling bar ---------- */
.rg-bar {
  background: var(--c-navy);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  padding: var(--sp-2) 0;
  text-align: center;
}
.rg-bar a { color: var(--c-blue-glow); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1A2E6C 100%);
  padding: 1.25rem 0 var(--sp-8);
  color: #fff;
  position: relative;
  overflow: hidden;
  /* flush against sticky header — no margin-top gap */
  margin-top: 0;
}
.page-header h1,
.page-header .page-header__title {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}
.page-header p,
.page-header .page-header__subtitle {
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin-top: var(--sp-3);
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header__inner--centered { text-align: center; }
@media (max-width: 860px) {
  .page-header__inner[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
  .page-header__hero-img img {
    width: 100% !important;
    max-width: 520px;
    margin: var(--sp-4) auto 0;
  }
}
@media (max-width: 360px) {
  .page-header__hero-img { display: none; }
}
.page-header > .container,
.page-header > .container.page-header__content { position: relative; z-index: 1; }
.page-header__inner--centered .page-header__subtitle { margin-left: auto; margin-right: auto; }
/* meta line ("By … · Updated … · ~7 min read") inside dark hero */
.page-header .review-meta { color: rgba(255,255,255,0.55); margin-top: var(--sp-4); margin-bottom: 0; }
.page-header .review-meta a { color: rgba(255,255,255,0.82); }
.page-header__bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-header__bg-glow::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--c-blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.13;
  top: -150px;
  right: -80px;
}
@media (max-width: 640px) {
  .page-header { padding: var(--sp-8) 0 var(--sp-8); }
}
@media (max-width: 380px) {
  .page-header { padding: var(--sp-6) 0 var(--sp-6); }
}

/* nav-toggle styles live in header-footer.css */

/* ---------- Utility classes ---------- */
.text-center { text-align: center; }
.text-muted  { color: var(--c-text-muted); }
.text-blue   { color: var(--c-blue); }
.text-green  { color: var(--c-green); }
.text-gold   { color: var(--c-gold); }
.text-white  { color: #fff; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.gap-4 { gap: var(--sp-4); }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.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;
}

/* ============================================================
   EXTENDED COMPONENT LIBRARY — added for review, comparison,
   RG, about, team, and process pages
   ============================================================ */

/* ---------- Btn aliases (--primary, --outline, --secondary) ---------- */
.btn--primary  { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.btn--primary:hover { background: var(--c-blue-light); border-color: var(--c-blue-light); color: #fff; box-shadow: 0 6px 20px rgba(26,86,219,.35); }
.btn--outline  { background: transparent; color: var(--c-blue); border-color: var(--c-blue); }
.btn--outline:hover { background: var(--c-blue); color: #fff; }
.btn--secondary { background: var(--c-surface); color: var(--c-navy); border-color: var(--c-border); }
.btn--secondary:hover { background: var(--c-surface-alt); }
.btn--sm { padding: .45em 1.1em; font-size: .85rem; }

/* ---------- Container – review two-column ---------- */
.container--review {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 1024px) { .container--review { grid-template-columns: 1fr; } }

/* ---------- Review page layout ---------- */
.review-main { min-width: 0; }
.review-sidebar { position: sticky; top: 80px; }
.review-section { margin-bottom: var(--sp-12); scroll-margin-top: 90px; }
.verdict-section { margin-bottom: var(--sp-12); }

/* ---------- Review meta / score caption ---------- */
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.score-caption { font-size: .78rem; color: var(--c-text-muted); text-align: center; margin-top: var(--sp-1); }
.affiliate-note {
  font-size: .8rem;
  color: var(--c-text-muted);
  font-style: italic;
  margin-top: var(--sp-2);
}

/* ---------- Casino identity block (hero area) ---------- */
.casino-identity {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.casino-identity__logo {
  width: 120px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--c-surface-alt);
}
.casino-identity__meta { flex: 1; min-width: 200px; }
.casino-identity__name { font-size: 1.4rem; font-weight: 800; margin-bottom: var(--sp-2); }
.casino-identity__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }

/* ============================================================
   REVIEW PAGE v2 — instant-info verdict card + article
   ============================================================ */

/* Verdict card — full-width block right below hero image */
.rv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: var(--sp-8) 0 var(--sp-10);
  box-shadow: var(--shadow);
}
.rv-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-6) var(--sp-8);
  background: linear-gradient(135deg, var(--c-navy) 0%, #1A2E6C 100%);
  color: #fff;
}
.rv-card__score-wrap { text-align: center; }
.rv-card__score-num {
  font-size: 3rem;
  font-weight: 800;
  color: #60A5FA;
  line-height: 1;
}
.rv-card__score-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.rv-card__identity { min-width: 0; }
.rv-card__name { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--sp-1); }
.rv-card__tagline { font-size: .92rem; color: rgba(255,255,255,.65); margin-bottom: var(--sp-3); }
.rv-card__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.rv-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}
.rv-tag--green { background: rgba(16,185,129,.18); color: #6EE7B7; border-color: rgba(16,185,129,.3); }
.rv-tag--gold  { background: rgba(245,158,11,.15); color: #FCD34D; border-color: rgba(245,158,11,.25); }
.rv-tag--red   { background: rgba(239,68,68,.15); color: #FCA5A5; border-color: rgba(239,68,68,.25); }
.rv-card__cta { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.rv-card__cta .btn { white-space: nowrap; min-width: 160px; text-align: center; }
.rv-card__cta-note { font-size: .72rem; color: rgba(255,255,255,.45); text-align: center; }

/* Quick-stat pills row */
.rv-card__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--c-border);
}
.rv-stat {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.rv-stat:last-child { border-right: none; }
.rv-stat__val { font-size: 1.05rem; font-weight: 800; color: var(--c-navy); }
.rv-stat__key { font-size: .72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Pros / cons row */
.rv-card__pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c-border);
}
.rv-pc-col { padding: var(--sp-5) var(--sp-6); }
.rv-pc-col--pros { border-right: 1px solid var(--c-border); }
.rv-pc-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: var(--sp-3);
}
.rv-pc-col--pros .rv-pc-title { color: var(--c-green); }
.rv-pc-col--cons .rv-pc-title { color: var(--c-red); }
.rv-pc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.rv-pc-list li { font-size: .88rem; display: flex; align-items: flex-start; gap: var(--sp-2); line-height: 1.45; }
.rv-pc-list li::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; margin-top: 1px; }
.rv-pc-col--pros .rv-pc-list li::before { background: var(--c-green); content: '✓'; font-size: .65rem; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.rv-pc-col--cons .rv-pc-list li::before { background: var(--c-red); content: '✕'; font-size: .65rem; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }

/* Score bars row */
.rv-card__bars { padding: var(--sp-5) var(--sp-6); }
.rv-bars-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-text-muted); margin-bottom: var(--sp-4); }
.rv-bars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-2) var(--sp-4); }
.rv-bar-item { display: flex; flex-direction: column; gap: 6px; }
.rv-bar-item__label { font-size: .75rem; color: var(--c-text-muted); }
.rv-bar-item__track { height: 6px; background: var(--c-border); border-radius: 999px; overflow: hidden; }
.rv-bar-item__fill { height: 100%; background: linear-gradient(90deg, var(--c-blue), #60A5FA); border-radius: 999px; width: 0; transition: width 1s ease; }
.rv-bar-item__val { font-size: .82rem; font-weight: 700; color: var(--c-blue); }

/* Responsive */
@media (max-width: 860px) {
  .rv-card__top { grid-template-columns: auto 1fr; }
  .rv-card__cta { display: none; }
  .rv-card__stats { grid-template-columns: repeat(3, 1fr); }
  .rv-stat:nth-child(3) { border-right: none; }
  .rv-stat:nth-child(4) { border-top: 1px solid var(--c-border); }
  .rv-stat:nth-child(5) { border-top: 1px solid var(--c-border); }
  .rv-bars-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .rv-card__top { grid-template-columns: 1fr; gap: var(--sp-4); padding: var(--sp-5); }
  .rv-card__score-wrap { display: flex; align-items: center; gap: var(--sp-3); }
  .rv-card__score-num { font-size: 2.2rem; }
  .rv-card__name { font-size: 1.2rem; }
  .rv-card__stats { grid-template-columns: repeat(2, 1fr); }
  .rv-stat:nth-child(2) { border-right: none; }
  .rv-stat:nth-child(3) { border-top: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }
  .rv-stat:nth-child(4) { border-top: 1px solid var(--c-border); border-right: none; }
  .rv-stat:nth-child(5) { grid-column: 1 / -1; border-top: 1px solid var(--c-border); border-right: none; }
  .rv-card__pc { grid-template-columns: 1fr; }
  .rv-pc-col--pros { border-right: none; border-bottom: 1px solid var(--c-border); }
  .rv-bars-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-pc-col { padding: var(--sp-4) var(--sp-5); }
}

/* Sticky visit CTA bar that appears below the fold */
.rv-sticky-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(11,20,55,.3);
}
.rv-sticky-bar__info { font-size: .9rem; }
.rv-sticky-bar__info strong { color: #60A5FA; }
.rv-sticky-bar__info span { color: rgba(255,255,255,.55); font-size: .8rem; margin-left: var(--sp-2); }
.rv-sticky-bar .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 480px) {
  .rv-sticky-bar__info span { display: none; }
  .rv-sticky-bar { padding: var(--sp-3) var(--sp-4); }
}

/* ---------- Rating breakdown bars ---------- */
.rating-breakdown {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}
.rating-breakdown h3 { font-size: 1rem; margin-bottom: var(--sp-4); }
.rating-bar-group { display: flex; flex-direction: column; gap: var(--sp-3); }
.rating-bar-row { display: grid; grid-template-columns: 160px 1fr 44px; align-items: center; gap: var(--sp-3); }
.rating-bar-label { font-size: .88rem; font-weight: 600; color: var(--c-text); }
.rating-bar-val { font-size: .9rem; font-weight: 700; color: var(--c-blue); text-align: right; }
.rating-bar-track {
  height: 8px;
  background: var(--c-border);
  border-radius: 999px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-light));
  border-radius: 999px;
  width: 0;
  transition: width 1s ease;
}

/* Compact inline version used inside ranked casino cards */
.rated-bars-inline { display: flex; flex-direction: column; gap: var(--sp-2); }
.rated-bars-inline .rating-bar-row { grid-template-columns: 120px 1fr 36px; }
.rated-bars-inline .rating-bar-label { font-size: .8rem; }
.rated-bars-inline .rating-bar-val { font-size: .82rem; }
.rated-bars-inline .rating-bar-track { height: 6px; }

/* ---------- Score ring size modifiers ---------- */
.score-ring--lg { width: 100px; height: 100px; font-size: 1.4rem; }
.score-ring--lg::before { inset: 9px; }
.score-ring--sm { width: 48px; height: 48px; font-size: .82rem; }
.score-ring--sm::before { inset: 5px; }

/* ---------- Verdict box ---------- */
.verdict-box {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1A2E6C 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  color: #fff;
}
.verdict-score {
  flex-shrink: 0;
  text-align: center;
}
.verdict-score__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-blue-glow);
  line-height: 1;
}
.verdict-score__label { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; }
.verdict-text h3 { color: #fff; margin-bottom: var(--sp-3); font-size: 1.2rem; }
.verdict-text p { color: rgba(255,255,255,.78); font-size: .93rem; }
@media (max-width: 560px) { .verdict-box { flex-direction: column; } }

/* ---------- Banking table ---------- */
.banking-table-wrap { overflow-x: auto; }
.banking-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.banking-table th, .banking-table td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--c-border); text-align: left; }
.banking-table th { background: var(--c-surface-alt); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-muted); }
.banking-table tbody tr:hover { background: var(--c-surface-alt); }
.row-highlight td { background: #EFF6FF !important; font-weight: 600; }
.row-highlight td:first-child { border-left: 3px solid var(--c-blue); }

/* ---------- Bonus card ---------- */
.bonus-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.bonus-card__headline { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-blue); margin-bottom: var(--sp-2); }
.bonus-card__value { font-size: 1.8rem; font-weight: 800; color: var(--c-navy); line-height: 1.15; margin-bottom: var(--sp-3); }
.bonus-card__terms { font-size: .82rem; color: var(--c-text-muted); }
.bonus-card__terms li { margin-bottom: var(--sp-1); }

/* ---------- Bonus steps (multi-deposit breakdown) ---------- */
.bonus-steps { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-5) 0; }
.bonus-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
}
.bonus-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-step__body { flex: 1; }
.bonus-step__body strong { display: block; font-size: .95rem; margin-bottom: var(--sp-1); }
.bonus-step__body p { font-size: .88rem; color: var(--c-text-muted); margin: 0; }

/* ---------- Sidebar components ---------- */
.sidebar-casino-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sidebar-score { text-align: center; margin: var(--sp-4) 0; }
.sidebar-score-text { font-size: 2.5rem; font-weight: 800; color: var(--c-blue); line-height: 1; }
.sidebar-score-label { font-size: .75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.sidebar-score-sub { font-size: .82rem; color: var(--c-text-muted); margin-top: var(--sp-2); }

.sidebar-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.sidebar-widget h4 { font-size: .9rem; margin-bottom: var(--sp-3); }
.sidebar-widget--rg { border-top: 3px solid var(--c-red); }
.sidebar-widget--bonus { border-top: 3px solid var(--c-green); }

/* ---------- Author box ---------- */
.author-box {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin: var(--sp-8) 0 var(--sp-4);
}
.author-box__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-blue);
}
.author-box__body { min-width: 0; }
.author-box__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.author-box__label { font-size: .75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; }
.author-box__name { font-size: 1.05rem; font-weight: 800; color: var(--c-blue); text-decoration: none; }
.author-box__name:hover { text-decoration: underline; }
.author-box__title { font-size: .8rem; color: var(--c-text-muted); }
.author-box__bio { font-size: .9rem; line-height: 1.6; color: var(--c-text-muted); margin: 0 0 var(--sp-3); }
.author-box__links { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.author-box__link { font-size: .82rem; font-weight: 600; color: var(--c-blue); text-decoration: none; }
.author-box__link:hover { text-decoration: underline; }
@media (max-width: 580px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-box__meta { justify-content: center; }
  .author-box__links { justify-content: center; }
}

.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--c-border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: var(--sp-2) 0; font-size: .9rem; }

.sidebar-facts { list-style: none; padding: 0; }
.sidebar-facts li { display: flex; justify-content: space-between; padding: var(--sp-2) 0; border-bottom: 1px solid var(--c-border); font-size: .88rem; }
.sidebar-facts li:last-child { border-bottom: none; }
.sidebar-facts li span:first-child { color: var(--c-text-muted); }
.sidebar-facts li span:last-child { font-weight: 600; }

.sidebar-bonus-val { font-size: 1.4rem; font-weight: 800; color: var(--c-green); text-align: center; margin: var(--sp-3) 0; }
.sidebar-disclaimer { font-size: .75rem; color: var(--c-text-muted); font-style: italic; margin-top: var(--sp-3); line-height: 1.5; }

/* ---------- Badge variants ---------- */
.badge--silver  { background: #F1F5F9; color: #475569; }
.badge--bronze  { background: #FFF7ED; color: #C2410C; }
.badge--warning { background: #FFFBEB; color: #D97706; }

/* Callout variants */
.callout--ltc { border-color: #a855f7; background: #faf5ff; }
.callout--affiliate { border-color: var(--c-text-muted); background: var(--c-surface-alt); }
.callout--warning { border-color: var(--c-gold); background: #FFFBEB; }
.callout__link { font-weight: 600; }
.callout__disclaimer { font-size: .82rem; color: var(--c-text-muted); font-style: italic; }
p.callout { display: block; }

/* ---------- Ranked casino list ---------- */
.ranked-list { display: flex; flex-direction: column; gap: var(--sp-6); }

.ranked-casino {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.ranked-casino:hover { box-shadow: var(--shadow); }
.ranked-casino--top { border-top: 3px solid var(--c-gold); }

.ranked-casino__rank {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-surface-alt);
  border-bottom: 1px solid var(--c-border);
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-navy);
}
.ranked-casino__rank-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ranked-casino__rank-num--gold { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.ranked-casino__rank-num--silver { background: linear-gradient(135deg, #94A3B8, #CBD5E1); }
.ranked-casino__rank-num--bronze { background: linear-gradient(135deg, #C2410C, #F97316); }

.ranked-casino__inner { display: grid; grid-template-columns: 200px 1fr auto; gap: var(--sp-6); padding: var(--sp-6); align-items: start; }
@media (max-width: 768px) { .ranked-casino__inner { grid-template-columns: 1fr; } }
.ranked-casino__logo img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; display: block; transition: transform .25s ease, box-shadow .25s ease; }
.ranked-casino:hover .ranked-casino__logo img { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.ranked-casino__content { flex: 1; min-width: 0; }
.ranked-casino__header { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-4); margin-bottom: var(--sp-3); flex-wrap: nowrap; }
.ranked-casino__header > div:first-child { flex: 1; min-width: 0; }
.ranked-casino__name { font-size: 1.25rem; font-weight: 800; color: var(--c-navy); }
.ranked-casino__badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.ranked-casino__score { text-align: center; flex-shrink: 0; }
.ranked-casino__score-num { font-size: 1.8rem; font-weight: 800; color: var(--c-blue); line-height: 1; }
.ranked-casino__score-label { font-size: .72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }

.ranked-casino__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-alt);
  flex-wrap: wrap;
}
.ranked-casino__quick { display: flex; flex-wrap: wrap; gap: var(--sp-3); font-size: .85rem; color: var(--c-text-muted); }
.ranked-casino__quick span::before { content: '✓ '; color: var(--c-green); font-weight: 700; }
.ranked-casino__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ---------- Quick picks ---------- */
.quick-picks { margin-bottom: var(--sp-10); }
.quick-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.quick-pick-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.quick-pick-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.quick-pick-card__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--c-text-muted); margin-bottom: var(--sp-2); font-weight: 700; }
.quick-pick-card__name { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: var(--sp-2); }
.quick-pick-card__sub { font-size: .82rem; color: var(--c-text-muted); }

/* ---------- Content intro + criteria ---------- */
.content-intro { margin-bottom: var(--sp-10); }
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-4); margin-top: var(--sp-5); }
.criteria-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.criteria-item__icon { font-size: 1.5rem; margin-bottom: var(--sp-2); }
.criteria-item__label { font-size: .88rem; font-weight: 700; color: var(--c-navy); }
.criteria-item__weight { font-size: 1.3rem; font-weight: 800; color: var(--c-blue); margin: var(--sp-1) 0; }
.criteria-item__desc { font-size: .8rem; color: var(--c-text-muted); }

/* ---------- Comparison section + score badge ---------- */
.comparison-section { margin-bottom: var(--sp-12); overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.comparison-table th, .comparison-table td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--c-border); text-align: left; white-space: nowrap; }
.comparison-table th { background: var(--c-navy); color: #fff; font-weight: 700; }
.comparison-table tbody tr:hover { background: var(--c-surface-alt); }
.comparison-table tbody tr:nth-child(odd) td { background: #f9fafc; }
.comparison-table tbody tr:hover td { background: var(--c-surface-alt) !important; }

.score-badge { display: inline-block; padding: .2em .6em; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; }
.score-badge--high { background: #ECFDF5; color: #059669; }
.score-badge--mid  { background: #EFF6FF; color: var(--c-blue); }
.score-badge--low  { background: #FEF2F2; color: #DC2626; }

/* ---------- Guide cards grid ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-5); margin-top: var(--sp-5); }
.guide-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.guide-card__icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.guide-card__title { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: var(--sp-2); }
.guide-card__desc { font-size: .85rem; color: var(--c-text-muted); flex: 1; margin-bottom: var(--sp-4); }
.guide-card__link { font-size: .88rem; font-weight: 600; color: var(--c-blue); margin-top: auto; }

/* ---------- Methodology note ---------- */
.methodology-note {
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-top: var(--sp-8);
  line-height: 1.7;
}
.methodology-note a { color: var(--c-blue); }

/* ---------- RG page components ---------- */
.rg-helplines { margin-bottom: var(--sp-10); }
.helpline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-5); margin-top: var(--sp-5); }
.helpline-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-blue);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.helpline-card__org { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-text-muted); margin-bottom: var(--sp-2); }
.helpline-card__name { font-size: 1.05rem; font-weight: 800; color: var(--c-navy); margin-bottom: var(--sp-2); }
.helpline-card__number { font-size: 1.2rem; font-weight: 700; color: var(--c-blue); margin: var(--sp-3) 0; }
.helpline-card p { font-size: .88rem; color: var(--c-text-muted); margin-top: var(--sp-2); }

.rg-tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-4); margin-top: var(--sp-5); }
.rg-tool {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.rg-tool__icon { font-size: 1.8rem; margin-bottom: var(--sp-3); }
.rg-tool h4 { font-size: .95rem; margin-bottom: var(--sp-2); }
.rg-tool p { font-size: .85rem; color: var(--c-text-muted); margin: 0; }

.rg-tips ol { padding-left: var(--sp-5); }
.rg-tips li { margin-bottom: var(--sp-3); font-size: .93rem; }

.self-assessment { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.self-assessment h3 { margin-bottom: var(--sp-4); }
.sa-question { padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border); font-size: .93rem; }
.sa-question:last-child { border-bottom: none; }
.sa-q { display: flex; gap: var(--sp-3); align-items: flex-start; }
.sa-q::before { content: '?'; flex-shrink: 0; width: 22px; height: 22px; background: var(--c-surface-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--c-text-muted); }

.rg-section { margin-bottom: var(--sp-10); }
.rg-section--minors { background: var(--c-surface-alt); border-radius: var(--radius-lg); padding: var(--sp-8); }

/* ---------- About page components ---------- */
.about-section { margin-bottom: var(--sp-12); }
.about-coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-5); margin-top: var(--sp-5); }
.about-coverage-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  text-align: center;
}
.about-coverage-item__icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.about-coverage-item h4 { font-size: 1rem; margin-bottom: var(--sp-2); }
.about-coverage-item p { font-size: .85rem; color: var(--c-text-muted); margin: 0; }

.about-standards { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.about-standards ul { list-style: none; padding: 0; }
.about-standards li { display: flex; gap: var(--sp-3); align-items: flex-start; padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border); font-size: .92rem; }
.about-standards li:last-child { border-bottom: none; }
.about-standards li::before { content: '✓'; color: var(--c-green); font-weight: 800; flex-shrink: 0; }

.team-preview {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-top: var(--sp-5);
}
.team-preview__photo {
  flex-shrink: 0;
  width: 120px;
}
.team-preview__photo .img-placeholder { height: 120px; width: 120px; border-radius: 50%; }
.team-preview__bio { flex: 1; }
.team-preview__bio h4 { font-size: 1.1rem; margin-bottom: var(--sp-1); }
.team-preview__bio .role { font-size: .85rem; color: var(--c-blue); font-weight: 600; margin-bottom: var(--sp-3); }
.team-preview__bio p { font-size: .9rem; color: var(--c-text-muted); }
@media (max-width: 560px) { .team-preview { flex-direction: column; } .team-preview__photo { width: 100%; text-align: center; } }

/* ---------- Our-team / author profile page ---------- */
.author-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-8);
  align-items: start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  margin-bottom: var(--sp-10);
}
@media (max-width: 640px) { .author-profile { grid-template-columns: 1fr; } }
.author-profile__photo { text-align: center; }
.author-profile__name { font-size: 1.8rem; font-weight: 800; color: var(--c-navy); margin-bottom: var(--sp-1); }
.author-profile__title { font-size: 1rem; color: var(--c-blue); font-weight: 600; margin-bottom: var(--sp-1); }
.author-profile__since { font-size: .85rem; color: var(--c-text-muted); margin-bottom: var(--sp-5); }
.author-profile__bio p { font-size: .93rem; margin-bottom: var(--sp-4); }
.author-profile__expertise { margin-top: var(--sp-5); }
.author-profile__expertise h3 { font-size: 1rem; margin-bottom: var(--sp-3); }
.author-profile__reviews { margin-top: var(--sp-5); }
.author-profile__reviews h3 { font-size: 1rem; margin-bottom: var(--sp-3); }
.author-review-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.author-review-list li a { background: var(--c-surface-alt); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: .3em .9em; font-size: .85rem; color: var(--c-blue); font-weight: 600; display: inline-block; }
.author-review-list li a:hover { background: var(--c-blue); color: #fff; }

.expertise-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.expertise-tag { background: #EFF6FF; color: var(--c-blue); border-radius: 999px; padding: .25em .9em; font-size: .82rem; font-weight: 600; }

.team-section { margin-bottom: var(--sp-10); }
.team-section h2 { margin-bottom: var(--sp-4); }

.content-list { padding-left: var(--sp-5); }
.content-list li { margin-bottom: var(--sp-3); font-size: .93rem; }

/* ---------- Review-process page ---------- */
.rp-section { margin-bottom: var(--sp-12); }
.rp-section h2 { margin-bottom: var(--sp-4); }

.process-steps { display: flex; flex-direction: column; gap: var(--sp-6); margin-top: var(--sp-6); }
.process-step {
  display: flex;
  gap: var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  align-items: flex-start;
}
.process-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step__body { flex: 1; }
.process-step__body h3 { font-size: 1.05rem; margin-bottom: var(--sp-3); }
.process-step__body ul { font-size: .9rem; color: var(--c-text-muted); margin-bottom: var(--sp-4); }
.process-step__body ul li { margin-bottom: var(--sp-1); }
.process-step__body p { font-size: .9rem; }
.process-step__body p:last-child { margin: 0; }

.scoring-table-wrap { overflow-x: auto; }
.scoring-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.scoring-table th, .scoring-table td { padding: var(--sp-4); border-bottom: 1px solid var(--c-border); text-align: left; vertical-align: top; }
.scoring-table th { background: var(--c-navy); color: #fff; font-weight: 700; }
.scoring-table tfoot td { background: var(--c-surface-alt); font-weight: 700; }
.weight-cell { font-weight: 800; color: var(--c-blue); white-space: nowrap; }

/* ---------- Contact page ---------- */
.contact-form { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: var(--sp-8); }
.form-group { margin-bottom: var(--sp-5); }
.form-group label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: var(--sp-2); color: var(--c-navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: var(--shadow-blue);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ---------- Legal / policy pages ---------- */
.legal-content h2 { margin: var(--sp-8) 0 var(--sp-4); font-size: 1.3rem; }
.legal-content h3 { margin: var(--sp-6) 0 var(--sp-3); font-size: 1.1rem; }
.legal-content p, .legal-content li { font-size: .93rem; line-height: 1.75; }
.legal-content ul, .legal-content ol { margin-bottom: var(--sp-4); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-6); font-size: .88rem; }
.legal-content table th, .legal-content table td { padding: var(--sp-3) var(--sp-4); border: 1px solid var(--c-border); text-align: left; }
.legal-content table th { background: var(--c-surface-alt); font-weight: 700; }
.legal-last-updated { font-size: .85rem; color: var(--c-text-muted); font-style: italic; margin-bottom: var(--sp-8); }

/* ══════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.7);
}
.rg-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-3) 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.rg-bar a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.rg-bar a:hover { color: #fff; }
.footer__main { padding: var(--sp-16) 0 var(--sp-10); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-8);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}
.footer__logo-text { font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.footer__logo-text strong { color: #60A5FA; }
.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: var(--sp-4);
}
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.footer__col-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: var(--sp-2); }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--t-fast); text-decoration: none; }
.footer__links a:hover { color: #60A5FA; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-6) 0;
}
.footer__copy,
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0;
}
.footer__bottom-inner { display: flex; flex-direction: column; gap: var(--sp-2); }
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__main { padding: var(--sp-10) 0 var(--sp-8); }
}
@media (max-width: 380px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CASINO HUB PAGE — hub-card components
══════════════════════════════════════════ */
.hub-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
  margin-bottom: var(--sp-6);
}
.hub-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.hub-card:first-child { border-top: 3px solid var(--c-gold); }

/* Head row: rank + name + score */
.hub-card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-navy);
  color: #fff;
}
.hub-card__rank {
  flex-shrink: 0;
  min-width: 38px;
  height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  margin-top: 2px;
}
.hub-card__identity { flex: 1; min-width: 0; }
.hub-card__name { font-size: 1.25rem; font-weight: 800; margin-bottom: var(--sp-1); }
.hub-card__tagline { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: var(--sp-3); line-height: 1.4; }
.hub-card__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.hub-card__score-wrap { text-align: center; flex-shrink: 0; margin-left: var(--sp-4); }
.hub-card__score { font-size: 2.4rem; font-weight: 800; color: #60A5FA; line-height: 1; }
.hub-card__score-lbl { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; }

/* Body: screenshot left + content right */
.hub-card__body {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-5) var(--sp-6);
  align-items: flex-start;
}
.hub-card__img {
  flex-shrink: 0;
  width: 300px;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  object-fit: cover;
  display: block;
}
.hub-card__content { flex: 1; min-width: 0; }

/* Stats row */
.hub-card__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hub-stat {
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.hub-stat:last-child { border-right: none; }
.hub-stat__val { font-size: .88rem; font-weight: 700; color: var(--c-navy); line-height: 1.3; }
.hub-stat__key { font-size: .7rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Score bars (reuse rv-bar-item, limit to 3) */
.hub-card__bars { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.hub-card__bars .rv-bar-item__label { width: 70px; }

/* Pros/cons pills row */
.hub-card__pros {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.hub-card__pros span {
  font-size: .8rem;
  padding: .3em .75em;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.hub-card__pros span:first-child,
.hub-card__pros span:nth-child(2),
.hub-card__pros span:nth-child(3) {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.hub-card__pros span:last-child {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

/* CTA area */
.hub-card__cta { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hub-card__review-link { font-size: .85rem; font-weight: 600; color: var(--c-blue); white-space: nowrap; }
.hub-card__review-link:hover { text-decoration: underline; }
.hub-card__disclaimer { font-size: .72rem; color: var(--c-text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hub-card__body { flex-direction: column; }
  .hub-card__img { width: 100%; max-height: 180px; }
  .hub-card__stats { grid-template-columns: repeat(2, 1fr); }
  .hub-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .hub-card__head { flex-wrap: wrap; }
  .hub-card__score-wrap { order: -1; margin-left: 0; display: flex; align-items: center; gap: var(--sp-2); }
  .hub-card__score { font-size: 1.8rem; }
  .hub-card__head { padding: var(--sp-4); }
  .hub-card__body { padding: var(--sp-4); }
  .hub-card__stats { grid-template-columns: repeat(2, 1fr); }
}
