/* =========================================================================
   BlockSpinReviews.com — Crypto Casino Reviews
   Design: minimalist, light, emerald/teal. Comparison-row led (casino.org
   style) with heavier crypto iconography. Fonts: Space Grotesk + Manrope.
   Intentionally shares NO CSS with the AllCasinos365 dark/gold theme.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --emerald:      #0f9d6e;
  --emerald-600:  #0b8f63;
  --emerald-700:  #0a7a54;
  --teal:         #12b3a6;
  --teal-glow:    #3fd9c9;
  --mint:         #eafaf4;
  --mint-2:       #f3fbf8;

  --ink:          #0a1f1a;   /* near-black green — headings, footer */
  --ink-2:        #10322a;
  --text:         #23342f;
  --soft:         #5d726c;
  --muted:        #8a9a95;

  --bg:           #ffffff;
  --bg-alt:       #f4faf7;
  --border:       #e3efe9;
  --border-2:     #d5e7df;

  --amber:        #f6a723;   /* star ratings only */
  --danger:       #e5484d;

  --grad:         linear-gradient(135deg, #0f9d6e 0%, #12b3a6 100%);
  --grad-deep:    linear-gradient(135deg, #0a7a54 0%, #0e8f83 100%);
  --grad-soft:    linear-gradient(135deg, #eafaf4 0%, #e3f7f3 100%);

  --shadow-sm:    0 1px 2px rgba(10,31,26,.06);
  --shadow:       0 6px 24px -8px rgba(10,31,26,.14);
  --shadow-lg:    0 18px 48px -18px rgba(10,31,26,.28);

  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  --maxw:         1180px;
  --font-head:    'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--emerald-600); text-decoration: none; transition: color .15s; }
a:hover { color: var(--emerald-700); }
ul { padding-left: 1.15rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.08rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding: 4.5rem 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section--tight { padding: 3rem 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.75rem; } .mt-3 { margin-top: 2.75rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .12s, box-shadow .18s, background .18s, color .15s;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(15,157,110,.7); }
.btn-primary:hover { color: #fff; box-shadow: 0 12px 26px -8px rgba(15,157,110,.85); transform: translateY(-1px); }
.btn-outline { background: #fff; border-color: var(--border-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald-700); }
.btn-ghost { background: var(--mint); color: var(--emerald-700); }
.btn-ghost:hover { background: #dff5ec; color: var(--emerald-700); }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Badges & chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .01em;
  padding: .28rem .6rem; border-radius: 6px; line-height: 1;
}
.badge-emerald { background: var(--mint); color: var(--emerald-700); }
.badge-teal    { background: #e3f7f4; color: #0b7f77; }
.badge-ink     { background: #eef2f1; color: var(--ink-2); }
.badge-amber   { background: #fef2dd; color: #b3730b; }
.badge-fair    { background: #e9f0ff; color: #3559c7; }
.badge-outline { background: #fff; border: 1px solid var(--border-2); color: var(--soft); }

.stars { color: var(--amber); letter-spacing: 1px; font-size: .95rem; }
.pf-chip { display:inline-flex; align-items:center; gap:.35rem; font-weight:600; font-size:.8rem; color:#0b7f77; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink); color: #9fbbb2; font-size: .8rem; font-weight: 500;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; padding: .55rem 0; flex-wrap: wrap; }
.tb-msg { display: inline-flex; align-items: center; gap: .55rem; }
.tb-badge {
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .7rem; letter-spacing: .02em; padding: .18rem .5rem; border-radius: 6px; flex: none;
}
.tb-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--teal-glow); font-weight: 600; flex: none; }
.tb-link svg { width: 15px; height: 15px; }
.tb-link:hover { color: #fff; }
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; text-align: center; gap: .4rem 1rem; }
}

/* ---------- Header — floating capsule navbar ---------- */
.site-header { position: sticky; top: 0; z-index: 60; padding: .7rem 0; background: transparent; }
.nav-shell {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(1.6) blur(16px);
  border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow);
  padding: .5rem .6rem .5rem 1.1rem; min-height: 60px;
}
.logo {
  justify-self: start; display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -.02em;
}
.logo:hover { color: var(--ink); }
.logo .logo-mark { width: 32px; height: 32px; flex: none; }
.logo .accent { color: var(--emerald); }

/* centered segmented menu (control-track look) */
.nav-menu {
  justify-self: center; display: flex; align-items: center; gap: 2px;
  background: var(--mint); border: 1px solid var(--border); border-radius: 999px; padding: 4px;
}
.nav-item {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600;
  font-size: .88rem; color: var(--soft); padding: .5rem .85rem; border-radius: 999px;
  transition: color .15s, background .15s, box-shadow .15s;
}
.nav-item svg { width: 16px; height: 16px; opacity: .8; }
.nav-item:hover { color: var(--emerald-700); }
.nav-item.active { background: #fff; color: var(--emerald-700); box-shadow: 0 2px 8px -2px rgba(10,31,26,.2); }
.nav-item.active svg { opacity: 1; }

.nav-actions { justify-self: end; display: flex; align-items: center; gap: .5rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600;
  font-size: .88rem; color: #fff; background: var(--grad); padding: .6rem 1.1rem; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(15,157,110,.75); transition: transform .12s, box-shadow .18s;
}
.nav-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(15,157,110,.9); }
.nav-cta svg { width: 16px; height: 16px; }

/* hamburger */
.nav-toggle {
  display: none; background: var(--mint); border: 1px solid var(--border); border-radius: 12px;
  width: 44px; height: 44px; cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle span { display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile slide-down panel (floating card) */
.mobile-panel { display: none; padding-top: .6rem; }
.mobile-panel.open { display: block; }
.mobile-panel .container { display: flex; flex-direction: column; gap: .2rem; }
.mobile-panel > .container {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow);
  padding: .6rem; max-width: var(--maxw);
}
.m-item {
  display: flex; align-items: center; gap: .75rem; font-family: var(--font-head); font-weight: 600;
  color: var(--text); padding: .85rem .9rem; border-radius: 12px; transition: background .15s, color .15s;
}
.m-item svg { width: 20px; height: 20px; color: var(--emerald); }
.m-item:hover { background: var(--mint); }
.m-item.active { background: var(--mint); color: var(--emerald-700); }
.m-cta { justify-content: center; margin-top: .5rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4rem 0 3.5rem; background: var(--grad-soft); border-bottom: 1px solid var(--border); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: radial-gradient(circle, rgba(63,217,201,.6), transparent 70%); top: -140px; right: -80px; }
.hero::after  { width: 360px; height: 360px; background: radial-gradient(circle, rgba(15,157,110,.35), transparent 70%); bottom: -160px; left: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 1.16rem; color: var(--soft); margin-bottom: 1.75rem; max-width: 40ch; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--emerald-700);
  background: #fff; border: 1px solid var(--border-2); padding: .4rem .85rem; border-radius: 999px;
  margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(15,157,110,.2); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.75rem; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--ink); letter-spacing: -.02em; }
.stat .num span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { font-size: .82rem; color: var(--soft); }

/* ---------- Section header ---------- */
.section-header { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.section-header.left { margin-inline: 0; text-align: left; }
.section-label {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .6rem;
}
.section-header p { color: var(--soft); margin-top: .6rem; font-size: 1.05rem; }

/* =========================================================================
   Casino comparison row — the signature component
   ========================================================================= */
.casino-list { display: flex; flex-direction: column; gap: 1rem; }
.casino-row {
  position: relative; display: grid;
  grid-template-columns: 54px 200px 1fr 200px; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.4rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.casino-row:hover { box-shadow: var(--shadow); border-color: var(--border-2); transform: translateY(-2px); }
.casino-row.is-top { border-color: var(--emerald); box-shadow: 0 12px 34px -16px rgba(15,157,110,.45); }
.casino-row.is-top::before {
  content: "★ TOP RATED"; position: absolute; top: -11px; left: 1.4rem;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .68rem; letter-spacing: .05em; padding: .25rem .7rem; border-radius: 999px;
}
.casino-rank { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--muted); text-align: center; }
.casino-row.is-top .casino-rank { color: var(--emerald); }

.casino-brand { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem; }
.casino-logo {
  width: 100%; height: 66px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; line-height: 1.05;
  background: var(--grad-deep); padding: .5rem; text-align: center;
}
.casino-logo.l-alt { background: linear-gradient(135deg,#1a2b3c,#24435f); }
.casino-score { display: inline-flex; align-items: baseline; gap: .3rem; }
.casino-score b { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.casino-score small { color: var(--soft); font-size: .78rem; }

.casino-mid { min-width: 0; }
.casino-mid .c-name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: .15rem; }
.casino-mid .c-bonus { font-weight: 700; color: var(--emerald-700); font-size: 1.02rem; margin-bottom: .5rem; }
.casino-meta { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin-bottom: .6rem; }
.casino-facts { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; font-size: .82rem; color: var(--soft); }
.casino-facts b { color: var(--ink-2); font-weight: 600; }
.coin-row { display: flex; align-items: center; gap: .3rem; margin-top: .55rem; flex-wrap: wrap; }
.coin { width: 22px; height: 22px; border-radius: 50%; flex: none; }
.coin-more { font-size: .72rem; color: var(--muted); font-weight: 600; }

.casino-cta { display: flex; flex-direction: column; gap: .5rem; align-items: stretch; }
.casino-cta .review-link { font-family: var(--font-head); font-size: .82rem; text-align: center; color: var(--soft); font-weight: 500; }
.casino-cta .review-link:hover { color: var(--emerald-700); }
.trust-note { font-size: .68rem; color: var(--muted); text-align: center; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--ink); color: #cfe6dd; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; padding: 1rem 1.25rem; }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--teal-glow); }

/* ---------- Cards grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s, border-color .2s;
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-2); }
.info-card .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--emerald-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.info-card h3 a { color: var(--ink); }
.info-card h3 a:hover { color: var(--emerald-700); }
.info-card p { color: var(--soft); font-size: .96rem; }
.card-link { display: inline-block; margin-top: .8rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }

/* ---------- Coin/crypto pills grid ---------- */
.coin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .85rem; }
.coin-pill {
  display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .85rem 1rem; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s;
}
.coin-pill:hover { border-color: var(--emerald); transform: translateY(-2px); }
.coin-pill img { width: 32px; height: 32px; }
.coin-pill .c-sym { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.coin-pill .c-full { font-size: .78rem; color: var(--soft); }

/* ---------- Rating weighting chart ---------- */
.weight-chart { display: flex; flex-direction: column; gap: 1rem; }
.weight-row { display: grid; grid-template-columns: 190px 1fr 46px; gap: 1rem; align-items: center; }
.weight-row .w-label { font-weight: 600; color: var(--ink-2); font-size: .95rem; }
.weight-track { height: 12px; border-radius: 999px; background: var(--mint); overflow: hidden; }
.weight-fill { height: 100%; border-radius: 999px; background: var(--grad); }
.weight-row .w-pct { font-family: var(--font-head); font-weight: 700; color: var(--emerald-700); text-align: right; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
table.data th, table.data td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); }
table.data thead th { background: var(--ink); color: #eafaf4; font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .02em; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: var(--mint-2); }
table.data .rate { font-family: var(--font-head); font-weight: 700; color: var(--emerald-700); white-space: nowrap; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--bg-alt); border-bottom: 1px solid var(--border); font-size: .84rem; }
.breadcrumbs .container { padding-block: .7rem; color: var(--muted); }
.breadcrumbs a { color: var(--soft); }
.breadcrumbs a:hover { color: var(--emerald-700); }
.breadcrumbs span { margin: 0 .45rem; color: var(--border-2); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-soft); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero p { color: var(--soft); font-size: 1.08rem; max-width: 60ch; }

/* ---------- Review layout ---------- */
.updated-line { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; font-size: .85rem; color: var(--soft); margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.updated-line .sep { color: var(--border-2); }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.article-body > h2 { margin: 2.5rem 0 1rem; padding-top: .5rem; }
.article-body > h3 { margin: 1.75rem 0 .75rem; }
.article-body p { margin-bottom: 1.1rem; color: var(--text); }
.article-body ul, .article-body ol { margin-bottom: 1.2rem; color: var(--text); }
.article-body li { margin-bottom: .4rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; border: 1px solid var(--border); }
.article-body h2:first-child { margin-top: 0; }

/* review score hero card */
.review-hero { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.review-hero .rh-logo { width: 130px; min-height: 84px; }
.rh-meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }
.score-big { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--emerald-700); }

/* callouts */
.callout { border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 1.5rem 0; border: 1px solid var(--border); background: #fff; }
.callout h3, .callout h4 { margin-bottom: .5rem; }
.callout p:last-child { margin-bottom: 0; }
.callout-emerald { background: var(--grad-soft); border-color: #bfe9da; }
.callout-verdict { background: var(--ink); border-color: var(--ink); }
.callout-verdict h3, .callout-verdict h4 { color: #fff; }
.callout-verdict p { color: #cfe6dd; }
.callout-good { background: #edfaf3; border-color: #bfe9da; }
.callout-good h4 { color: var(--emerald-700); }
.callout-bad { background: #fdf0f0; border-color: #f6d4d4; }
.callout-bad h4 { color: var(--danger); }
.callout-tip { background: #fff8ea; border-color: #f5e2b8; }
.callout-tip h4 { color: #b3730b; }

/* pros & cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pc-box { border-radius: var(--radius); padding: 1.4rem 1.5rem; border: 1px solid var(--border); }
.pc-box h4 { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.pc-box ul { list-style: none; padding: 0; margin: 0; }
.pc-box li { position: relative; padding-left: 1.75rem; margin-bottom: .55rem; font-size: .95rem; }
.pros-box { background: #edfaf3; border-color: #bfe9da; }
.pros-box li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.cons-box { background: #fdf0f0; border-color: #f6d4d4; }
.cons-box li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.1rem 1.35rem; font-family: var(--font-head); font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--emerald); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.35rem 1.2rem; color: var(--soft); }

/* sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 92px; }
.sb-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.sb-box h4 { font-size: 1rem; margin-bottom: .85rem; }
.sb-box ul { list-style: none; padding: 0; margin: 0; }
.sb-box li { padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--soft); }
.sb-box li:last-child { border-bottom: 0; }
.sb-box li b { color: var(--ink-2); }
.sb-cta { background: var(--grad-soft); border-color: #bfe9da; text-align: center; }
.sb-cta .score-big { font-size: 2rem; display: block; margin: .25rem 0; }

/* toc */
.toc { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 2rem; }
.toc strong { font-family: var(--font-head); display: block; margin-bottom: .5rem; color: var(--ink); }
.toc ul { list-style: none; padding: 0; margin: 0; columns: 2; }
.toc li { padding: .2rem 0; font-size: .9rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-thumb { aspect-ratio: 16/9; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.blog-thumb svg { width: 72px; height: 72px; color: var(--emerald); opacity: .8; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 1.75rem; }
.blog-card .bc-body { padding: 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat { font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.blog-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--emerald-700); }
.blog-card p { color: var(--soft); font-size: .92rem; flex: 1; }
.blog-card .bc-meta { font-size: .8rem; color: var(--muted); margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--border); }

/* ---------- Author box ---------- */
.author-box { display: flex; gap: 1.25rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-top: 2.5rem; }
.author-box .av { width: 64px; height: 64px; border-radius: 50%; flex: none; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.author-box h4 { margin-bottom: .1rem; }
.author-box .a-title { font-size: .85rem; color: var(--teal); font-weight: 600; margin-bottom: .5rem; }
.author-box p { font-size: .9rem; color: var(--soft); margin: 0; }
.author-box .a-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .7rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); border-radius: var(--radius-lg); padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(18,179,166,.35), transparent 55%), radial-gradient(circle at 90% 100%, rgba(15,157,110,.3), transparent 50%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: #cfe6dd; max-width: 46ch; margin: 0 auto 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9c4bb; padding: 3.5rem 0 1.75rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand .logo { color: #fff; margin-bottom: .9rem; }
.footer-brand .logo .accent { color: var(--teal-glow); }
.footer-brand p { font-size: .88rem; color: #90ada4; max-width: 36ch; }
.footer-col h5 { font-family: var(--font-head); color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #a9c4bb; font-size: .88rem; }
.footer-col a:hover { color: var(--teal-glow); }
.footer-legal { font-size: .78rem; color: #7f9b92; padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-legal strong { color: #b9d4cb; }
.footer-legal a { color: var(--teal-glow); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; font-size: .82rem; color: #7f9b92; }
.footer-bottom .f-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: #a9c4bb; }
.footer-bottom a:hover { color: var(--teal-glow); }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; max-width: 560px; margin-inline: auto; background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.25rem 1.4rem; }
.cookie-banner strong { font-family: var(--font-head); color: var(--ink); }
.cookie-banner p { font-size: .85rem; color: var(--soft); margin: .4rem 0 1rem; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- Prose helpers ---------- */
.lead-p { font-size: 1.12rem; color: var(--soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.divider { height: 1px; background: var(--border); margin: 2.5rem 0; border: 0; }
.note-small { font-size: .74rem; color: var(--muted); }

/* ---------- Reveal animation (JS-gated so content shows without JS) ---------- */
.reveal { transition: opacity .5s ease, transform .5s ease; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .nav-shell { grid-template-columns: auto 1fr; }
  .nav-menu, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .casino-row { grid-template-columns: 40px 150px 1fr; grid-template-areas: "rank brand mid" "cta cta cta"; row-gap: 1rem; }
  .casino-row .casino-rank { grid-area: rank; }
  .casino-row .casino-brand { grid-area: brand; }
  .casino-row .casino-mid { grid-area: mid; }
  .casino-row .casino-cta { grid-area: cta; flex-direction: row; }
  .casino-cta .btn { flex: 1; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4, .blog-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .toc ul { columns: 1; }
  .weight-row { grid-template-columns: 130px 1fr 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .casino-row { grid-template-columns: 34px 1fr; grid-template-areas: "rank brand" "mid mid" "cta cta"; }
  .casino-brand { flex-direction: row; align-items: center; justify-content: flex-start; }
  .casino-logo { width: 90px; height: 54px; }
}
