/* ==========================================================================
   bestcryptocasinousa.com — CryptoGamble Reference Design Match
   ========================================================================== */

/* ---------- 1. Tokens (matching reference colors) ---------- */
:root {
  --bg-base: #07090F;
  --bg-surface: #0E0E0E;
  --bg-card: #1e293b;
  --bg-card-2: #27272A;
  --bg-elevated: #2A2A2D;
  --bg-sidebar: #0A0A0E;
  --bg-overlay: rgba(7, 9, 15, 0.92);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  --purple-light: #A864FF;
  --purple: #780FE1;
  --purple-deep: #5D2DE6;
  --purple-glow: rgba(168, 100, 255, 0.35);

  --green: #A3E635;
  --green-deep: #22C55E;
  --green-bg: rgba(163, 230, 53, 0.10);
  --green-border: rgba(163, 230, 53, 0.30);

  --red: #EF4444;
  --red-bg: rgba(239, 68, 68, 0.10);
  --red-border: rgba(239, 68, 68, 0.30);

  --bitcoin: #F7931A;
  --usa-red: #E63946;

  --text-primary: #FAFBFF;
  --text-body: #D4D4D4;
  --text-muted: #838383;
  --text-faint: #5A5A5A;

  --font-display: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Inter', system-ui, -apple-system, sans-serif;

  --sidebar-width: 260px;
  --max-content: 1240px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elev: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-purple: 0 8px 32px rgba(120, 15, 225, 0.35);

  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--purple-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--purple); }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; margin-bottom: 0.85rem; }
h2 { font-size: clamp(1.25rem, 2.6vw, 1.65rem); margin-bottom: 0.75rem; font-weight: 600; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
p { margin-bottom: 0.75rem; }
.grad {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 3. Sidebar ---------- */
/* Hidden checkbox that drives the mobile sidebar via :checked sibling selector — no JS needed */
.sidebar-state-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  z-index: 100;
  overflow-y: auto;
  padding: 1.25rem 0.75rem;
  transition: transform var(--t-base);
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 4px; }
.sidebar-logo { display: block; padding: 0.25rem 0.25rem 1rem; }
.sidebar-logo img { width: 100%; max-width: 240px; height: auto; }

.sidebar-section { margin-bottom: 0.25rem; }
/* Hide default browser disclosure triangle */
.sidebar-section > summary {
  list-style: none;
  cursor: pointer;
}
.sidebar-section > summary::-webkit-details-marker { display: none; }
.sidebar-section > summary::marker { display: none; }

.sidebar-link,
.sidebar-section-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-md);
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--t-fast);
  text-align: left;
  font-family: var(--font-body);
}
.sidebar-link:hover,
.sidebar-section-toggle:hover {
  background: rgba(168, 100, 255, 0.08);
  color: var(--text-primary);
}
.sidebar-link.active {
  background: rgba(168, 100, 255, 0.12);
  color: var(--text-primary);
  border: 1px solid rgba(168, 100, 255, 0.25);
}
.sidebar-link .icon,
.sidebar-section-toggle .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--purple-light);
}
.sidebar-section-toggle::after {
  content: "▾";
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform var(--t-fast);
}
.sidebar-section[open] > .sidebar-section-toggle::after { transform: rotate(180deg); }
.sidebar-submenu { padding: 0.25rem 0 0.5rem 1.5rem; }
.sidebar-submenu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--t-fast);
}
.sidebar-submenu a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text-body); }
.sidebar-submenu a.active { color: var(--text-primary); background: rgba(168, 100, 255, 0.10); }
.sidebar-submenu a .brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-2);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.sidebar-cta {
  margin: 1rem 0.5rem 0;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.12), rgba(163, 230, 53, 0.04));
  border: 1px solid rgba(163, 230, 53, 0.25);
  border-radius: var(--r-md);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}

.app-main {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- 4. Top header (compact) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.header .container {
  max-width: 100%;
  padding: 0.85rem 2rem;
}
.nav { display: flex; align-items: center; gap: 1rem; }
.nav-logo { display: none; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; }
.nav-cta {
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--purple-deep); color: var(--text-primary); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--t-fast); }
.sidebar-state-input:checked ~ .app-main .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sidebar-state-input:checked ~ .app-main .nav-toggle span:nth-child(2) { opacity: 0; }
.sidebar-state-input:checked ~ .app-main .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-menu { display: none; }

/* ---------- 5. Container & sections ---------- */
.container { max-width: var(--max-content); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--max-content); margin: 0 auto; padding: 0 2rem; }
section { padding: 1.25rem 0; }
.section-head { margin-bottom: 1.25rem; text-align: left; }
.section-head .eyebrow,
.eyebrow {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

/* ---------- 6. Hero ---------- */
.hero {
  padding: 2rem 0 1rem;
  position: relative;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1rem; }
.hero-eyebrow {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 1rem;
}
.hero-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.btn-primary {
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--t-fast);
}
.btn-primary:hover {
  background: var(--purple-deep);
  color: var(--text-primary);
  box-shadow: var(--shadow-purple);
  transform: translateY(-1px);
}
.btn-secondary {
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-default);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: all var(--t-fast);
}
.btn-secondary:hover { border-color: var(--purple-light); color: var(--text-primary); }

.hero-stats {
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.08) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(163, 230, 53, 0.20);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.hero-stats h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; }
.last-updated {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(163, 230, 53, 0.15);
  font-size: 0.78rem;
  color: var(--text-faint);
  font-family: var(--font-body);
}
.recognized-by {
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-muted);
}
.recognized-by-label { font-size: 0.85rem; font-weight: 500; }
.recognized-by-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.6;
}
.recognized-by-logos span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ---------- 7. Compare table ---------- */
.compare-section { padding: 2.5rem 0; }
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.compare-header h3 { margin: 0; font-size: 1.1rem; }
.compare-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  color: var(--text-body);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(168, 100, 255, 0.04); }

.brand-cell { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo-mini {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.brand-logo-mini img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-name { font-weight: 600; color: var(--text-primary); }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.rank-badge.gold { background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1A0F00; }
.rank-badge.silver { background: linear-gradient(135deg, #E5E7EB, #9CA3AF); color: #1A1A1A; }
.rank-badge.bronze { background: linear-gradient(135deg, #FB923C, #EA580C); color: #1A0F00; }

.tag-good {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-warn {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(255, 178, 63, 0.12);
  color: #FFB23F;
  border: 1px solid rgba(255, 178, 63, 0.30);
  font-size: 0.78rem;
  font-weight: 600;
}

.compare-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.compare-cta:hover { background: var(--purple-deep); color: var(--text-primary); }

/* ---------- 8. Brand review blocks ---------- */
.brand-review {
  background: linear-gradient(180deg, rgba(168, 100, 255, 0.06) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(168, 100, 255, 0.18);
  border-radius: var(--r-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--t-fast);
}
.brand-review:hover { border-color: rgba(168, 100, 255, 0.30); }
.brand-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}
.brand-logo {
  width: 90px !important;
  height: 90px !important;
  border-radius: var(--r-md);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-title h3 { margin-bottom: 0.25rem; }
.rank-line {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.tagline { font-size: 0.92rem; color: var(--text-muted); }
.brand-rating {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}
.stars { color: var(--green); font-size: 1.1rem; letter-spacing: 0.05em; }
.brand-content p { margin-bottom: 1rem; line-height: 1.7; }

/* Pros/Cons (CryptoGamble-style green/red) */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.pros, .cons {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 1.25rem;
  position: relative;
}
.pros {
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.08) 0%, var(--bg-base) 50%);
  border-color: rgba(163, 230, 53, 0.20);
}
.cons {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.08) 0%, var(--bg-base) 50%);
  border-color: rgba(239, 68, 68, 0.20);
}
.pros h4 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cons h4 {
  color: var(--red);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 0.6rem; }
.pros li, .cons li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
}
.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}
.cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
}

.brand-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.25rem;
}
.brand-readmore {
  color: var(--purple-light);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.brand-readmore:hover { color: var(--purple); text-decoration: underline; }

/* ---------- 9. Review hero (CryptoGamble-style) ---------- */
.review-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.review-breadcrumb a { color: var(--text-muted); }
.review-breadcrumb a:hover { color: var(--purple-light); }
.review-breadcrumb .sep { color: var(--text-faint); }
.review-breadcrumb .current { color: var(--text-primary); }

.review-header {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem 0 0;
}
.review-brand-logo-card {
  width: 280px;
  height: 280px;
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.07) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(163, 230, 53, 0.20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  flex-shrink: 0;
}
.review-brand-logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
.review-brand-logo-card .badge-floating {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.review-brand-meta h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}
.review-brand-meta .hero-eyebrow { display: none !important; }

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-dots { display: inline-flex; gap: 0.3rem; }
.review-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-deep);
  display: inline-block;
}
.review-dots .dot.empty { background: var(--bg-card-2); }
.review-count-link {
  color: var(--text-primary);
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: 500;
}
.review-count-link:hover { color: var(--purple-light); }

.review-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.review-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.40);
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 500;
}
.review-tag.neutral {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-body);
}

/* Bonus offer line - prominent welcome bonus display */
.review-bonus-line {
  background: linear-gradient(135deg, rgba(120, 15, 225, 0.18) 0%, rgba(168, 100, 255, 0.06) 100%);
  border: 1px solid rgba(168, 100, 255, 0.30);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
}
.review-bonus-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-light);
}
.review-bonus-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.review-cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  min-width: 240px;
}
.review-cta {
  background: var(--purple);
  color: var(--text-primary);
  padding: 1rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--t-fast);
  white-space: nowrap;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-cta:hover {
  background: var(--purple-deep);
  color: var(--text-primary);
}

/* Review meta row - cleaner, works well on mobile */
.review-meta-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.review-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-meta-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.review-meta-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}
.review-disclaimer {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.5;
  max-width: 320px;
  justify-self: end;
}

.review-intro {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.review-intro .hero-lede:first-child {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ---------- 10. Quick facts grid ---------- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.fact-card {
  background: linear-gradient(180deg, rgba(168, 100, 255, 0.06) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(168, 100, 255, 0.18);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}
.fact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.fact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  word-wrap: break-word;
}
.fact-value a { color: var(--purple-light); }
.fact-value.small { font-size: 0.88rem; font-weight: 500; color: var(--text-body); }

/* ---------- 11. Bonus deposit cards (gradient purple) ---------- */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.bonus-card {
  background: linear-gradient(180deg, rgba(120, 15, 225, 0.20) 0%, rgba(120, 15, 225, 0.08) 100%);
  border: 1px solid rgba(168, 100, 255, 0.25);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.bonus-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.bonus-card-offer {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  flex: 1;
}
.bonus-card-cta {
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--t-fast);
}
.bonus-card-cta:hover { background: var(--purple-deep); color: var(--text-primary); }

/* ---------- 12. Brand cards (CryptoGamble-style favorites grid) ---------- */
.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.brand-card {
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.07) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(163, 230, 53, 0.20);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  transition: border-color var(--t-fast);
  position: relative;
}
.brand-card:hover {
  border-color: rgba(163, 230, 53, 0.35);
}
.brand-card-logo {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(163, 230, 53, 0.10);
}
.brand-card-logo img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  object-fit: contain;
}
.brand-card-bonus {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.4;
  margin-bottom: 0.85rem;
  min-height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card-cta {
  width: 100%;
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background var(--t-fast);
}
.brand-card-cta:hover {
  background: var(--purple-deep);
  color: var(--text-primary);
}
.brand-card-readmore {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--purple-light);
  font-weight: 500;
  text-decoration: none;
}
.brand-card-readmore:hover {
  color: var(--purple);
  text-decoration: underline;
}
.brand-card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-muted);
  z-index: 2;
}
.brand-card-rank.gold,
.brand-card-rank.silver,
.brand-card-rank.bronze {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* ---------- 13. Stats blocks ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}
.stat-card .stat-label-small {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.stat-card .stat-num-small {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.crypto-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}
.crypto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color var(--t-fast);
}
.crypto-card:hover { border-color: var(--border-default); }
.crypto-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.crypto-icon img {
  width: 28px !important;
  height: 28px !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  object-fit: contain !important;
}
.crypto-name { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }

/* ---------- 14. Article body ---------- */
.article-body { font-size: 1rem; line-height: 1.6; color: var(--text-body); }
.article-body h2 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.article-body h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1.15rem;
}
.article-body p { margin-bottom: 0.75rem; }
.article-body a { color: var(--purple-light); border-bottom: 1px solid rgba(168, 100, 255, 0.30); }
.article-body a:hover { color: var(--purple); border-bottom-color: var(--purple); }

/* ---------- 15. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: linear-gradient(180deg, rgba(168, 100, 255, 0.06) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(168, 100, 255, 0.18);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: background var(--t-fast);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--purple-light);
  transition: transform var(--t-fast);
  font-weight: 300;
}
.faq-item[open] .faq-summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-summary:hover { background: rgba(168, 100, 255, 0.04); }
.faq-content { padding: 0 1.5rem 1.25rem; color: var(--text-body); }

/* ---------- 16. Related cards ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all var(--t-base);
  display: block;
  color: var(--text-body);
}
.related-card:hover {
  border-color: var(--purple-light);
  background: var(--bg-card-2);
  color: var(--text-body);
  transform: translateY(-2px);
}
.related-card .label {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(168, 100, 255, 0.12);
  color: var(--purple-light);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.related-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.related-card p { font-size: 0.9rem; margin: 0; color: var(--text-muted); }

/* ---------- Category tiles (with 3D illustrations) ---------- */
.category-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.category-tile {
  background: linear-gradient(135deg, rgba(120, 15, 225, 0.08) 0%, rgba(168, 100, 255, 0.02) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 110px;
  position: relative;
  overflow: hidden;
  color: var(--text-body);
}
.category-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 60%, rgba(168, 100, 255, 0.15));
  border-radius: var(--r-lg);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.category-tile:hover {
  border-color: var(--purple-light);
  transform: translateY(-2px);
  color: var(--text-body);
  box-shadow: 0 8px 32px rgba(120, 15, 225, 0.2);
}
.category-tile:hover::before { opacity: 1; }
.category-tile-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.category-tile h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.3;
}
.category-tile-illustration {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.category-tile-illustration img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(120, 15, 225, 0.4));
}

/* ---------- Provider logos badge row ---------- */
.provider-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 1rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
}
.provider-row-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 0.5rem;
}
.provider-row img {
  max-height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--t-fast);
  filter: brightness(1.1);
}
.provider-row a:hover img { opacity: 1; }

/* ---------- Live games carousel ---------- */
.games-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  position: relative;
  aspect-ratio: 3/4;
}
.game-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 9, 15, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.game-card-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.game-card-provider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ---------- Recognized-by partner row (footer of hero) ---------- */
.recognized-by-logos img {
  max-height: 24px;
  width: auto;
  opacity: 0.5;
  filter: brightness(1.1);
  transition: opacity var(--t-fast);
}
.recognized-by-logos a:hover img { opacity: 0.9; }

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-disclaimer {
  background: rgba(255, 178, 63, 0.06);
  border: 1px solid rgba(255, 178, 63, 0.20);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-body);
}
.footer-disclaimer strong { color: #FFB23F; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.footer h5 {
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--purple-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- 18. Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-default);
  padding: 0.85rem 1rem;
  align-items: center;
  gap: 0.75rem;
}
.mobile-cta-text { flex: 1; }
.mobile-cta-text strong { display: block; color: var(--text-primary); font-size: 0.95rem; }
.mobile-cta-text small { color: var(--text-muted); font-size: 0.78rem; }
.mobile-cta-btn {
  background: var(--purple);
  color: var(--text-primary);
  padding: 0.65rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.mobile-cta-btn:hover { background: var(--purple-deep); color: var(--text-primary); }

/* ---------- 21. CTA button color lock-down (defeat browser defaults) ---------- */
a, button, label { -webkit-tap-highlight-color: transparent; }

/* ---------- Card tint utility classes — apply alongside .card or any container ---------- */
.tint-green {
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.08) 0%, var(--bg-base) 50%) !important;
  border: 1px solid rgba(163, 230, 53, 0.20) !important;
}
.tint-purple {
  background: linear-gradient(180deg, rgba(168, 100, 255, 0.08) 0%, var(--bg-base) 50%) !important;
  border: 1px solid rgba(168, 100, 255, 0.20) !important;
}
.tint-red {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, var(--bg-base) 50%) !important;
  border: 1px solid rgba(239, 68, 68, 0.20) !important;
}

/* Aggressive eyebrow color/style lock-down — defeat any cached or leaked yellow/orange */
span.hero-eyebrow,
span.eyebrow,
.hero-eyebrow,
.section-head .eyebrow,
.eyebrow {
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #A864FF !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 0.85rem !important;
  display: inline-block !important;
  box-shadow: none !important;
}
span.hero-eyebrow::before,
span.eyebrow::before,
.hero-eyebrow::before,
.eyebrow::before,
span.hero-eyebrow::after,
span.eyebrow::after,
.hero-eyebrow::after,
.eyebrow::after {
  content: none !important;
  display: none !important;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.brand-card-cta,
.brand-card-cta:link,
.brand-card-cta:visited,
.review-cta,
.review-cta:link,
.review-cta:visited,
.bonus-card-cta,
.bonus-card-cta:link,
.bonus-card-cta:visited,
.compare-cta,
.compare-cta:link,
.compare-cta:visited,
.mobile-cta-btn,
.mobile-cta-btn:link,
.mobile-cta-btn:visited,
.nav-cta,
.nav-cta:link,
.nav-cta:visited {
  background-color: #780FE1 !important;
  background-image: none !important;
  color: #FAFBFF !important;
  border: none !important;
}

.btn-primary:hover,
.brand-card-cta:hover,
.review-cta:hover,
.bonus-card-cta:hover,
.compare-cta:hover,
.mobile-cta-btn:hover,
.nav-cta:hover {
  background-color: #5D2DE6 !important;
  color: #FAFBFF !important;
}

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  background-color: transparent !important;
  color: var(--text-body) !important;
  border: 1px solid var(--border-default) !important;
}
.btn-secondary:hover {
  border-color: var(--purple-light) !important;
  color: var(--text-primary) !important;
}

/* ---------- 19. Animations ---------- */
.fade-up { opacity: 1; transform: none; }
.fade-up.delay-1, .fade-up.delay-2 { animation: none; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Methodology cards (matches pros box styling, purple-tinted) ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}
.method-card {
  background: linear-gradient(180deg, rgba(168, 100, 255, 0.08) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(168, 100, 255, 0.20);
  border-radius: var(--r-md);
  padding: 1.25rem 1.1rem;
}
.method-card .num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.method-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}
.method-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-body);
}

/* "Disqualifies" box - matches cons box styling */
.disqualifies-box,
.callout {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, var(--bg-base) 50%);
  border: 1px solid rgba(239, 68, 68, 0.20);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.disqualifies-box .label,
.callout-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.callout p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--text-body); }

/* ---------- 20. Responsive ---------- */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    box-shadow: var(--shadow-elev);
  }
  .sidebar.open { transform: translateX(0); }
  /* CSS-only mobile toggle via hidden checkbox - works without JavaScript */
  .sidebar-state-input:checked ~ .sidebar { transform: translateX(0); }
  .app-main { margin-left: 0; }
  .nav-toggle { display: flex; }
  .nav-logo { display: block; }
  .nav-logo img { height: 32px; width: auto; }
  .review-header { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .review-brand-logo-card { margin: 0 auto; }
  .review-cta-block { align-items: center; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 1rem; }
  .header .container { padding: 0.75rem 1rem; }
  section { padding: 1.5rem 0; }
  .hero { padding: 1.5rem 0 1rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .proscons { grid-template-columns: 1fr; }
  .review-brand-logo-card { width: 180px; height: 180px; padding: 1.5rem; margin: 0 auto; }
  .review-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding-top: 1rem;
  }
  .review-rating-row { justify-content: center; }
  .review-tags { justify-content: center; }
  .review-cta-block { min-width: 0; align-items: stretch; }
  .review-cta { padding: 0.85rem 1.25rem; font-size: 0.95rem; }
  .review-bonus-line { text-align: center; align-items: center; }

  /* Cleaner stacked meta row on mobile */
  .review-meta-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    text-align: left;
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(168, 100, 255, 0.08) 0%, var(--bg-base) 50%);
    border: 1px solid rgba(168, 100, 255, 0.20);
    border-radius: var(--r-md);
    margin-top: 1.25rem;
    border-top: 1px solid rgba(168, 100, 255, 0.20);
  }
  .review-meta-item { gap: 0.1rem; }
  .review-meta-label { font-size: 0.65rem; }
  .review-meta-value { font-size: 0.88rem; }
  .review-disclaimer {
    grid-column: 1 / -1;
    text-align: left;
    max-width: 100%;
    justify-self: stretch;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0.25rem;
  }

  /* Mobile brand cards - 2 column grid, tighter, with proportional logo */
  .brand-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .brand-card { padding: 0.85rem 0.75rem; }
  .brand-card-logo {
    aspect-ratio: auto;
    height: 70px;
    padding: 0.5rem;
    margin-bottom: 0.6rem;
  }
  .brand-card-logo img { max-height: 50px; }
  .brand-card-bonus {
    font-size: 0.78rem;
    line-height: 1.3;
    min-height: 3.5em;
    margin-bottom: 0.6rem;
  }
  .brand-card-cta {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }
  .brand-card-readmore { font-size: 0.75rem; margin-top: 0.5rem; }
  .brand-card-rank { width: 22px; height: 22px; font-size: 0.7rem; top: 8px; left: 8px; }

  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td {
    display: block;
    width: 100%;
  }
  .compare-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 0.5rem;
  }
  .compare-table td {
    border: none;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .compare-table td.brand-td { justify-content: flex-start; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .brand-review-head { grid-template-columns: 1fr; text-align: center; gap: 0.85rem; }
  .brand-review-head .brand-logo {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto;
  }
  .brand-rating { align-items: center; text-align: center; }
  .brand-rating .stars { font-size: 1.15rem; }

  /* Compact h1 on mobile */
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.2rem !important; }

  /* Hide any nav-cta if it sneaks back in */
  .nav-cta { display: none !important; }

  /* Tight section header on mobile */
  .section-head { margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  /* Single-column brand cards on very small screens */
  .brand-card-grid {
    grid-template-columns: 1fr;
  }
  .brand-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.6rem 0.85rem;
    align-items: center;
    padding: 0.85rem;
    text-align: left;
  }
  .brand-card-logo {
    grid-row: 1 / 4;
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }
  .brand-card-bonus {
    grid-column: 2;
    text-align: left;
    justify-content: flex-start;
    min-height: 0;
    margin-bottom: 0;
  }
  .brand-card-cta {
    grid-column: 2;
    width: auto;
  }
  .brand-card-readmore {
    grid-column: 2;
    text-align: left;
    margin-top: 0;
  }
  .brand-card-rank {
    top: 6px;
    right: 6px;
    left: auto;
  }
}


/* ---------- 21. Sidebar close button + backdrop (mobile) ---------- */
.sidebar-close { display: none; }
.sidebar-backdrop { display: none; }

@media (max-width: 1024px) {
  .sidebar { padding-top: 3.5rem; }
  .sidebar-close {
    display: flex;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 300;
    z-index: 2;
    transition: background var(--t-fast), border-color var(--t-fast);
  }
  .sidebar-close:hover,
  .sidebar-close:focus-visible {
    background: var(--bg-elev);
    border-color: var(--border-default);
    outline: none;
  }
  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity var(--t-base), visibility var(--t-base);
  }
  .sidebar-state-input:checked ~ .sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }
}

/* ---------- 22. Active bonus codes table (mobile responsive) ---------- */
.coins-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.coins-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.coins-table thead th {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-faint);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coins-table tbody td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}
.coins-table tbody tr:last-child td { border-bottom: none; }
.coins-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.coins-table code {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.88rem;
}

/* Card-stack mode on mobile — only for tables whose <td>s carry data-label.
   This excludes the homepage crypto-matrix table, which scrolls horizontally. */
@media (max-width: 640px) {
  .coins-table:has(td[data-label]) thead { display: none; }
  .coins-table:has(td[data-label]),
  .coins-table:has(td[data-label]) tbody,
  .coins-table:has(td[data-label]) tr,
  .coins-table:has(td[data-label]) td { display: block; }
  .coins-table:has(td[data-label]) tr {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
    margin-bottom: 0.65rem;
  }
  .coins-table td[data-label] {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: right;
  }
  .coins-table td[data-label]:last-child { border-bottom: none; }
  .coins-table td[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-faint);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
    flex-shrink: 0;
  }
}


/* ---------- 23. Author byline (review pages) + author profile page ---------- */
.review-meta-author {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.65rem;
}
.review-meta-author > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--border-default);
}
.review-meta-author > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-meta-author a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px dotted rgba(168, 100, 255, 0.5);
  transition: border-color var(--t-fast);
}
.review-meta-author a:hover {
  border-bottom-color: var(--purple-light);
}

/* Author profile page hero */
.author-hero { padding: 3rem 0 2rem; }
.author-hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.25rem;
  align-items: center;
}
.author-hero-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 100, 255, 0.35);
  box-shadow: var(--shadow-purple);
}
.author-hero-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .author-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
  .author-hero-photo {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }
  .author-hero-links { justify-content: center; }
}

/* ---------- 23. Page byline component (homepage + conversion pages) ---------- */
.page-byline {
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.page-byline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-body);
  transition: background var(--t-fast), border-color var(--t-fast);
  max-width: 100%;
}
.page-byline-link:hover,
.page-byline-link:focus-visible {
  background: var(--bg-elevated);
  border-color: var(--border-default);
  outline: none;
}
.page-byline-link.is-factcheck {
  border-color: var(--green-border);
  background: var(--green-bg);
}
.page-byline-link.is-factcheck:hover,
.page-byline-link.is-factcheck:focus-visible {
  background: rgba(163, 230, 53, 0.18);
  border-color: rgba(163, 230, 53, 0.5);
}
.page-byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.page-byline-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.25;
  min-width: 0;
}
.page-byline-name {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 400;
}
.page-byline-name strong { font-weight: 600; }
.page-byline-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .page-byline-link { padding: 0.35rem 0.85rem 0.35rem 0.35rem; }
  .page-byline-avatar { width: 32px; height: 32px; }
  .page-byline-name { font-size: 0.85rem; }
  .page-byline-meta { font-size: 0.72rem; }
}
