:root {
  --forest: #0a2e23;
  --forest-light: #145c45;
  --forest-soft: rgba(20, 92, 69, 0.08);
  --gold: #c9a04d;
  --gold-light: #e8c87a;
  --gold-soft: rgba(201, 160, 77, 0.12);
  --cream: #f7f9f8;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --gray: #5a6560;
  --gray-light: #8a9590;
  --border: #d4dbd7;
  --border-light: #e8eeeb;
  --shadow: 0 1px 3px rgba(10, 46, 35, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 46, 35, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 46, 35, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --max: 1160px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-light); text-decoration: none; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--forest); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.top-bar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.badge-18 {
  background: var(--gold);
  color: var(--forest);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-right: 8px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--forest); }
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-display);
}
.logo span { color: var(--gold); font-weight: 700; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  position: relative;
}
.main-nav a:hover { color: var(--forest); }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--forest);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--forest-light);
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--forest);
  box-shadow: 0 6px 20px rgba(201, 160, 77, 0.35);
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-visit {
  background: var(--forest);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
}
.btn-visit:hover {
  background: var(--forest-light);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-visit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero {
  position: relative;
  background: var(--forest);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/hero-bg.jpg) center/cover no-repeat;
  opacity: 0.18;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,46,35,0.7) 0%, rgba(10,46,35,0.85) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 52ch;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9a04d"%3E%3Cpath d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 13px;
  color: var(--gray);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--forest-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; fill: var(--forest-light); }

.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-header p {
  color: var(--gray);
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
}

.compare-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th {
  background: var(--forest);
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table th:last-child { text-align: center; }
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background 0.15s; }
.compare-table tbody tr:hover td { background: var(--cream); }
.compare-table tr.featured td { background: var(--gold-soft); }
.compare-table tr.featured:hover td { background: rgba(201,160,77,0.18); }
.rank-cell {
  font-weight: 800;
  font-size: 18px;
  color: var(--gray-light);
  width: 52px;
  text-align: center;
}
.rank-cell.gold { color: var(--gold); }
.casino-cell { display: flex; align-items: center; gap: 16px; }
.casino-logo {
  width: 108px;
  height: 52px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.casino-logo img { max-height: 34px; max-width: 84px; object-fit: contain; }
.casino-name { font-weight: 700; font-size: 16px; color: var(--forest); }
.casino-licence { font-size: 12px; color: var(--gray-light); margin-top: 3px; }
.bonus-cell { font-size: 14px; color: var(--gray); max-width: 240px; line-height: 1.55; }
.rating-cell { white-space: nowrap; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--forest); margin-left: 6px; font-size: 15px; }
.tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--forest-soft);
  color: var(--forest-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-scroll { overflow-x: auto; }
.compare-note {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 18px;
  line-height: 1.6;
  max-width: 80ch;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,160,77,0.15);
}
.review-rank {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-bottom: 14px;
}
.review-card .casino-logo {
  width: 130px;
  height: 60px;
  margin-bottom: 16px;
}
.review-card h3 {
  font-family: var(--font);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--forest);
}
.review-card .stars { margin-bottom: 12px; display: block; }
.review-card p {
  font-size: 15px;
  color: var(--gray);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.65;
}
.review-card .btn-visit { width: 100%; text-align: center; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.how-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.how-image img { width: 100%; height: 340px; object-fit: cover; }
.how-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
}
.how-points { list-style: none; margin-top: 24px; }
.how-points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 32px;
  position: relative;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}
.how-points li:last-child { border-bottom: none; }
.how-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.how-points strong { display: block; color: var(--forest); margin-bottom: 4px; font-weight: 700; }

.faq-list { max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-q:hover { background: var(--cream); }
.faq-q::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230a2e23"%3E%3Cpath d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q::after {
  background: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230a2e23"%3E%3Cpath d="M19 13H5v-2h14v2z"/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

.safer-block {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.safer-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(201,160,77,0.08);
  border-radius: 50%;
}
.safer-block h2 { color: #fff; margin-bottom: 14px; font-size: 32px; }
.safer-block p { color: rgba(255,255,255,0.8); margin-bottom: 14px; font-size: 16px; line-height: 1.65; }
.safer-block a { color: var(--gold-light); font-weight: 600; }
.safer-block a:hover { color: #fff; }
.safer-callout {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.safer-callout p:first-child {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.safer-callout .phone {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}
.safer-callout .btn-outline {
  margin-top: 14px;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.safer-callout .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; max-width: 34ch; }
.footer-contact { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.65); }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-regs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-regs .badge-18 { margin: 0; }
.footer-regs a { opacity: 0.8; }
.footer-regs a:hover { opacity: 1; }
.footer-regs img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.footer-regs img[src*="gamstop"] { filter: none; }
.footer-bottom {
  padding-top: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.footer-disc {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.legal-hero {
  background: var(--forest);
  color: #fff;
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/hero-bg.jpg) center/cover no-repeat;
  opacity: 0.12;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,46,35,0.6) 0%, rgba(10,46,35,0.9) 100%);
}
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 40px); margin-bottom: 10px; }
.legal-hero p { color: rgba(255,255,255,0.7); font-size: 15px; }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 24px 90px;
}
.legal-body h2 {
  font-family: var(--font);
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--forest);
  font-weight: 700;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--gray);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.legal-body ul, .legal-body ol { margin: 0 0 18px 24px; }
.legal-body strong { color: var(--charcoal); }
.legal-callout {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.legal-callout p { margin: 0; color: var(--charcoal); }

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 35, 0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-overlay.hidden { display: none; }
.age-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-modal h2 { margin-bottom: 14px; font-size: 26px; color: var(--forest); }
.age-modal p { color: var(--gray); margin-bottom: 28px; font-size: 15px; }
.age-modal .btn { width: 100%; margin-bottom: 12px; }
.age-decline {
  background: none;
  color: var(--gray-light);
  font-size: 14px;
  padding: 8px;
}
.age-decline:hover { color: var(--gold); }
.age-fine { font-size: 12px; color: var(--gray-light); margin-top: 18px; line-height: 1.6; }
.age-fine a { color: var(--forest); text-decoration: underline; font-weight: 600; }

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.35s 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: 220px;
  font-size: 14px;
  color: var(--gray);
}
.cookie-text a { text-decoration: underline; font-weight: 600; color: var(--forest); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 980px) {
  .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; }
  .trust-grid { grid-template-columns: repeat(2, 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; }
  .trust-grid { grid-template-columns: 1fr; }
  .how-image img { height: 240px; }
  .safer-block { padding: 32px 24px; }
  .safer-callout .phone { font-size: 24px; }
}
