
/* ── TrustedCasinoLab · Design System ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --ink:       #0b0c10;
  --ink2:      #111318;
  --ink3:      #181b22;
  --ink4:      #1e222c;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --gold:      #c8a84b;
  --gold2:     #a8873a;
  --gold-dim:  rgba(200,168,75,0.12);
  --teal:      #3a8c8c;
  --teal-dim:  rgba(58,140,140,0.15);
  --red:       #c05050;
  --red-dim:   rgba(192,80,80,0.12);
  --green:     #4a9068;
  --green-dim: rgba(74,144,104,0.12);
  --text:      #dcd8ce;
  --text2:     #8a8680;
  --text3:     #555250;
  --font:      'DM Sans', sans-serif;
  --head:      'Syne', sans-serif;
  --mono:      'DM Mono', monospace;
  --r:         6px;
  --r2:        10px;
  --max:       1160px;
  --col:       680px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── NOISE TEXTURE overlay ─────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.logo-text em {
  color: var(--gold);
  font-style: normal;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
nav.primary::-webkit-scrollbar { display: none; }
nav.primary a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
nav.primary a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
nav.primary a.active { color: var(--gold); }

.lang-switcher {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.lang-switcher a {
  font-size: 11.5px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text3);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.lang-switcher a:hover { color: var(--text2); border-color: var(--border); }
.lang-switcher a.current { color: var(--gold); border-color: var(--gold2); background: var(--gold-dim); }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text2); margin: 4px 0; border-radius: 2px; transition: all 0.2s; }

/* ── HERO BAND (page top) ────────────────────────────────────────────────── */
.page-band {
  border-bottom: 1px solid var(--border);
  background: var(--ink2);
}
.page-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 32px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text3); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.page-title {
  font-family: var(--head);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: var(--col);
}
.page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.meta-chip {
  font-size: 11.5px;
  font-family: var(--mono);
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta-chip strong { color: var(--text2); }

/* ── MAIN LAYOUT ─────────────────────────────────────────────────────────── */
.page-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.page-layout.wide {
  grid-template-columns: 1fr;
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
}

/* ── ARTICLE / CONTENT ───────────────────────────────────────────────────── */
.article-body h1 { display: none; }
.article-body h2 {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}
.article-body p { color: var(--text2); margin-bottom: 16px; }
.article-body p:first-child { color: var(--text); font-size: 16.5px; line-height: 1.65; }
.article-body ul, .article-body ol {
  color: var(--text2);
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body li { margin-bottom: 5px; }
.article-body strong { color: var(--text); font-weight: 500; }
.article-body em { color: var(--text2); font-style: italic; }
.article-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold2); padding-bottom: 1px; transition: border-color 0.15s; }
.article-body a:hover { border-color: var(--gold); }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.article-body code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--ink3);
  color: var(--teal);
  padding: 2px 7px;
  border-radius: 4px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold2);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--gold-dim);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--text2);
  font-style: italic;
}

/* ── TABLES ──────────────────────────────────────────────────────────────── */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.article-body table th {
  text-align: left;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid var(--border2);
  font-family: var(--mono);
}
.article-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  vertical-align: middle;
}
.article-body table tr:last-child td { border-bottom: none; }
.article-body table tr:hover td { background: rgba(255,255,255,0.02); }
/* Verdict table (two-col, no header) */
.article-body table.verdict td:first-child { color: var(--text3); font-family: var(--mono); font-size: 12px; width: 42%; }
.article-body table.verdict td:last-child { color: var(--text); font-weight: 500; }

/* ── VERDICT CARD ────────────────────────────────────────────────────────── */
.verdict-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin: 28px 0;
}
.verdict-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--ink4);
}
.score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold2);
  flex-shrink: 0;
}
.score-num {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-den { font-size: 10px; color: var(--gold2); font-family: var(--mono); }
.verdict-name { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); }
.verdict-network { font-size: 12px; color: var(--text3); font-family: var(--mono); margin-top: 2px; }
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.verdict-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.verdict-row:nth-child(even) { border-right: none; }
.verdict-row:nth-last-child(-n+2) { border-bottom: none; }
.verdict-label { font-size: 10.5px; font-family: var(--mono); color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; }
.verdict-val { font-size: 14px; color: var(--text); font-weight: 500; }

/* pros/cons strip */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pros, .cons { padding: 16px 18px; }
.pros { border-right: 1px solid var(--border); }
.pros-cons h4 {
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { font-size: 13px; color: var(--text2); padding: 3px 0 3px 18px; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 12px; }
.cons li::before { content: '×'; position: absolute; left: 0; color: var(--red); font-size: 14px; }

/* CTA button */
.cta-strip {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--ink4);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--head);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-primary::after { content: '→'; }
.cta-disclaimer { font-size: 11px; color: var(--text3); }

/* ── SIDEBAR ─────────────────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.sidebar-card-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text3);
}
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--text2);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.sidebar-links a:hover { background: rgba(255,255,255,0.03); color: var(--gold); }
.sidebar-score {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Responsible gambling sidebar box */
.rg-box {
  border: 1px solid rgba(192,80,80,0.25);
  background: rgba(192,80,80,0.05);
  border-radius: var(--r2);
  padding: 16px;
  font-size: 12.5px;
  color: var(--text3);
  line-height: 1.6;
}
.rg-box strong { color: var(--red); display: block; margin-bottom: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── CASINO GRID (hub pages) ─────────────────────────────────────────────── */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.casino-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.casino-card:hover { border-color: var(--gold2); transform: translateY(-2px); }
.casino-card-body { padding: 16px 18px; flex: 1; }
.casino-card-name {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.casino-card-network { font-size: 11px; font-family: var(--mono); color: var(--text3); margin-bottom: 12px; }
.casino-card-stat { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 5px; }
.casino-card-stat span:first-child { color: var(--text3); }
.casino-card-stat span:last-child { color: var(--text2); font-weight: 500; }
.casino-card-footer {
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-score {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
}
.card-score small { font-size: 11px; color: var(--text3); font-family: var(--mono); font-weight: 400; }
.card-arrow { color: var(--text3); font-size: 14px; transition: color 0.12s; }
.casino-card:hover .card-arrow { color: var(--gold); }

/* ── COMPARISON TABLE ────────────────────────────────────────────────────── */
.comp-table-wrap { overflow-x: auto; margin: 24px 0; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 600px; }
.comp-table th {
  background: var(--ink3);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 2px solid var(--border2);
  white-space: nowrap;
}
.comp-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text2);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table td:first-child a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.comp-table td:first-child a:hover { color: var(--gold); }
.wagering-good { color: var(--green) !important; font-weight: 600; font-family: var(--mono); }
.wagering-ok   { color: var(--gold) !important; font-family: var(--mono); }
.wagering-bad  { color: var(--red) !important; font-family: var(--mono); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { margin: 24px 0; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 15px 18px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.12s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon { color: var(--text3); font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  display: none;
  padding: 4px 18px 16px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── INFO BOX ────────────────────────────────────────────────────────────── */
.info-box {
  border-left: 3px solid var(--teal);
  background: var(--teal-dim);
  padding: 14px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 13.5px;
  color: var(--text2);
  margin: 20px 0;
}
.warn-box {
  border-left: 3px solid var(--gold2);
  background: var(--gold-dim);
  padding: 14px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 13.5px;
  color: var(--text2);
  margin: 20px 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--ink2);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.65; max-width: 240px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.12s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
}
.footer-rg {
  font-size: 12px;
  color: var(--red);
  opacity: 0.7;
}
.footer-copy {
  font-size: 11.5px;
  color: var(--text3);
  font-family: var(--mono);
  opacity: 0.5;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-row { border-right: none !important; }
  .pros-cons { grid-template-columns: 1fr; }
  .pros { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .header-inner { gap: 16px; }
  nav.primary { display: none; }
  .nav-toggle { display: block; }
  nav.primary.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--ink2); border-bottom: 1px solid var(--border); padding: 12px; z-index: 99; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-band-inner { padding: 24px 16px 20px; }
  .page-layout { padding: 28px 16px 60px; }
  .casino-grid { grid-template-columns: 1fr; }
}

/* ── SCORE COLOURS ───────────────────────────────────────────────────────── */
.s-high { color: var(--green) !important; }
.s-mid  { color: var(--gold) !important; }
.s-low  { color: var(--red) !important; }
