:root {
  --bg: #f4f6fa;
  --bg-white: #ffffff;
  --bg-muted: #e8ecf3;
  --text: #1a2332;
  --text-soft: #4a5568;
  --text-muted: #718096;
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --accent: #e85d4c;
  --accent-hover: #cf4f40;
  --accent-soft: rgba(232, 93, 76, 0.1);
  --success: #2d8a6e;
  --success-soft: rgba(45, 138, 110, 0.12);
  --gold: #c9a227;
  --border: #d8dee8;
  --shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy); }

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

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { color: #fcd34d; }
.badge-18 {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
}

/* Header */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}
.logo:hover { color: var(--navy); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
}
.main-nav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 93, 76, 0.35);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-white);
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-visit {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn-visit:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-visit:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Hero */
.hero {
  background: var(--bg-white);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--success);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  margin-bottom: 16px;
  max-width: 18ch;
}
.hero-lead {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 48ch;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.hero-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-white); }
.section-header { margin-bottom: 36px; }
.section-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-soft);
  max-width: 56ch;
  font-size: 17px;
}

/* Comparison table */
.compare-wrap {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table th:last-child { text-align: center; }
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafbfc; }
.compare-table tr.featured td { background: var(--accent-soft); }
.rank-cell {
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  width: 48px;
  text-align: center;
}
.rank-cell.gold { color: var(--gold); }
.casino-cell { display: flex; align-items: center; gap: 14px; }
.casino-logo {
  width: 100px;
  height: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.casino-logo img { max-height: 36px; max-width: 80px; object-fit: contain; }
.casino-name { font-weight: 700; font-size: 17px; color: var(--navy); }
.casino-licence { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.bonus-cell { font-size: 15px; color: var(--text-soft); max-width: 220px; }
.rating-cell { white-space: nowrap; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--navy); margin-left: 4px; }
.tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--success-soft);
  color: var(--success);
  margin-top: 4px;
}
.compare-scroll { overflow-x: auto; }
.compare-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.review-rank {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 12px;
}
.review-card .casino-logo {
  width: 120px;
  height: 56px;
  margin-bottom: 14px;
}
.review-card h3 {
  font-family: var(--font);
  font-size: 20px;
  margin-bottom: 8px;
}
.review-card .stars { margin-bottom: 10px; }
.review-card p {
  font-size: 15px;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 16px;
}
.review-card .btn-visit { width: 100%; text-align: center; }

/* How we compare */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.how-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.how-image img { width: 100%; height: 280px; object-fit: cover; }
.how-points { list-style: none; margin-top: 20px; }
.how-points li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 28px;
  position: relative;
  color: var(--text-soft);
}
.how-points li:last-child { border-bottom: none; }
.how-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.how-points strong { display: block; color: var(--navy); margin-bottom: 4px; }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: #fafbfc; }
.faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* Safer gambling */
.safer-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.safer-block h2 { color: #fff; margin-bottom: 12px; }
.safer-block p { color: rgba(255, 255, 255, 0.85); margin-bottom: 12px; }
.safer-block a { color: #fcd34d; font-weight: 600; }
.safer-block a:hover { color: #fff; }
.safer-callout {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}
.safer-callout .phone {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0;
  letter-spacing: 0.02em;
}
.safer-callout .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  margin-top: 12px;
}
.safer-callout .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 16px; max-width: 32ch; }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact a { color: #fcd34d; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-regs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-regs .badge-18 { margin: 0; }
.footer-regs a { opacity: 0.85; }
.footer-regs a:hover { opacity: 1; }
.footer-regs img { height: 24px; width: auto; filter: brightness(0) invert(1); }
.footer-regs img[src*="gamstop"] { filter: none; }
.footer-bottom {
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.footer-disc {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Legal pages */
.legal-hero {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.legal-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.legal-hero p { color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-body h2 {
  font-family: var(--font);
  font-size: 22px;
  margin: 36px 0 12px;
  color: var(--navy);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
}
.legal-body ul, .legal-body ol { margin: 0 0 16px 24px; }
.legal-body strong { color: var(--text); }
.legal-callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.legal-callout p { margin: 0; color: var(--text); }

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 42, 69, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-overlay.hidden { display: none; }
.age-modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-modal h2 { margin-bottom: 12px; font-size: 26px; }
.age-modal p { color: var(--text-soft); margin-bottom: 24px; font-size: 15px; }
.age-modal .btn { width: 100%; margin-bottom: 10px; }
.age-decline {
  background: none;
  color: var(--text-muted);
  font-size: 14px;
  padding: 8px;
}
.age-decline:hover { color: var(--accent); }
.age-fine { font-size: 12px; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }
.age-fine a { color: var(--navy); text-decoration: underline; }

/* Cookie banner */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  color: var(--text-soft);
}
.cookie-text a { text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-grid, .how-grid, .safer-block { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
