/* =============================================================
   BoltBonus.com — Global Stylesheet
   Dark premium theme. Mobile-first. All pages use this file.
   ============================================================= */



/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --bg:            #0b0b10;
  --bg-surface:    #111118;
  --bg-card:       #16161f;
  --bg-card-hover: #1c1c2a;
  --bg-elevated:   #1e1e2c;
  --border:        #222232;
  --border-light:  #1a1a28;

  --accent:        #c8a44a;
  --accent-hover:  #dbbe6e;
  --accent-dim:    rgba(200, 164, 74, 0.10);
  --accent-glow:   rgba(200, 164, 74, 0.18);

  --text:          #edeaf5;
  --text-secondary:#9896b0;
  --text-muted:    #5e5c76;

  --success:       #4ade80;
  --success-dim:   rgba(74, 222, 128, 0.09);
  --danger:        #f87171;
  --danger-dim:    rgba(248, 113, 113, 0.09);
  --warning:       #fb923c;
  --warning-dim:   rgba(251, 146, 60, 0.09);

  --font-display:  Arial, Helvetica, sans-serif;
  --font-body:     Arial, Helvetica, sans-serif;

  --header-h:      70px;
  --container:     1200px;
  --container-narrow: 820px;
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --shadow:        0 2px 16px rgba(0,0,0,0.45);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.65);
  --shadow-card:   0 1px 4px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.3);

  --transition:    180ms ease;
  --transition-slow: 320ms ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 12px; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }
blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--text-secondary);
  font-style: italic;
  background: var(--accent-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}
main { padding-top: var(--header-h); min-height: 60vh; }

.section    { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }

.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── TEXT HELPERS ────────────────────────────────────────── */
.text-accent    { color: var(--accent); }
.text-muted     { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-success   { color: var(--success); }
.text-danger    { color: var(--danger); }

/* ── SPACING HELPERS ─────────────────────────────────────── */
.mt-8  { margin-top:  8px;  } .mb-8  { margin-bottom:  8px;  }
.mt-16 { margin-top: 16px;  } .mb-16 { margin-bottom: 16px;  }
.mt-24 { margin-top: 24px;  } .mb-24 { margin-bottom: 24px;  }
.mt-32 { margin-top: 32px;  } .mb-32 { margin-bottom: 32px;  }
.mt-48 { margin-top: 48px;  } .mb-48 { margin-bottom: 48px;  }

/* ── SR-ONLY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── GRID HELPERS ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(11, 11, 16, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.site-header .container { height: 100%; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}
.site-logo .logo-mark { display: block; border-radius: 6px; }
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.site-logo .logo-text strong {
  font-weight: 700;
  color: var(--accent);
}
.site-logo:hover { opacity: 0.85; }

/* ── NAV (desktop) ───────────────────────────────────────── */
.site-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-link,
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-dropdown-btn:hover {
  color: var(--text);
  background: var(--bg-card);
}
.nav-link.is-active {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav-link img, .nav-dropdown-btn .nav-caret {
  filter: invert(1);
  opacity: 0.45;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-dropdown-btn .nav-btn-icon { filter: invert(1); opacity: 0.65; transition: opacity var(--transition); }
.nav-link:hover img, .nav-dropdown-btn:hover .nav-caret { opacity: 0.8; }
.nav-dropdown-btn:hover .nav-btn-icon { opacity: 1; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown.is-open .nav-dropdown-btn {
  color: var(--text);
  background: var(--bg-card);
}
.nav-dropdown.is-open .nav-dropdown-btn .nav-caret {
  transform: rotate(180deg);
  opacity: 0.8;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu a:hover { color: var(--text); background: var(--bg-card-hover); }
.nav-dropdown-menu .menu-label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-dropdown-menu .menu-label img { filter: invert(1); opacity: 0.5; }
.nav-dropdown-menu .menu-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
/* Mega-dropdown (Casinos) */
.nav-dropdown-menu.nav-mega {
  display: none;
  min-width: 500px;
  flex-direction: row;
  gap: 0;
  padding: 6px;
}
.nav-dropdown.is-open .nav-dropdown-menu.nav-mega { display: flex; }
.mega-col {
  flex: 1;
  padding: 6px 4px;
}
.mega-col + .mega-col { border-left: 1px solid var(--border); padding-left: 8px; }
/* Featured menu item */
.nav-dropdown-menu a.menu-item-featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 4px;
  display: block;
}
.nav-dropdown-menu a.menu-item-featured:hover { background: var(--bg-card-hover); border-color: var(--accent-dim); }
.menu-item-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.menu-item-desc {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── NAV TOGGLE (mobile) ─────────────────────────────────── */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg-card); color: var(--text); }
.nav-toggle img { filter: invert(1); opacity: 0.6; }

/* ── MOBILE NAV PANEL ────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 20px 28px;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-h));
  z-index: 999;
}
.nav-mobile.is-open { display: block; }
.nav-mobile-group { margin-bottom: 24px; }
.nav-mobile-group:last-child { margin-bottom: 0; }
.nav-mobile-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 12px;
  margin-bottom: 6px;
  display: block;
}
.nav-mobile a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-card); }
.nav-mobile a.is-active { color: var(--accent); background: var(--accent-dim); }

@media (min-width: 960px) {
  .site-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-toggle { display: none; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 64px;
}
@media (min-width: 900px) {
  .site-footer { padding: 64px 0 32px; margin-top: 80px; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand .site-logo { display: inline-block; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}
@media (min-width: 900px) { .footer-brand p { max-width: 260px; } }

/* Mobile: center logo + brand, center link columns */
@media (max-width: 599px) {
  .footer-brand {
    text-align: center;
    padding-bottom: 8px;
  }
  .footer-brand .site-logo { display: block; margin: 0 auto 14px; width: fit-content; }
  .footer-col {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
  }
  .footer-col ul li a { display: inline-block; }
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-rg {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-rg-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-rg-logos img {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.footer-rg-logos img:hover { opacity: 1; filter: grayscale(0); }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--danger);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}
.footer-disclaimer {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 900px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom p {
  font-size: 0.79rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-legal-links a {
  font-size: 0.79rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--text-secondary); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  border: none;
}
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active,
.btn-ghost:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #0b0b10;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0b0b10;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
  color: var(--accent-hover);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
  border-color: rgba(200,164,74,0.3);
}
.btn-sm  { padding: 8px 16px;  font-size: 0.8rem;  }
.btn-lg  { padding: 16px 32px; font-size: 1rem;    }
.btn-full { width: 100%; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(200, 164, 74, 0.4);
  box-shadow: var(--shadow-card);
}

/* Casino review card */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition-slow);
}
.casino-card:hover {
  border-color: rgba(200, 164, 74, 0.5);
  transform: translateY(-2px);
}
.casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.casino-card-logo {
  width: 160px;
  height: 60px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.casino-card-logo img[src=""] { display: none; }
.casino-card-logo-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 8px;
}
.casino-card-score { text-align: right; flex-shrink: 0; }
.casino-card-score .score-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.casino-card-score .score-max { font-size: 1rem; color: var(--text-muted); }
.casino-card-score .score-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.casino-card-body { padding: 20px 24px; }
.casino-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.casino-card-tagline {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.casino-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.casino-card-bonus { font-size: 0.84rem; color: var(--text-secondary); }
.casino-card-bonus strong {
  display: block;
  font-size: 0.95rem;
  color: var(--success);
}

/* ── STAR RATINGS ────────────────────────────────────────── */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.stars img {
  width: 16px;
  height: 16px;
  filter: invert(70%) sepia(60%) saturate(500%) hue-rotate(5deg);
}
.stars-lg img { width: 20px; height: 20px; }

/* ── PROS / CONS ─────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (min-width: 500px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

.pros-list, .cons-list {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 18px;
}
.pros-list { border-left: 3px solid var(--success); }
.cons-list { border-left: 3px solid var(--danger); }
.pros-list h4, .cons-list h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pros-list h4 { color: var(--success); }
.cons-list h4 { color: var(--danger); }
.pros-list li, .cons-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}
.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.cons-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* ── COMPARISON TABLE ────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 620px;
}
.comparison-table thead th {
  background: var(--bg-elevated);
  padding: 13px 16px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--bg-card-hover); }
.comparison-table .td-name   { font-weight: 600; color: var(--text); white-space: nowrap; }
.comparison-table .td-score  { font-weight: 700; color: var(--accent); font-family: var(--font-display); font-size: 1rem; }
.comparison-table .td-good   { color: var(--success); font-weight: 500; }
.comparison-table .td-bad    { color: var(--danger); }

/* ── KEY FACTS PILLS ─────────────────────────────────────── */
.facts-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.79rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.fact-pill strong { color: var(--text); font-weight: 600; }
.fact-pill-accent {
  border-color: var(--accent-glow);
  background: var(--accent-dim);
  color: var(--accent);
}

/* ── TAGS ────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-glow);
}
.tag-neutral {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-color: var(--border);
}
.tag-success {
  background: var(--success-dim);
  color: var(--success);
  border-color: rgba(74,222,128,0.2);
}
.tag-danger {
  background: var(--danger-dim);
  color: var(--danger);
  border-color: rgba(248,113,113,0.2);
}

/* ── CALLOUT BOXES ───────────────────────────────────────── */
.callout {
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
  border-left: 3px solid;
}
.callout p { margin-bottom: 0; font-size: 0.9rem; }
.callout-info    { background: var(--accent-dim);   border-color: var(--accent);   color: var(--text-secondary); }
.callout-success { background: var(--success-dim);  border-color: var(--success);  color: var(--text-secondary); }
.callout-warning { background: var(--warning-dim);  border-color: var(--warning);  color: var(--text-secondary); }
.callout-danger  { background: var(--danger-dim);   border-color: var(--danger);   color: var(--text-secondary); }
.callout strong  { color: var(--text); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.79rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.35; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.79rem;
  color: var(--text-muted);
}
.meta-line span { display: flex; align-items: center; gap: 5px; }

/* ── AUTHOR BOX (inline, used in articles) ───────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-top: 48px;
}
.author-box-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-box-info { flex: 1; min-width: 0; }
.author-box-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.author-box-title { font-size: 0.79rem; color: var(--accent); margin-bottom: 8px; }
.author-box-bio   { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.author-box-links { display: flex; gap: 14px; flex-wrap: wrap; }
.author-box-links a {
  font-size: 0.79rem;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color var(--transition);
}
.author-box-links a:hover { color: var(--accent); }

/* ── RESPONSIBLE GAMBLING SECTION ────────────────────────── */
.rg-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 48px 0;
}
.rg-section h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.rg-section p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.65;
}
.rg-section p:last-child { margin-bottom: 0; }
.rg-section a { color: var(--text-secondary); text-decoration: underline; }
.rg-section a:hover { color: var(--text); }
.rg-inner { max-width: 760px; }
.rg-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.rg-text { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.65; }
.rg-links { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.rg-links a { font-size: 0.82rem; color: var(--text-secondary); text-decoration: underline; }
.rg-links a:hover { color: var(--text); }
.rg-age { font-size: 0.78rem; color: var(--text-muted); }
.rg-age a { color: var(--text-muted); text-decoration: underline; }

/* ── AFFILIATE DISCLOSURE NOTE ───────────────────────────── */
.affiliate-note {
  font-size: 0.79rem;
  color: var(--text-muted);
  padding: 11px 16px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border-left: 2px solid var(--border);
  margin-bottom: 28px;
  line-height: 1.6;
}
.affiliate-note a { color: var(--text-secondary); text-decoration: underline; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition),
              background var(--transition), border-color var(--transition);
  z-index: 900;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--bg-card-hover); border-color: var(--accent); }
.back-to-top img { filter: invert(1); opacity: 0.7; }

/* =============================================================
   REVIEW PAGE TEMPLATE
   Shared styles for all casino review pages.
   Only per-page comparison row highlights stay in page <style>.
   ============================================================= */

/* ── HERO WRAPPER ── */
.hero-wrapper {
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--border);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 75% at 70% 50%, rgba(200,164,74,0.18) 0%, transparent 65%),
    linear-gradient(100deg, rgba(11,11,16,0.75) 0%, rgba(11,11,16,0.1) 55%, rgba(11,11,16,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.review-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 14px 0 0;
}
.review-hero {
  position: relative;
  z-index: 2;
  padding: 32px 0 56px;
}
.review-hero .container { position: relative; z-index: 2; }
.review-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── HERO TITLE ── */
.hero-title-row {
  text-align: center;
  padding: 0 4px;
}
.review-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.review-title em { font-style: normal; color: var(--accent); }

/* ── HERO COLUMNS ── */
.hero-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-cols { grid-template-columns: 1fr 1fr; gap: 52px; }
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-left { align-items: flex-start; text-align: left; }
}

/* ── CASINO LOGO FLOAT ── */
.casino-logo-wrap {
  float: left;
  width: 160px;
  height: 60px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 2px 16px 8px 0;
}
@media (max-width: 899px) {
  .casino-logo-wrap { float: none; margin: 0 auto 12px; }
}
.casino-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.review-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  overflow: hidden;
}

/* ── TRUST BADGES ── */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero-trust-strip { justify-content: flex-start; }
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.25;
  flex: 1 1 calc(50% - 5px);
  min-width: 140px;
  max-width: 100%;
}
@media (min-width: 480px) {
  .trust-badge { flex: 0 1 auto; }
}
.trust-badge img { width: 16px; height: 16px; filter: invert(1); opacity: 0.55; flex-shrink: 0; }
.trust-badge strong { display: block; color: var(--text); font-size: 0.88rem; font-weight: 600; }
.trust-badge.is-verified {
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.05);
}
.trust-badge.is-verified img { opacity: 1; filter: invert(1) sepia(1) saturate(3) hue-rotate(85deg); }
.trust-badge.is-verified strong { color: var(--success); }

/* ── REVIEW META + CTAs ── */
.review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  justify-content: center;
}
@media (min-width: 900px) {
  .review-meta { justify-content: flex-start; }
}
.review-meta span { display: flex; align-items: center; gap: 5px; }
.review-meta img { width: 13px; height: 13px; filter: invert(1); opacity: 0.35; }
.review-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .review-cta-row { justify-content: flex-start; }
}
@media (max-width: 400px) {
  .review-cta-row { flex-direction: column; }
  .review-cta-row .btn-primary,
  .review-cta-row .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}

/* ── HERO RIGHT (screenshots) ── */
.hero-right { position: relative; display: none; }
@media (min-width: 900px) {
  .hero-right { display: block; }
}
.hero-screen-desktop {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,164,74,0.18);
  box-shadow: 0 16px 64px rgba(0,0,0,0.7), 0 0 0 1px var(--border);
  aspect-ratio: 2048 / 915;
  background: var(--bg-card);
}
.hero-screen-desktop img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-screen-mobile {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 28%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,164,74,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
  aspect-ratio: 800 / 1727;
  background: var(--bg-card);
}
.hero-screen-mobile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── REVIEW PAGE LAYOUT ── */
.review-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1060px) {
  .review-layout { grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
}

/* ── SIDEBAR ── */
.review-sidebar { display: none; }
@media (min-width: 1060px) {
  .review-sidebar { display: block; position: sticky; top: calc(var(--header-h) + 24px); }
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.toc-list { list-style: none; }
.toc-list li { border-bottom: 1px solid var(--border-light); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: block;
  padding: 9px 0;
  font-size: 0.83rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.toc-list a:hover { color: var(--accent); }
.facts-list { list-style: none; }
.facts-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border-light);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list .fact-label { color: var(--text-muted); }
.facts-list .fact-val { color: var(--text); font-weight: 500; text-align: right; }
.facts-list .fact-val.good { color: var(--success); }
.facts-list .fact-val.warn { color: var(--warning); }

/* ── REVIEW MAIN CONTENT ── */
.review-main { min-width: 0; }
.review-section { margin-bottom: 56px; }
.review-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.review-section h3 { font-size: 1.05rem; margin-bottom: 12px; margin-top: 28px; }
.review-section p { color: var(--text-secondary); line-height: 1.78; margin-bottom: 1rem; }
.review-section p:last-child { margin-bottom: 0; }

/* ── VERDICT BOX ── */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.verdict-box p { color: var(--text-secondary); margin-bottom: 0.75rem; }
.verdict-box p:last-child { margin-bottom: 0; }

/* ── KEY FACTS ── */
.key-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.fact-pill img { width: 14px; height: 14px; filter: invert(1); opacity: 0.5; }
.fact-pill strong { color: var(--text); }

/* ── PROS / CONS (review version) ── */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 28px 0; }
@media (min-width: 640px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.pros-box { border-top: 3px solid var(--success); }
.cons-box { border-top: 3px solid var(--danger); }
.pros-box h4, .cons-box h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pros-box h4 { color: var(--success); }
.cons-box h4 { color: var(--danger); }
.pros-cons-list { list-style: none; }
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.87rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.5;
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list img { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; filter: invert(1); }

/* ── SCREENSHOTS ── */
.screenshots-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
@media (min-width: 700px) {
  .screenshots-grid { grid-template-columns: 2fr 1fr; }
}
.screenshot-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.screenshot-wrap img { width: 100%; height: auto; display: block; }
.screenshot-desktop { aspect-ratio: 2048 / 915; }
.screenshot-mobile  { aspect-ratio: 800 / 1727; }

/* ── BONUS CARD ── */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}
.bonus-headline { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.bonus-sub { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 20px; }
.bonus-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 600px) {
  .bonus-terms { grid-template-columns: repeat(3, 1fr); }
}
.bonus-term { padding: 12px; background: var(--bg-elevated); border-radius: var(--radius); font-size: 0.8rem; color: var(--text-muted); }
.bonus-term strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 2px; }

/* ── PAYMENT METHODS ── */
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
@media (min-width: 500px) { .payment-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 800px) { .payment-grid { grid-template-columns: repeat(4, 1fr); } }
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.payment-item .p-name { font-weight: 500; color: var(--text); margin-bottom: 2px; }
.payment-item .p-speed { color: var(--success); font-size: 0.75rem; }
.payment-item .p-speed.slow { color: var(--text-muted); }

/* ── PROMO TABLE ── */
.promo-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.promo-table { width: 100%; min-width: 420px; font-size: 0.83rem; }
.promo-table th {
  background: var(--bg-elevated);
  padding: 11px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.promo-table td { padding: 11px 14px; border-top: 1px solid var(--border-light); color: var(--text-secondary); vertical-align: middle; }
.promo-table td:first-child { font-weight: 500; color: var(--text); }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; min-width: 560px; font-size: 0.83rem; }
.compare-table th {
  background: var(--bg-elevated);
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.compare-table td { padding: 12px 14px; border-top: 1px solid var(--border-light); color: var(--text-secondary); vertical-align: middle; }
.tag-good { background: var(--success-dim); color: var(--success); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.tag-warn { background: var(--warning-dim); color: var(--warning); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }

/* ── INFO / WARNING BOXES ── */
.info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(200,164,74,0.06);
  border: 1px solid rgba(200,164,74,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.info-box img { width: 18px; height: 18px; filter: invert(1); opacity: 0.7; flex-shrink: 0; margin-top: 1px; }
.warning-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(251,146,60,0.07);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.warning-box img { width: 18px; height: 18px; filter: invert(1); opacity: 0.7; flex-shrink: 0; margin-top: 1px; }

/* ── RG SECTION (review version) ── */
.rg-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 56px 0 40px;
}
.rg-section h3 { font-size: 0.9rem; margin-bottom: 10px; color: var(--text-muted); }
.rg-section p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.rg-section p:last-child { margin-bottom: 0; }
.rg-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.rg-links a { font-size: 0.8rem; color: var(--accent); text-decoration: underline; }
.rg-age {
  display: inline-block;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── AUTHOR BOX (review version) ── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 48px;
}
.author-box .author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-box-text { flex: 1; min-width: 0; }
.author-box-text h4 { font-size: 0.95rem; margin-bottom: 2px; }
.author-box-text .author-role { font-size: 0.78rem; color: var(--accent); margin-bottom: 10px; }
.author-box-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.author-box-links { display: flex; gap: 16px; flex-wrap: wrap; }
.author-box-links a { font-size: 0.8rem; color: var(--accent); text-decoration: underline; }
