/* ============================================================
   CryptoRankings — Premium Dark Theme
   Inspired by: Stake · Stripe · Linear · Vercel
   ============================================================ */

:root {
  /* Backgrounds */
  --bg:            #0B0B0F;
  --bg-card:       #111118;
  --bg-card-2:     #16161f;
  --bg-input:      #0d0d14;
  --card-bg:       rgba(255,255,255,0.14);

  /* Borders */
  --border:        #1e1e2e;
  --border-light:  #2a2a3e;
  --border-glow:   rgba(168,85,247,0.25);

  /* Purple — primary accent */
  --purple:        #a855f7;
  --purple-dark:   #7c3aed;
  --purple-light:  #c084fc;
  --purple-glow:   rgba(168,85,247,0.15);
  --purple-dim:    rgba(168,85,247,0.07);

  /* Green — CTA / positive */
  --green:         #22c55e;
  --green-dark:    #16a34a;
  --green-hover:   #15803d;
  --green-glow:    rgba(34,197,94,0.15);

  /* Gold — rank #1 only */
  --gold:          #fbbf24;
  --gold-dark:     #f59e0b;
  --gold-glow:     rgba(251,191,36,0.12);

  /* Red */
  --red:           #ef4444;
  --red-glow:      rgba(239,68,68,0.12);

  /* Typography */
  --text:          #eef2f7;
  --text-muted:    #aebacc;
  --text-dim:      #8799ad;

  /* Shape */
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-xl:     20px;

  /* Animation */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.2s var(--ease);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.6);
  --glow-purple:   0 0 40px rgba(168,85,247,0.2);
  --glow-green:    0 0 24px rgba(34,197,94,0.3);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

/* ── Nebula blob drift animations (used by background.js injected divs) ── */
@keyframes nbDrift1 {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.07); }
  66%  { transform: translate(-25px,45px) scale(0.95); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes nbDrift2 {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-50px,25px) scale(1.05); }
  70%  { transform: translate(30px,-40px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 15% 0%,  rgba(139,92,246,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(59,130,246,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(99,102,241,0.05) 0%, transparent 60%),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  isolation: isolate;
}

/* All visible page content must sit above the background canvas / nebula layers */
.nav, .hero, .section, .footer, main, [class*="card"], [class*="listing"],
[class*="top3"], [class*="review"], [class*="stats"], [class*="trust"],
[class*="rg-"], [class*="warning"], [class*="picks"] {
  position: relative;
  z-index: 1;
}

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

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section       { padding: 5rem 0; }
.section--sm   { padding: 3rem 0; }
.section--dark { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-title em {
  font-style: normal;
  color: var(--purple);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--glow-purple);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav__links a {
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav__cta {
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
}

.nav__cta:hover {
  background: var(--green-dark) !important;
  box-shadow: var(--glow-green) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Green — primary CTA */
.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--green:hover {
  background: var(--green-dark);
  box-shadow: var(--glow-green);
  transform: translateY(-1px);
  color: #fff;
}

/* Purple — secondary CTA */
.btn--primary {
  background: var(--purple);
  color: #fff;
}
.btn--primary:hover {
  background: var(--purple-dark);
  box-shadow: var(--glow-purple);
  transform: translateY(-1px);
  color: #fff;
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--border-glow);
  color: var(--purple-light);
  background: var(--purple-dim);
}

/* Sizes */
.btn--sm  { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn--lg  { padding: 0.9rem 2rem; font-size: 1rem; letter-spacing: 0.01em; }
.btn--full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
.btn--green { will-change: transform; }
.btn--primary { will-change: transform; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5.5rem 1.5rem 4.5rem;
  overflow: hidden;
}

/* Radial purple glow top-left + faint right */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--purple-dim);
  border: 1px solid var(--border-glow);
  color: var(--purple-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  color: var(--purple);
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.25rem;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

.hero__trust-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Hero visual panel (right side) */
.hero__visual {
  position: relative;
}

.hero-panel {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(124,58,237,0.15);
  position: relative;
  z-index: 1;
}

.hero-panel__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-panel__rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-panel__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.hero-panel__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.hero-panel__bonus {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-align: right;
}

.hero-panel__stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-panel__cta {
  display: block;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.hero-panel__cta:hover {
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--glow-green);
}

.hero-panel__tc {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
}

/* Floating crypto tokens around the panel */
.hero__token {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__token--btc {
  width: 52px; height: 52px;
  top: -20px; right: 20px;
  animation-delay: 0s;
}
.hero__token--eth {
  width: 42px; height: 42px;
  bottom: 40px; left: -16px;
  animation-delay: 1.2s;
  color: #8b5cf6;
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.25);
  font-size: 0.9rem;
}
.hero__token--sol {
  width: 36px; height: 36px;
  top: 50%; right: -14px;
  animation-delay: 2.4s;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.25);
  font-size: 0.75rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem;
}

.stats-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 3rem;
  border-right: 1px solid var(--border);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Top 3 Comparison Table ──────────────────────────────── */
.top3-section {
  padding: 5rem 0;
}

.top3-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
}

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

.top3-table thead th {
  background: var(--card-bg);
  padding: 0.8rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.top3-table thead th:first-child { padding-left: 1.5rem; }
.top3-table thead th:last-child  { padding-right: 1.5rem; text-align: right; }

.top3-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.top3-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Rank #1 — gold highlight */
.top3-table tbody tr.row--rank1 {
  background: rgba(251,191,36,0.025);
  border-left: 3px solid var(--gold);
  box-shadow: inset 0 0 0 0 transparent;
}
.top3-table tbody tr.row--rank1:hover {
  background: rgba(251,191,36,0.04);
}

.top3-table td {
  padding: 1.25rem 1.1rem;
  vertical-align: middle;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.top3-table td:first-child { padding-left: 1.5rem; }
.top3-table td:last-child  { padding-right: 1.5rem; }

/* Rank cell */
.t3-rank {
  width: 80px;
}

.t3-rank__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.t3-rank__num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dim);
  line-height: 1;
}

.t3-rank__num--gold { color: var(--gold); }

.t3-rank__trophy {
  font-size: 1.2rem;
}

.t3-rank__badge {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold-glow);
  border: 1px solid rgba(251,191,36,0.3);
  color: var(--gold);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Site cell */
.t3-site {
  min-width: 160px;
}

.t3-site__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t3-logo {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;
}

.t3-logo-placeholder {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.t3-site-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.1rem;
  text-decoration: none;
}
.t3-site-name:hover { color: var(--purple-light); }

.t3-site-tag {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Rating cell */
.t3-rating {
  text-align: center;
  white-space: nowrap;
}

.t3-score {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  display: block;
  line-height: 1.2;
}

.t3-score-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  display: block;
}

.t3-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-top: 0.2rem;
}

.t3-star { font-size: 0.7rem; color: var(--gold); }

/* Bonus cell */
.t3-bonus {
  min-width: 140px;
}

.t3-bonus__amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.row--rank1 .t3-bonus__amount { color: var(--gold); }
.row--rank2 .t3-bonus__amount { color: var(--purple-light); }
.row--rank3 .t3-bonus__amount { color: var(--purple-light); }

.t3-bonus__label {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
  display: block;
}

/* Features cell */
.t3-features {
  min-width: 180px;
}

.t3-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.t3-feature-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.t3-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Action cell */
.t3-action {
  text-align: right;
  white-space: nowrap;
  min-width: 130px;
}

.t3-action-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.t3-visit {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.t3-visit:hover { color: var(--text-muted); }

/* ── Review Cards ─────────────────────────────────────────── */
.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.casino-review-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.casino-review-card:hover {
  border-color: rgba(168,85,247,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(168,85,247,0.1);
  transform: translateY(-2px);
}

.crc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.crc-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.crc-logo {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 5px;
  flex-shrink: 0;
}

.crc-logo-placeholder {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.crc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
}
.crc-name:hover { color: var(--purple-light); }

.crc-name-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.crc-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--purple-dim);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.55rem;
  flex-shrink: 0;
}

.crc-score-badge__num {
  font-size: 1rem;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
}

.crc-score-badge__label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

.crc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.crc-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.crc-pros, .crc-cons {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.crc-pros-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.crc-cons-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.crc-pros ul, .crc-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.crc-pros li, .crc-cons li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.crc-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.7rem; }
.crc-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red);   font-weight: 700; font-size: 0.7rem; }

.crc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ── Responsible Gambling Banner ─────────────────────────── */
.rg-section {
  padding: 3.5rem 0;
}

.rg-banner {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.rg-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.rg-icon-wrap::after {
  content: '18+';
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--purple);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
}

.rg-icon {
  font-size: 2rem;
}

.rg-content h2 {
  font-size: 1.1rem;
  color: var(--purple-light);
  margin-bottom: 0.4rem;
}

.rg-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── Existing listing cards (casinos.php / sportsbooks.php) ── */
.listing-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  column-gap: 1rem;
  align-items: center;
  transition: all var(--transition);
  position: relative;
}

.listing-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.listing-card--featured {
  border-color: rgba(251,191,36,0.3);
  background: var(--card-bg);
}

.listing-rank {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-dim);
  text-align: center;
  min-width: 2rem;
}

.listing-rank .rank-num {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
  color: var(--text-muted);
}

.listing-logo {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 8px;
  flex-shrink: 0;
}

.listing-logo-placeholder {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.listing-main { min-width: 0; }

.listing-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.listing-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.listing-name:hover { color: var(--purple-light); }

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--featured { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(251,191,36,0.3); }
.badge--hot      { background: var(--red-glow); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.badge--new      { background: var(--green-glow); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }

.listing-tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.7rem; }

.listing-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.listing-rating { display: flex; align-items: center; gap: 0.35rem; }

.rating-num { font-weight: 700; font-size: 0.9rem; }
.rating--excellent .rating-num { color: var(--green); }
.rating--great     .rating-num { color: #34d399; }
.rating--good      .rating-num { color: var(--gold); }
.rating--average   .rating-num { color: var(--text-muted); }

.stars { display: inline-flex; gap: 1px; }
.star { font-size: 0.75rem; }
.star--full  { color: var(--gold); }
.star--half  { color: var(--gold); opacity: 0.6; }
.star--empty { color: var(--border-light); }

.listing-bonus { font-size: 0.82rem; color: var(--text-muted); }
.listing-bonus strong { color: var(--green); }

.listing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.listing-actions .btn {
  width: 140px;
  box-sizing: border-box;
}

.listing-tcs { font-size: 0.65rem; color: var(--text-dim); text-align: center; }

/* Cards grid (preview cards) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.preview-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.preview-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.preview-card__top { display: flex; align-items: center; gap: 0.8rem; }

.preview-card__logo {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 5px;
  flex-shrink: 0;
}

.preview-card__logo-placeholder {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}

.preview-card__name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.1rem; }
.preview-card__bonus { font-size: 0.78rem; color: var(--green); font-weight: 600; }
.preview-card__desc { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.preview-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

/* ── Comparison Table (casinos/sportsbooks pages) ───────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
}

.comparison-table th {
  padding: 0.75rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: var(--card-bg);
}

.comparison-table td {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.015); }

.ct-row--featured { border-left: 3px solid var(--gold); }

.ct-rank { font-size: 0.78rem; font-weight: 800; color: var(--text-dim); white-space: nowrap; width: 36px; }
.ct-name { display: flex !important; align-items: center; gap: 0.7rem; min-width: 160px; }

.ct-logo {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
}

.ct-logo-placeholder {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.ct-casino-name { font-weight: 700; font-size: 0.88rem; color: var(--text); display: block; margin-bottom: 0.1rem; text-decoration: none; }
.ct-casino-name:hover { color: var(--purple-light); }
.ct-tagline { font-size: 0.7rem; color: var(--text-dim); line-height: 1.4; }

.ct-rating { text-align: center; white-space: nowrap; }
.ct-score { font-size: 1.1rem; font-weight: 800; display: block; line-height: 1.2; }
.ct-score.rating--excellent { color: var(--green); }
.ct-score.rating--great { color: #34d399; }
.ct-score.rating--good { color: var(--gold); }

.ct-bonus { font-weight: 700; color: var(--green) !important; max-width: 160px; }
.ct-action { text-align: right; white-space: nowrap; }

.ct-license {
  font-size: 0.73rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.18rem 0.45rem;
  white-space: nowrap;
  color: var(--text-muted);
}

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-bar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.filter-bar label { font-size: 0.82rem; color: var(--text-dim); font-weight: 500; white-space: nowrap; }

.filter-bar select,
.filter-bar input[type="search"] {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.filter-bar select:focus,
.filter-bar input[type="search"]:focus {
  outline: none;
  border-color: var(--border-glow);
}

.filter-bar select option {
  background: #111118;
  color: #dde4ed;
}

.filter-bar input[type="search"] { flex: 1; min-width: 180px; }

/* ── View Toggle ─────────────────────────────────────────── */
.view-toggle { display: flex; gap: 0.25rem; }
.view-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.view-btn:hover { border-color: var(--border-light); color: var(--text-muted); }
.view-btn--active { border-color: var(--border-glow); color: var(--purple-light); background: var(--purple-dim); }

/* ── Player Testimonials ─────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

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

.review-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-sm);
}

.review-card__stars { font-size: 0.88rem; color: var(--gold); letter-spacing: 0.05em; }
.review-card__title { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.review-card__body  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; flex: 1; font-style: italic; }

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.review-card__author   { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.review-card__platform {
  font-size: 0.7rem;
  color: var(--purple-light);
  font-weight: 600;
  background: var(--purple-dim);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}

/* ── Trust Grid ──────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}

.trust-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: border-color var(--transition);
}

.trust-item:hover { border-color: var(--border-glow); }
.trust-icon { font-size: 2rem; margin-bottom: 0.65rem; display: block; }
.trust-item h4 { font-size: 0.88rem; margin-bottom: 0.35rem; }
.trust-item p  { font-size: 0.78rem; color: var(--text-muted); }

/* ── Warning Signs Grid (Responsible Gambling page) ────────── */
.warning-signs-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Section Header ──────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

/* ── Review Page ─────────────────────────────────────────── */
.review-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.review-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.review-hero__logo {
  width: 88px; height: 88px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 10px;
}

.review-hero__logo-placeholder {
  width: 88px; height: 88px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

.review-hero__name    { font-size: 1.9rem; margin-bottom: 0.3rem; }
.review-hero__tagline { color: var(--text-muted); margin-bottom: 0.75rem; }

.review-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.review-content h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.review-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; font-size: 0.9rem; }

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

.pros-cons__box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pros-cons__title { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.pros-cons__title--pros { color: var(--green); }
.pros-cons__title--cons { color: var(--red); }

.pros-cons__list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.pros-cons__list li { font-size: 0.84rem; color: var(--text-muted); padding-left: 1.1rem; position: relative; }
.pros-cons__list--pros li::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.pros-cons__list--cons li::before { content: '✗'; color: var(--red);   position: absolute; left: 0; font-weight: 700; }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2rem; }
.features-list li { font-size: 0.88rem; color: var(--text-muted); padding-left: 1.4rem; position: relative; }
.features-list li::before { content: '◆'; color: var(--purple); font-size: 0.5rem; position: absolute; left: 0; top: 0.38rem; }

.payment-methods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.payment-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-sidebar__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: static;
}

.review-sidebar__card h3 { font-size: 0.95rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }

.sidebar-rating { text-align: center; padding: 1rem 0; }
.sidebar-rating__num { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--purple); }
.sidebar-rating__label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }

.quick-facts { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.quick-facts li { display: flex; justify-content: space-between; font-size: 0.82rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.quick-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.quick-facts .label { color: var(--text-muted); }
.quick-facts .value { color: var(--text); font-weight: 600; }

.bonus-box {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.bonus-box__amount { font-size: 1.5rem; font-weight: 900; color: var(--green); margin-bottom: 0.25rem; }
.bonus-box__terms  { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.75rem; }

/* ── RG Banner (compact – used on other pages) ───────────── */
.rg-banner--compact {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rg-banner__icon { font-size: 1.4rem; flex-shrink: 0; }
.rg-banner__heading { font-size: 0.95rem; margin-bottom: 0.2rem; }
.rg-banner__body    { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.rg-banner__links   { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.rg-link { font-size: 0.8rem; color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(34,197,94,0.4); }
.rg-link:hover { color: var(--green-dark); }
.rg-badge { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25); color: var(--purple-light); font-size: 1rem; font-weight: 800; border-radius: 8px; padding: 0.35rem 0.7rem; text-align: center; white-space: nowrap; }
.rg-badge--sm { font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.45rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 0;
}

.footer__inner { max-width: 1160px; margin: 0 auto; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.footer__col ul   { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer__col ul a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--transition); text-decoration: none; }
.footer__col ul a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__copy { font-size: 0.78rem; color: var(--text-dim); }

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.footer__disclaimer a { color: var(--text-dim); text-decoration: underline; }
.footer__disclaimer a:hover { color: var(--text-muted); }

/* ── Misc utility ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.empty-state { text-align: center; padding: 4rem 1.5rem; color: var(--text-muted); }
.empty-state__icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--text); margin-bottom: 0.5rem; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--purple-light); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 0.35rem; margin-top: 2.5rem; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.pagination a:hover { border-color: var(--border-glow); color: var(--purple-light); background: var(--purple-dim); }
.pagination span.current { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner         { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual        { max-width: 480px; margin: 0 auto; }
  .review-body         { grid-template-columns: 1fr; }
  .review-sidebar__card{ position: static; }
  .review-hero__inner  { grid-template-columns: auto 1fr; }
  .review-hero__actions{ grid-column: 1 / -1; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .review-cards-grid   { grid-template-columns: 1fr 1fr; }
  .stats-bar__item     { padding: 0.5rem 1.5rem; }
  .warning-signs-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
    gap: 0.15rem;
    z-index: 200;
  }
  .nav__links.open  { display: flex; }
  .nav__toggle      { display: block; }

  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero__title { font-size: 2.4rem; }
  .hero__inner { gap: 2.5rem; }

  .review-cards-grid  { grid-template-columns: 1fr; }
  .warning-signs-grid { grid-template-columns: 1fr; }
  .top3-table-wrap    { overflow-x: auto; }
  .top3-table         { min-width: 640px; }
  .listing-card       { grid-template-columns: auto 1fr; }
  .listing-actions    { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .pros-cons          { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; gap: 1.75rem; }
  .section            { padding: 3rem 0; }
  .filter-bar         { flex-direction: column; align-items: stretch; }
  .review-hero__inner { grid-template-columns: auto 1fr; }
  .rg-banner          { grid-template-columns: 1fr; gap: 1.25rem; }
  .rg-icon-wrap       { display: none; }
  .stats-bar__inner   { gap: 0; flex-wrap: wrap; }
  .stats-bar__item    { padding: 0.75rem 1.5rem; flex: 1; min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar__item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stats-bar__item:last-child, .stats-bar__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero__title        { font-size: 1.85rem; }
  .listing-card       { grid-template-columns: 1fr; gap: 1rem; }
  .listing-rank       { display: none; }
  .crc-proscons       { grid-template-columns: 1fr; }
  .stats-bar__item    { min-width: 100%; border-right: none; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .listing-actions    { flex-wrap: wrap; gap: .5rem; }
  .listing-actions .btn {
    flex: 1 1 calc(50% - .25rem);
    width: auto;
    min-width: 0;
  }
  .section-header     { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* ============================================================
   CRO / Trust / Urgency — v2.4
   ============================================================ */

/* ── Trust badge row (under page headers) ─────────────────── */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.trust-badge--green { color: var(--green);         border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.06); }
.trust-badge--purple{ color: var(--purple-light);  border-color: rgba(168,85,247,0.25); background: rgba(168,85,247,0.06); }
.trust-badge--gold  { color: var(--gold);          border-color: rgba(251,191,36,0.25); background: rgba(251,191,36,0.06); }

/* ── Listing overlay badges ────────────────────────────────── */
.listing-badge {
  position: absolute;
  top: -1px;
  left: 1.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.65rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 2;
  line-height: 1;
}

.listing-badge--top       { background: var(--gold);   color: #000; }
.listing-badge--exclusive { background: var(--purple);  color: #fff; }
.listing-badge--new       { background: var(--green);   color: #fff; }

/* ── Urgency / hot label ───────────────────────────────────── */
.hot-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff6b35;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Listing card — rank-1 gold highlight ──────────────────── */
.listing-card--rank1 {
  border-color: rgba(251,191,36,0.4);
  background: var(--card-bg);
}

.listing-card--rank1 .listing-rank .rank-num { color: var(--gold); }

/* ── Scroll-reveal animation ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── Updated date chip ─────────────────────────────────────── */
.updated-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* ── Listing info meta row ─────────────────────────────────── */
.listing-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.listing-meta-row .meta-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

/* ── Bonus highlight inside listing card ───────────────────── */
.listing-bonus-hl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.25rem;
}

/* ── CTA pulse on hero panel ───────────────────────────────── */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-panel__cta { animation: pulse-green 2.8s infinite; }

/* ── Skip to main content (accessibility) ──────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: .75rem; color: #fff; }

/* ── Improved form focus (admin) ───────────────────────────── */
.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}

/* ── Review page CTA box ───────────────────────────────────── */
.review-cta-box {
  background: linear-gradient(135deg, rgba(168,85,247,0.1) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.review-cta-box__title { font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.review-cta-box__sub   { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; }

@media (max-width: 480px) {
  .trust-badges   { gap: .5rem; }
  .trust-badge    { font-size: .68rem; padding: .25rem .55rem; }
  .hero-panel__cta { animation: none; }
}
