:root {
  /* Core palette: deep navy base, gold accent, neutrals */
  --bg: #0c1322;
  --bg-elevated: #121b2e;
  --surface: #16213a;
  --surface-2: #1d2b47;
  --border: #25344f;
  --text: #eef2f8;
  --text-muted: #9fb0c9;
  --gold: #e8b84b;
  --gold-dark: #c69a32;
  --green: #2fb574;
  --green-dark: #239160;
  --radius: 14px;
  --maxw: 1180px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", var(--font-sans);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #1a1304;
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.28);
}
.btn-primary:hover { background: #f1c65f; box-shadow: 0 12px 30px rgba(232, 184, 75, 0.4); }

.btn-success {
  background: var(--green);
  color: #04130c;
  box-shadow: 0 8px 24px rgba(47, 181, 116, 0.28);
}
.btn-success:hover { background: #36c980; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 19, 34, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  color: #1a1304;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a,
.nav-dropdown-toggle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font-sans);
  cursor: pointer;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-dropdown.open .nav-caret,
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 4px;
  width: 390px;
  list-style: none;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(18, 27, 46, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2);
  color: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,19,34,0.55), rgba(12,19,34,0.95)), url("../images/hero-bg.png") center/cover no-repeat;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero side card - top pick */
.hero-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  position: relative;
}
.hero-card .ribbon {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--gold);
  color: #1a1304;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 7px;
}
.hero-card .hc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 16px;
}
.hero-card .hc-logo {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  object-fit: cover;
}
.hero-card .hc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.hero-card .hc-bonus {
  background: var(--bg-elevated);
  border: 1px dashed var(--gold-dark);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.hero-card .hc-bonus strong { display: block; font-size: 1.45rem; color: var(--gold); font-family: var(--font-display); }
.hero-card .hc-bonus span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Comparison table / cards ---------- */
.casino-list { display: flex; flex-direction: column; gap: 16px; }

.casino-card {
  display: grid;
  grid-template-columns: 44px 1.4fr 1.3fr 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.casino-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.casino-card.is-top { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(232,184,75,0.3); }

.rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-muted);
  text-align: center;
}
.casino-card.is-top .rank { color: var(--gold); }

.cc-brand { display: flex; align-items: center; gap: 14px; }
.cc-logo {
  width: 58px; height: 58px;
  border-radius: 11px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
}
.cc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.cc-rating { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }
.cc-score {
  background: var(--green);
  color: #04130c;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 1px 7px;
  border-radius: 6px;
}

.cc-bonus strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }
.cc-bonus span { font-size: 0.8rem; color: var(--text-muted); }

.cc-features { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.cc-features li { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.cc-features svg { color: var(--green); flex-shrink: 0; }

.cc-action { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 150px; }
.cc-action .terms { font-size: 0.68rem; color: var(--text-muted); text-align: center; }

/* ---------- Casino widget embed ---------- */
.cw-widget {
  width: 100%;
}

.cw-casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cw-casino-card {
  display: grid;
  grid-template-columns: 44px 68px minmax(210px, 0.8fr) minmax(320px, 1.4fr) minmax(150px, auto);
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cw-casino-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.cw-casino-card:first-child {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(232,184,75,0.3);
}

.cw-rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-muted);
  text-align: center;
}

.cw-casino-card:first-child .cw-rank {
  color: var(--gold);
}

.cw-card-image {
  width: 68px;
  height: 68px;
  border-radius: 13px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.cw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-card-content {
  transform: translateX(22px);
}

.cw-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.cw-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-top: 3px;
}

.cw-half-star {
  background: linear-gradient(90deg, var(--gold) 50%, var(--text-muted) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cw-bonus-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.cw-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 150px;
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.cw-btn:hover {
  transform: translateY(-2px);
}

.cw-btn-primary {
  background: var(--green);
  color: #04130c;
  box-shadow: 0 8px 24px rgba(47, 181, 116, 0.28);
}

.cw-btn-primary:hover {
  background: #36c980;
}

.cw-btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.cw-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Features / Why ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(232,184,75,0.12);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; margin: 8px 0 28px; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 26px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: #1a1304;
  font-family: var(--font-display);
  font-weight: 800;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- Payments ---------- */
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.pay-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .faq-q-title { font: inherit; color: inherit; margin: 0; }
.faq-q .icon { transition: transform 0.25s ease; color: var(--gold); flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}
.faq-a p { padding: 0 22px 20px; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 26px; }

/* ---------- Responsible gambling banner ---------- */
.rg-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}
.rg-banner .age {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}
.rg-banner p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: var(--text-muted); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { color: var(--text-muted); font-size: 0.92rem; margin-top: 14px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-badges span {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 11px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Mobile menu ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links.open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 14px 24px 24px;
  }
  .nav-links li { width: 100%; }
  .nav-links a,
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 540px;
    padding: 8px 0 12px 14px;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 10px 0;
    border-radius: 0;
    white-space: normal;
  }
  .nav-dropdown-menu a:hover {
    background: transparent;
  }
  .nav-toggle { display: flex; }
  .nav-actions .btn-ghost { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .features-grid, .steps { grid-template-columns: 1fr; }

  .casino-card {
    grid-template-columns: 36px 1fr;
    grid-template-areas:
      "rank brand"
      "bonus bonus"
      "feat feat"
      "action action";
    row-gap: 16px;
  }
  .casino-card .rank { grid-area: rank; }
  .casino-card .cc-brand { grid-area: brand; }
  .casino-card .cc-bonus { grid-area: bonus; }
  .casino-card .cc-features { grid-area: feat; }
  .casino-card .cc-action { grid-area: action; min-width: 0; }

  .cw-casino-card {
    grid-template-columns: 36px 68px 1fr;
    grid-template-areas:
      "rank image content"
      "offers offers offers"
      "actions actions actions";
    row-gap: 16px;
  }
  .cw-casino-card .cw-rank { grid-area: rank; }
  .cw-casino-card .cw-card-image { grid-area: image; }
  .cw-casino-card .cw-card-content { grid-area: content; }
  .cw-casino-card .cw-offers { grid-area: offers; }
  .cw-casino-card .cw-actions { grid-area: actions; min-width: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .brand { font-size: 1rem; }
  .nav-actions .btn-primary { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .cw-casino-card {
    grid-template-columns: 32px 60px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .cw-card-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .cw-card-content {
    transform: translateX(0);
  }
  .cw-btn {
    padding: 12px 16px;
  }
}

/* ---------- Review page ---------- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 22px 0 0;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); }

.review-hero { padding: 34px 0 12px; }
.review-hero-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-dark);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.review-hero-logo {
  width: 92px; height: 92px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  object-fit: cover;
}
.review-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 8px; }
.review-hero .rh-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--text-muted); font-size: 0.86rem; margin-top: 6px; }
.review-hero .rh-meta strong { color: var(--text); font-weight: 600; }
.rh-score {
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 24px;
}
.rh-score .num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.rh-score .max { font-size: 0.85rem; color: var(--text-muted); }
.rh-score .stars { display: block; margin-top: 6px; }

.review-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.review-cta-row .btn-hero-play {
  min-width: 176px;
  padding: 17px 34px;
  border-radius: 12px;
  font-size: 1.06rem;
}

/* Brand review product layout */
.brand-review-card {
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: stretch;
}

.brand-review-logo-panel {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 164px;
  background: rgba(12, 19, 34, 0.45);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.brand-review-logo {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: contain;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.brand-review-intro {
  min-width: 0;
}

.brand-review-intro .eyebrow {
  margin-bottom: 10px;
}

.brand-review-intro p {
  color: var(--text-muted);
  max-width: 680px;
  margin-top: 10px;
}

.brand-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.brand-fact {
  background: rgba(12, 19, 34, 0.44);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  min-width: 0;
}

.brand-fact span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.brand-fact strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.25;
}

.brand-offer-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  background: rgba(12, 19, 34, 0.52);
  border: 1px solid rgba(232, 184, 75, 0.34);
  border-radius: 16px;
  padding: 20px;
}

.brand-offer-panel .label {
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.brand-offer-panel strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.25;
}

.brand-offer-panel p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 8px;
}

.brand-status-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.brand-review-body {
  max-width: 820px;
}

.brand-review-body.reveal {
  opacity: 1;
  transform: none;
}

.brand-review-body .content-table-wrap {
  margin: 24px 0 30px;
}

.brand-review-body .faq {
  max-width: none;
  margin: 18px 0 0;
}

/* Article layout */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
  padding: 44px 0 80px;
}
.review-layout > *,
.content-layout > * {
  min-width: 0;
}
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.7rem;
  margin: 40px 0 14px;
  padding-top: 10px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.22rem; margin: 26px 0 10px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.prose ul, .prose ol { color: var(--text-muted); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a.inline { color: var(--gold); text-decoration: underline; }

/* Subratings */
.subratings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0 8px; }
.subrating {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.subrating .lbl { font-size: 0.82rem; color: var(--text-muted); display: flex; justify-content: space-between; margin-bottom: 8px; }
.subrating .lbl b { color: var(--gold); }
.bar { height: 7px; background: var(--bg-elevated); border-radius: 4px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--gold); border-radius: 4px; }

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 18px;
  font-size: 0.92rem;
}
.info-table th, .info-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.info-table th { width: 42%; color: var(--text); font-weight: 600; background: var(--bg-elevated); }
.info-table td { color: var(--text-muted); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* Pros & cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 18px 0; }
.pc-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.pc-box h3 { margin: 0 0 14px; font-size: 1.1rem; }
.pc-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.pc-box li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); }
.pc-box li svg { flex-shrink: 0; margin-top: 2px; }
.pc-pros li svg { color: var(--green); }
.pc-cons li svg { color: #e0654f; }

/* Verdict */
.verdict {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-dark);
  border-radius: 18px;
  padding: 30px;
  margin: 26px 0 8px;
}
.verdict h2 { margin-top: 0; }

/* Sidebar */
.review-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.aside-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.aside-card .ac-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-elevated); border: 1px solid var(--border); object-fit: cover;
}
.aside-card .ac-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.aside-card .ac-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.aside-bonus {
  background: var(--bg-elevated);
  border: 1px dashed var(--gold-dark);
  border-radius: 10px;
  padding: 14px; text-align: center; margin-bottom: 14px;
}
.aside-bonus strong { display: block; font-size: 1.25rem; color: var(--gold); font-family: var(--font-display); }
.aside-bonus span { font-size: 0.78rem; color: var(--text-muted); }
.aside-card .terms { font-size: 0.68rem; color: var(--text-muted); text-align: center; display: block; margin-top: 10px; }
.brand-facts-card .ac-head { margin: 0 0 16px; }
.brand-facts-card .aside-bonus { margin: 0 0 14px; }
.brand-facts-card .aside-facts { margin-top: 18px; }
.aside-facts { list-style: none; padding: 0; margin: 0; }
.aside-facts li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 9px 0; border-bottom: 1px solid var(--border); }
.aside-facts li:last-child { border-bottom: none; }
.aside-facts .k { color: var(--text-muted); }
.aside-facts .v { color: var(--text); font-weight: 600; text-align: right; }

.toc { list-style: none; padding: 0; margin: 0; }
.toc li { padding: 7px 0; border-bottom: 1px solid var(--border); }
.toc li:last-child { border-bottom: none; }
.toc a { font-size: 0.88rem; color: var(--text-muted); }
.toc a:hover { color: var(--gold); }
.aside-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }

/* ---------- Editorial guide page ---------- */
.guide-mark,
.guide-mini-mark {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #1a1304;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 18px 36px rgba(232, 184, 75, 0.22);
}

.guide-mark {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  font-size: 1.8rem;
}

.guide-mini-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}

.guide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(12, 19, 34, 0.38);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.guide-pill strong {
  color: var(--text);
  font-weight: 600;
}

.guide-note {
  background: linear-gradient(180deg, rgba(232,184,75,0.08), rgba(232,184,75,0.04));
  border: 1px solid rgba(232,184,75,0.32);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 22px 0;
}

.guide-note p:last-child {
  margin-bottom: 0;
}

.guide-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 12px;
}

.guide-source-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.guide-source-card h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.guide-source-card p {
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.guide-source-card a {
  color: var(--gold);
  word-break: break-word;
  text-decoration: underline;
}

.guide-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-aside-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.guide-aside-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* ---------- Generated content pages ---------- */
.content-hero-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
}

.content-hero-card p {
  color: var(--text-muted);
  max-width: 720px;
  margin-top: 10px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
  padding: 44px 0 80px;
}

.content-body {
  max-width: 820px;
}

.content-body.reveal {
  opacity: 1;
  transform: none;
}

/* ---------- 404 page ---------- */
.not-found-hero {
  padding-bottom: 28px;
}

.not-found-card {
  min-height: 330px;
}

.not-found-code {
  width: 132px;
  height: 132px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1304;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 20px 46px rgba(232, 184, 75, 0.24);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.not-found-links {
  padding-top: 40px;
}

.not-found-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.not-found-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.not-found-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--surface-2);
}

.not-found-link span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-link strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.25;
}

.content-body .source-url {
  display: inline-block;
  max-width: 100%;
  color: var(--gold);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
  text-decoration: underline;
}

.content-media {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.content-media img {
  display: block;
  width: 100%;
  height: auto;
}

.content-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border-radius: var(--radius);
}

.content-table {
  min-width: 680px;
  margin: 0;
}

.content-table th {
  vertical-align: top;
}

.content-table td {
  vertical-align: top;
}

.content-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.content-meta-list li:last-child {
  border-bottom: none;
}

.content-meta-list .k {
  color: var(--text-muted);
}

.content-meta-list .v {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.home-widget-section {
  margin: 34px 0 54px;
}

.content-top-widget {
  max-width: 100%;
}

.content-top-widget .cw-casino-card {
  grid-template-columns: 38px 64px minmax(150px, 0.85fr) minmax(230px, 1.25fr) minmax(132px, auto);
  gap: 16px;
  padding: 18px;
}

.content-top-widget .cw-card-image {
  width: 64px;
  height: 64px;
}

.content-top-widget .cw-card-content {
  transform: translateX(14px);
}

.content-top-widget .cw-bonus-text {
  font-size: 1rem;
}

.content-top-widget .cw-actions {
  min-width: 132px;
}

.content-top-widget .cw-btn {
  padding: 12px 18px;
}

@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; }
  .review-hero-card { grid-template-columns: auto 1fr; }
  .rh-score { grid-column: 1 / -1; }
  .guide-source-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .not-found-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .subratings, .proscons { grid-template-columns: 1fr; }
  .review-hero-card { grid-template-columns: 1fr; text-align: center; }
  .review-hero-logo { margin: 0 auto; }
  .review-hero .rh-meta { justify-content: center; }
  .guide-pills { justify-content: center; }
  .guide-mark,
  .guide-mini-mark { margin: 0 auto; }
  .content-hero-card { grid-template-columns: 1fr; text-align: center; }
  .content-table { min-width: 560px; }
  .not-found-code { margin: 0 auto; }
  .not-found-actions { justify-content: center; }
}

@media (max-width: 1020px) {
  .brand-review-card { grid-template-columns: 112px minmax(0, 1fr); }
  .brand-offer-panel { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .brand-review-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-review-logo-panel {
    min-height: auto;
    max-width: 150px;
    margin: 0 auto;
  }
  .brand-fact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-review-intro p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 460px) {
  .brand-fact-strip { grid-template-columns: 1fr; }
}
