:root {
  /* Core dark palette (matches reference site tokens) */
  --bg: #090f24;
  --bg-deep: #070b1a;
  --card: #101838;
  --card-alt: #0f1736;
  --muted: #0e1530;
  --secondary: #141d45;
  --border: #2f3f97;
  --border-soft: rgba(76, 255, 243, 0.16);
  --border-soft-strong: rgba(76, 255, 243, 0.28);
  --hairline: rgba(234, 242, 255, 0.14);

  --text: #eaf2ff;
  --text-muted: rgba(234, 242, 255, 0.72);
  --text-faint: rgba(234, 242, 255, 0.55);

  --primary: #4cfff3;
  --primary-foreground: #042022;
  --accent: #c95eff;
  --gold: #ffd45c;
  --teal: #55e3c8;
  --green: #7cff75;
  --pink: #d946ef;
  --red: #ff6568;
  --star: #facc15;

  --cta-gradient: linear-gradient(108deg, #3a2bd6 0%, #7a5cff 34%, #ff59c7 68%, #ff8a4f 100%);
  --mark-gradient: linear-gradient(135deg, var(--gold), var(--teal));

  /* Legacy aliases so inline styles in templates resolve to dark equivalents */
  --grey-100: var(--secondary);
  --grey-200: rgba(234, 242, 255, 0.14);
  --grey-500: rgba(234, 242, 255, 0.62);
  --green-600: var(--primary);
  --white: var(--card);
  --navy-950: var(--bg-deep);

  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-card: 0 14px 34px -22px rgba(76, 255, 243, 0.28), 0 20px 36px -28px rgba(0, 0, 0, 0.85);
  --shadow-card-hover: 0 20px 46px -18px rgba(76, 255, 243, 0.4), 0 26px 46px -24px rgba(0, 0, 0, 0.9);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 14% 0%, rgba(76, 255, 243, 0.12), transparent 46%),
    radial-gradient(circle at 86% 12%, rgba(201, 94, 255, 0.12), transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, #101838 45%, var(--bg) 100%);
  background-attachment: fixed;
  line-height: 1.6;
}

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

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

::selection {
  background: rgba(76, 255, 243, 0.28);
  color: #fff;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

/* ---------- Top compliance bar ---------- */
.top-bar {
  background: var(--bg-deep);
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}

.top-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  background: var(--mark-gradient);
  color: var(--primary-foreground);
  border-radius: 999px;
  width: 26px;
  height: 26px;
  flex: none;
}

.top-bar a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(180deg, rgba(9, 15, 36, 0.97), rgba(9, 15, 36, 0.9));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--mark-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 900;
  box-shadow: 0 0 20px -6px rgba(255, 212, 92, 0.45);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 14.5px;
}

.main-nav a {
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(76, 255, 243, 0.5);
}

.btn-green {
  background-image: var(--cta-gradient);
  color: #fff;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35), 0 10px 22px -14px rgba(255, 89, 199, 0.75);
}

.btn-green:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35), 0 14px 28px -12px rgba(255, 89, 199, 0.85);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1.5px solid var(--hairline);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-deep);
  background-image:
    radial-gradient(circle at 8% 20%, rgba(76, 255, 243, 0.16), transparent 45%),
    radial-gradient(circle at 92% 10%, rgba(201, 94, 255, 0.16), transparent 45%),
    linear-gradient(180deg, #0b1130 0%, var(--bg-deep) 100%);
  color: #fff;
  padding: 64px 0 56px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 255, 243, 0.14);
  color: var(--primary);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(76, 255, 243, 0.45);
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.16);
  flex: none;
}

.trust-item:nth-child(2) .dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(76, 255, 243, 0.16);
}

.trust-item:nth-child(3) .dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 255, 117, 0.16);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--text);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.hero-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 13.5px;
  color: var(--text-muted);
}

.hero-card li:last-child {
  border-bottom: none;
}

/* ---------- Sections ---------- */
.section {
  padding: 56px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-alt {
  background: rgba(16, 24, 56, 0.45);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

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

.section-head .kicker {
  color: var(--primary);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-head p {
  color: var(--text-muted);
}

/* ---------- Brand comparison / review cards ---------- */
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-card {
  position: relative;
  background: linear-gradient(165deg, var(--card-alt) 0%, #101b44 55%, #0b1330 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1.4fr 1fr auto auto;
  gap: 24px;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--border-soft);
}

.brand-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--border-soft-strong);
}

.brand-card.featured {
  border-color: rgba(201, 94, 255, 0.45);
}

.brand-card.featured::before {
  content: "Editor's Choice";
  position: absolute;
  top: -13px;
  left: 24px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(201, 94, 255, 0.7);
}

.brand-rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--gold);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--border-soft);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-box {
  width: 168px;
  height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  flex: none;
}

.brand-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  margin-bottom: 4px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.brand-bonus {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.brand-bonus .min-dep {
  display: block;
  font-weight: 400;
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 4px;
}

.score-block {
  text-align: center;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.star-rating .star {
  font-size: 14px;
  line-height: 1;
  color: rgba(234, 242, 255, 0.18);
}

.star-rating .star.filled {
  color: var(--star);
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.45);
}

.score-badge {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: inline-block;
  text-shadow: 0 0 18px rgba(76, 255, 243, 0.35);
}

.score-votes {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
}

.brand-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 160px;
}

.micro-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- Methodology / mission grid ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  background: linear-gradient(165deg, var(--card) 0%, var(--card-alt) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
  color: #fff;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- Responsible gambling callout ---------- */
.rg-callout {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--secondary) 100%);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.rg-callout h2 {
  color: #fff;
}

.rg-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.rg-logo-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.helpline {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

.helpline strong {
  color: var(--gold);
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .chev {
  transition: transform 0.2s ease;
  color: var(--primary);
  font-weight: 900;
}

.faq-item.open .faq-question .chev {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-item.open .faq-answer {
  padding: 0 20px 18px;
}

/* ---------- Review detail page ---------- */
.review-hero {
  background: linear-gradient(165deg, var(--card-alt) 0%, #101b44 55%, #0b1330 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 32px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-cons > div {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
}

.pros-cons h4 {
  font-size: 15px;
  color: #fff;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons li {
  padding: 6px 0;
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
}

.pros li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.cons li::before {
  content: "\2013";
  color: var(--red);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 20px;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  color: var(--text);
  font-weight: 600;
}

.licence-box {
  background: rgba(76, 255, 243, 0.06);
  border: 1px dashed var(--border-soft-strong);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 20px 0;
}

.licence-box a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Contact / forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: #fff;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-faint);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.07);
}

.success-banner {
  background: rgba(124, 255, 117, 0.1);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ---------- Legal content pages ---------- */
.legal-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.legal-content h2 {
  font-size: 19px;
  margin-top: 30px;
  color: #fff;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-updated {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 30px;
}

.page-banner {
  background: var(--bg-deep);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(76, 255, 243, 0.14), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(201, 94, 255, 0.14), transparent 45%);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 8px;
}

.page-banner p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--primary);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--secondary) 100%);
  color: var(--text-muted);
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.footer-18 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.footer-18 .badge-18 {
  width: 46px;
  height: 46px;
  font-size: 16px;
}

.footer-18 p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 13.5px;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-licences {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.7;
}

.footer-licences a {
  color: var(--primary);
  text-decoration: underline;
}

.footer-support {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
}

.support-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.support-chip img,
.support-chip svg {
  height: 26px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 20px 0 30px;
  font-size: 12px;
  color: var(--text-faint);
}

.footer-bottom .disclaimer {
  max-width: 900px;
  margin-bottom: 14px;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  align-items: center;
}

.footer-links-row a {
  color: var(--text-muted);
  font-size: 12.5px;
}

.footer-links-row a:hover {
  color: var(--primary);
}

.sep {
  margin: 0 10px;
  color: var(--text-faint);
}

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--border-soft);
  padding: 22px 26px;
  z-index: 999;
  display: none;
  border: 1px solid var(--border-soft);
}

.cookie-banner.visible {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 380px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.cookie-text strong {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

/* ---------- Misc / 404 ---------- */
.not-found {
  text-align: center;
  padding: 90px 0;
}

.not-found .code {
  font-size: 78px;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 40px rgba(76, 255, 243, 0.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rg-callout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-identity {
    flex-direction: column;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .review-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 20px 20px;
  }
  .main-nav.nav-open {
    display: flex;
  }
  .site-header .wrap {
    position: relative;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 30px;
  }
}
