/* ── REVIEW PAGE SHARED STYLES ───────────────────────────────── */

/* Layout */
.review-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── HERO (base) ── */
.casino-logo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.casino-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.review-meta { flex: 1; min-width: 0; }
.review-eyebrow {
  font-family: monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.stars img { filter: invert(45%) sepia(99%) saturate(400%) hue-rotate(10deg) brightness(95%); }
.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}
.score-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.score-max {
  font-size: 1rem;
  color: var(--muted);
}
.meta-line {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.meta-line span { color: var(--text-2); }

/* ── KEY FACTS STRIP ── */
.key-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.75rem 0;
}
.key-fact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  min-width: 120px;
}
.key-fact-label {
  font-size: 0.65rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.key-fact-value {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.key-fact-value.accent { color: var(--accent); }

/* ── CTA BUTTONS ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s var(--ease);
  text-decoration: none;
}
.cta-btn:hover { background: #1558b0; }
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
  text-decoration: none;
}
.cta-btn-outline:hover { background: var(--accent); color: #fff; }
.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.25rem;
}

/* ── SCORE BREAKDOWN ── */
.score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.score-row-label {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-2);
}
.score-bar-track {
  width: 120px;
  height: 6px;
  background: var(--surface-3);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.score-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.score-row-num {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  width: 2.5rem;
  text-align: right;
}

/* ── PROS & CONS ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.pros, .cons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pros h3 {
  color: var(--success);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.cons h3 {
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.pros li, .cons li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.pros li img { filter: invert(25%) sepia(90%) saturate(500%) hue-rotate(100deg) brightness(90%); margin-top: 2px; flex-shrink: 0; }
.cons li img { filter: invert(20%) sepia(90%) saturate(700%) hue-rotate(340deg) brightness(90%); margin-top: 2px; flex-shrink: 0; }

/* ── REVIEW SECTIONS ── */
.review-section {
  margin: 3rem 0;
}
.review-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.review-section p {
  color: var(--text-2);
  margin-bottom: 0.875rem;
  font-size: 0.975rem;
  line-height: 1.75;
}
.review-section strong { color: var(--text); }

/* ── BONUS BREAKDOWN ── */
.bonus-pack-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.bonus-pack-total {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.bonus-wr-tag {
  font-family: monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--success);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.bonus-wr-tag.warning { background: var(--warning); }

/* ── BONUS STEPS GRID ── */
.bonus-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.bsg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.bsg-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.bsg-body { flex: 1; min-width: 0; }
.bsg-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.3rem;
}
.bsg-game {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.bsg-game img { opacity: 0.6; }
.bsg-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bsg-facts li {
  font-size: 0.82rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bsg-facts li img { opacity: 0.5; flex-shrink: 0; }
.bsg-facts li strong { color: var(--text); font-weight: 600; }

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

/* ── PROMOTIONS LIST ── */
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.promo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}
.promo-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.promo-amount {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.promo-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── PAYMENT TABLE ── */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.payment-table th {
  background: var(--surface-2);
  text-align: left;
  padding: 0.625rem 1rem;
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.payment-table td {
  padding: 0.625rem 1rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.payment-table tr:last-child td { border-bottom: none; }
.payment-table td:first-child { color: var(--text); font-weight: 500; }
.payment-table .flag-cell { color: var(--danger); font-weight: 600; }
.payment-table .ok-cell { color: var(--success); font-weight: 600; }

/* ── SCREENSHOT GALLERY ── */
.gallery-section h2 { margin-bottom: 1rem; }
.gallery-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.gallery-desktop figure,
.gallery-mobile-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.gallery-desktop figure { aspect-ratio: 2048/915; }
.gallery-mobile-row {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}
.gallery-mobile-row figure { width: 160px; flex-shrink: 0; aspect-ratio: 800/1727; }
.gallery-desktop figure img,
.gallery-mobile-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 3rem 0 0;
}
.author-avatar-sm {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary);
  object-fit: cover;
}
.author-info { flex: 1; min-width: 0; }
.author-role-tag {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.author-name-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}
.author-name-link:hover { color: var(--accent); }
.author-bio-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── NOTICE BOX ── */
.notice {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--warning);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 1rem 0;
}
.notice strong { color: var(--text); }

/* ── RG BAND ── */
.rg-band {
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 6px,
    rgba(0,0,0,0.018) 6px, rgba(0,0,0,0.018) 12px
  ), var(--surface-3);
  border-top: 2px solid var(--border-hi);
  padding: 1.5rem 1.25rem;
}
.rg-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.rg-age {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  border-right: 2px solid var(--border-hi);
  padding-right: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.rg-band p {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
}
.rg-band a { text-decoration: underline; color: var(--text-2); }
.rg-band a:hover { color: var(--accent); }

/* ── HERO LAYOUT ── */
.review-hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.review-hero::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: linear-gradient(to left, rgba(26,111,216,0.07) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.review-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.review-hero-left { min-width: 0; }
.review-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-logo-sq {
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.review-title span {
  font-size: 0.18em;
  letter-spacing: 0;
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-top: 0.1em;
}
.review-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  background: linear-gradient(135deg, #7B3A10 0%, #C8720A 40%, #F0A830 75%, #E8C96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Score row: big number + stars + reviewer in one line */
.review-score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.review-score-val {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.review-score-max {
  font-size: 1rem;
  color: var(--muted);
  margin-right: 0.25rem;
}
.review-meta-by {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.review-meta-by a { color: var(--accent); }
.review-meta-updated {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.review-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 58ch;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.review-hero-lead strong { color: var(--text); font-weight: 600; }
/* Inline key data - no boxes */
.review-key-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}
.rkg-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.rkg-lbl {
  font-family: monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.rkg-val {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.rkg-val.is-ok { color: var(--success); }
.rkg-val.is-flag { color: var(--danger); }
.rkg-btn {
  background: none;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  white-space: nowrap;
}
.rkg-btn:hover { background: var(--accent); color: #fff; }
.pm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pm-panel.is-open { display: flex; }
.pm-group { display: flex; flex-direction: column; gap: 0.4rem; }
.pm-group-label {
  font-family: monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pm-group-label img { opacity: 0.55; }
.pm-group-label span {
  background: var(--bg);
  border-radius: 3px;
  padding: 0 0.3rem;
  font-size: 0.65rem;
  color: var(--muted);
}
.pm-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.pm-chip {
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
  white-space: nowrap;
}
.pm-chip--crypto {
  border-color: rgba(26,111,216,0.3);
  color: var(--accent);
  background: rgba(26,111,216,0.06);
}
.pm-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
/* Right column */
.review-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.hero-sidebar-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Compact pros/cons */
.hero-verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}
.hv-head {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}
.hv-pros .hv-head { color: var(--success); }
.hv-cons .hv-head { color: var(--danger); }
.hv-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.hv-col li {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.4;
  padding-left: 0.9rem;
  position: relative;
}
.hv-pros li::before { content: '\2713'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 0.7rem; }
.hv-cons li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-weight: 700; font-size: 0.7rem; }
/* Hero gallery carousel */
.hero-gallery { width: 100%; }
.hg-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  user-select: none;
}
.hgc-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 200px;
}
.hgc-slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-in;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-2);
}
.hgc-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hgc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.hgc-slide:hover img { transform: scale(1.02); }
.hgc-slide--portrait img { object-fit: contain; }
/* Carousel nav buttons */
.hgc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.15s, transform 0.15s;
  padding: 0;
}
.hgc-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hgc-btn img { filter: invert(0); }
.hgc-btn--prev { left: 8px; }
.hgc-btn--next { right: 8px; }
/* Dots */
.hgc-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}
.hgc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hgc-dot.is-active { background: #fff; transform: scale(1.35); }

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lb-overlay[hidden] { display: none; }
.lb-figure {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lb-figure img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
  display: block;
}
.lb-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 10000;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-close img { filter: invert(1); }
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 10000;
  padding: 0;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-nav img { filter: invert(1); }
.lb-nav--prev { left: 1rem; }
.lb-nav--next { right: 1rem; }

/* ── TWO-COLUMN LAYOUT ── */
.review-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  position: relative;
  z-index: 1;
}
.review-layout {
  display: block;
}
.review-main { min-width: 0; }

/* ── SIDEBAR ── */
.review-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.sidebar-stats {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-stat {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.sidebar-stat-val small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}
.sidebar-stat-label {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.2rem;
}
.sidebar-stat.is-flag .sidebar-stat-val { color: var(--danger); }
.sidebar-stat.is-ok .sidebar-stat-val { color: var(--success); }
.sidebar-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.sidebar-toc-heading {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.sidebar-toc ul { display: flex; flex-direction: column; gap: 0.1rem; }
.sidebar-toc li a {
  display: block;
  font-size: 0.825rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.sidebar-toc li a:hover { color: var(--accent); }
.sidebar-rg {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.sidebar-rg p { margin-bottom: 0.35rem; }
.sidebar-rg a {
  color: var(--muted);
  text-decoration: underline;
  margin: 0 0.35rem;
  font-size: 0.7rem;
}
.sidebar-rg a:hover { color: var(--accent); }

/* ── EV BOX ── */
.ev-box {
  background: var(--text);
  color: #E2E5EC;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.5rem 0;
}
.ev-box-label {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7890A8;
  margin-bottom: 1.25rem;
}
.ev-calc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ev-calc-step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ev-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #E2E5EC;
  line-height: 1;
}
.ev-step-label {
  font-size: 0.68rem;
  color: #7890A8;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ev-op {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #7890A8;
}
.ev-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  flex-wrap: wrap;
}
.ev-result-block { flex: 1; }
.ev-result-label {
  font-size: 0.78rem;
  color: #7890A8;
  display: block;
  margin-bottom: 0.3rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ev-result-value {
  font-size: 1rem;
  font-weight: 600;
  color: #E2E5EC;
}
.ev-result-value.is-negative { color: #F87171; }
.ev-result-value.is-positive { color: #4ADE80; }
.ev-verdict { text-align: right; flex-shrink: 0; }
.ev-verdict-label {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7890A8;
  display: block;
  margin-bottom: 0.2rem;
}
.ev-verdict-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #F87171;
  line-height: 1;
}
.ev-verdict-num.is-positive { color: #4ADE80; }
.ev-note {
  font-size: 0.8rem;
  color: #8899AA;
  margin-top: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.875rem;
}
.ev-note strong { color: #E2E5EC; }

/* ── FAIRNESS SCORE ── */
.fairness-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  align-items: start;
}
.fairness-gauge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.fairness-gauge {
  position: relative;
  width: 120px;
  height: 120px;
}
.fairness-gauge-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warning);
  line-height: 1;
}
.fairness-gauge-num span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.fairness-verdict {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warning);
}
.fairness-criteria {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fairness-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fairness-criterion {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-2);
}
.fairness-bar-track {
  width: 80px;
  height: 5px;
  background: var(--surface-3);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.fairness-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.fairness-score {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  width: 2.5rem;
  text-align: right;
  flex-shrink: 0;
}
.fairness-score.is-low { color: var(--danger); }
.fairness-score.is-high { color: var(--success); }

/* ── METHODOLOGY LINK ── */
.methodology-link { font-size: 0.875rem; margin-top: 0.625rem; }
.methodology-link a { color: var(--accent); }
.methodology-link a:hover { text-decoration: underline; }

/* ── PAYMENT TABLE NEW CLASSES ── */
.payment-table td.is-flag { color: var(--danger); font-weight: 600; }
.payment-table td.is-ok { color: var(--success); font-weight: 600; }

/* ── STICKY CTA BAR ── */
.review-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  z-index: 500;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.review-sticky-cta.is-visible { transform: translateY(0); }
.review-sticky-cta[hidden] { display: none; }
.sticky-cta-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--surface-2);
}
.sticky-cta-label {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.3;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.sticky-cta-btn:hover { background: #1558b0; }
.sticky-cta-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  flex-shrink: 0;
  opacity: 0.5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s, background 0.15s;
}
.sticky-cta-close:hover { opacity: 1; background: var(--surface-2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .review-hero-inner { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .sidebar-inner { flex-direction: row; flex-wrap: wrap; }
  .sidebar-cta { width: 100%; }
  .sidebar-stats { flex: 1; min-width: 200px; }
  .sidebar-toc { flex: 1; min-width: 200px; }
  .sidebar-rg { width: 100%; }
  .review-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .review-hero-right { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .hero-gallery { width: 100%; }
  .review-hero { padding: 3rem 0 2rem; }
}
@media (max-width: 640px) {
  .hero-verdict { grid-template-columns: 1fr 1fr; }
  .review-key-grid { grid-template-columns: repeat(2, 1fr); }
  .score-bar-track { width: 80px; }
  .fairness-card { grid-template-columns: 1fr; }
  .fairness-gauge-col { flex-direction: row; align-items: center; gap: 1rem; }
  .ev-calc-row { gap: 0.75rem; }
  .ev-step-num { font-size: 1.5rem; }
  .ev-verdict-num { font-size: 2.5rem; }
  .sidebar-inner { flex-direction: column; }
  .rg-band-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .rg-age { border-right: none; border-bottom: 2px solid var(--border-hi); padding-right: 0; padding-bottom: 0.75rem; }
  .author-box { flex-direction: column; }
}
