/* ============================================================
   WinBlssast.com — canvas.css
   Design System: "Obsidian Grid" — Deep space purple + cyan
   ============================================================ */

:root {
  /* Palette */
  --ink:         #06060f;
  --ink-2:       #0d0d1e;
  --ink-3:       #14142a;
  --ink-4:       #1c1c36;
  --violet:      #7c3aed;
  --violet-lite: #a78bfa;
  --violet-glow: rgba(124,58,237,.18);
  --cyan:        #06b6d4;
  --cyan-lite:   #67e8f9;
  --amber:       #f59e0b;
  --amber-lite:  #fcd34d;
  --snow:        #f8fafc;
  --slate:       #cbd5e1;
  --mist:        #64748b;
  --wire:        #1e1e3a;
  --wire-2:      #2a2a4a;
  --emerald:     #10b981;
  --crimson:     #ef4444;
  --hdr-h:       66px;
  --r-sm:        6px;
  --r-md:        12px;
  --r-lg:        20px;
  --ease:        .25s cubic-bezier(.4,0,.2,1);
  --shadow-sm:   0 2px 10px rgba(0,0,0,.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.6);
  --glow-v:      0 0 24px rgba(124,58,237,.35);
  --glow-c:      0 0 24px rgba(6,182,212,.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--ink);
  color: var(--snow);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--cyan-lite); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Gradient accent strip at very top ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--cyan) 50%, var(--violet) 100%);
  background-size: 200% 100%;
  animation: accentShift 6s ease-in-out infinite alternate;
  z-index: 9999;
  pointer-events: none;
}
@keyframes accentShift { to { background-position: 100% 0; } }

/* ── Grid dot background pattern ── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(124,58,237,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Diagonal section separator ── */
.cut-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 6rem;
}
.cut-top {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 5rem;
}

/* ── Containers ── */
.wrap     { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-sm  { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section  { padding: 96px 0; }

/* ── Typography ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 18px;
}
.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--violet);
  flex-shrink: 0;
}

.h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.06; letter-spacing: -1.5px; }
.h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.8px; }
.h3 { font-size: 1.2rem; font-weight: 700; }

.grad-text {
  background: linear-gradient(110deg, var(--violet-lite) 0%, var(--cyan) 60%, var(--cyan-lite) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-amber {
  background: linear-gradient(110deg, var(--amber) 0%, var(--amber-lite) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text  { color: var(--slate); font-size: .95rem; line-height: 1.75; }
.body-sm    { color: var(--mist); font-size: .85rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .3px;
}

.btn-violet {
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--violet) 0%, #6d28d9 100%);
  color: #fff;
  box-shadow: var(--glow-v);
}
.btn-violet:hover {
  background: linear-gradient(135deg, var(--violet-lite) 0%, var(--violet) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(124,58,237,.5);
  color: #fff;
}

.btn-ghost {
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--wire-2);
  color: var(--slate);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--violet);
  color: var(--violet-lite);
  transform: translateY(-2px);
}

.btn-cyan {
  padding: 13px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  color: #000;
  font-weight: 800;
  font-size: .85rem;
}
.btn-cyan:hover {
  background: linear-gradient(135deg, var(--cyan-lite), var(--cyan));
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-c);
  color: #000;
}

/* ══════════════════════════════════
   HEADER  — 3-column grid, centered nav
══════════════════════════════════ */
.hdr {
  position: fixed;
  top: 2px; left: 0; right: 0;
  height: var(--hdr-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background: rgba(6,6,15,.9);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.hdr.scrolled {
  background: rgba(6,6,15,.97);
  border-bottom-color: rgba(124,58,237,.22);
  box-shadow: 0 8px 40px rgba(0,0,0,.55);
}

.hdr-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(124,58,237,.4);
  flex-shrink: 0;
  transition: box-shadow var(--ease);
}
.brand:hover .brand-mark { box-shadow: 0 0 24px rgba(124,58,237,.6); }

.brand-text { line-height: 1; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--snow);
  letter-spacing: -.5px;
}
.brand-name em { color: var(--cyan); font-style: normal; }
.brand-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 2px;
  display: block;
}

/* Nav — centered */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-a {
  font-size: .83rem;
  font-weight: 500;
  color: var(--mist);
  padding: 8px 13px;
  position: relative;
  transition: color var(--ease);
  background: none;
  border-radius: 0;
  white-space: nowrap;
}
.nav-a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
  transition: left var(--ease), right var(--ease);
}
.nav-a:hover { color: var(--snow); background: none; }
.nav-a:hover::after { left: 10px; right: 10px; }
.nav-a.cur { color: var(--snow); }
.nav-a.cur::after { left: 10px; right: 10px; }

/* Right side: 18+ badge + CTA */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-18 {
  width: 30px; height: 30px;
  border: 1.5px solid var(--wire-2);
  border-radius: 7px;
  font-size: .7rem;
  font-weight: 900;
  color: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.hdr-18:hover { border-color: var(--violet); color: var(--violet-lite); }

.nav-pill {
  padding: 9px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  transition: all var(--ease);
  white-space: nowrap;
}
.nav-pill:hover {
  background: linear-gradient(135deg, var(--violet-lite), var(--violet));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,.4);
  color: #fff;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-nav {
  display: none;
  position: fixed;
  top: calc(var(--hdr-h) + 2px);
  inset: auto 0 0 0;
  height: calc(100vh - var(--hdr-h) - 2px);
  background: rgba(6,6,15,.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--wire);
  flex-direction: column;
  padding: 28px 24px;
  gap: 4px;
  z-index: 899;
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav .nav-a {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 10px;
}
.mob-nav .nav-a::after { display: none; }
.mob-nav .nav-a:hover, .mob-nav .nav-a.cur {
  background: rgba(124,58,237,.1);
  color: var(--snow);
}
.mob-nav .nav-pill {
  margin: 10px 0 0;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
}

.offset { padding-top: calc(var(--hdr-h) + 2px); }

/* ══════════════════════════════════
   HERO  — full-bleed, dramatic split
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
}

/* Full-bleed dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
  pointer-events: none;
}

/* Right-side gradient sweep */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(124,58,237,.06) 40%,
    rgba(6,182,212,.05) 75%,
    transparent 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.hero-orb-v {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.13), transparent 65%);
  top: -200px; left: -100px;
  animation: floatA 10s ease-in-out infinite alternate;
}
.hero-orb-c {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.09), transparent 65%);
  bottom: -100px; right: 10%;
  animation: floatB 12s ease-in-out infinite alternate;
}
@keyframes floatA { to { transform: translate(40px, 30px) scale(1.07); } }
@keyframes floatB { to { transform: translate(-30px, -25px) scale(1.1); } }

/* Layout */
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.hero-left {}
.hero-right {}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(124,58,237,.3);
  background: rgba(124,58,237,.07);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 30px;
}
.hero-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.35; transform:scale(1.6); }
}

.hero-title { margin-bottom: 22px; }

.hero-body {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 510px;
  margin-bottom: 36px;
}

.hero-disclaimer {
  max-width: 510px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(124,58,237,.24);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-disclaimer-title {
  margin: 0;
  color: var(--snow);
  font-size: .82rem;
  line-height: 1.45;
  font-weight: 700;
}
.hero-disclaimer-text {
  margin: 6px 0 0;
  color: var(--mist);
  font-size: .78rem;
  line-height: 1.5;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Stats grid — 4 boxes */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--wire);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-stat {
  background: var(--ink-2);
  padding: 16px 12px;
  text-align: center;
}
.hero-stat-n {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}
.hero-stat-l {
  font-size: .65rem;
  color: var(--mist);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Right panel — glass leaderboard */
.hero-panel {
  background: rgba(13,13,30,.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(124,58,237,.12),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
}

.hero-panel-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(30,30,58,.8);
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.08));
}
.hero-panel-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet-lite);
}
.hero-panel-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .66rem;
  color: var(--emerald);
  font-weight: 700;
  letter-spacing: .5px;
}
.hero-panel-live-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 6px var(--emerald);
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(30,30,58,.6);
  transition: background var(--ease);
  text-decoration: none;
  color: var(--snow);
}
.mini-row:last-child { border-bottom: none; }
.mini-row:hover { background: rgba(124,58,237,.08); }

.mini-rank {
  font-size: 1rem;
  font-weight: 900;
  width: 24px;
  flex-shrink: 0;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.mini-rank.gold   { color: var(--amber); }
.mini-rank.silver { color: #94a3b8; }
.mini-rank.bronze { color: #cd7f32; }
.mini-rank.rest   { color: var(--wire-2); }

.mini-logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.mini-logo img { width: 100%; height: 100%; object-fit: contain; }

.mini-info { flex: 1; min-width: 0; }
.mini-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--snow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cat {
  font-size: .64rem;
  color: var(--mist);
  margin-top: 1px;
}
.mini-score {
  font-size: .95rem;
  font-weight: 900;
  color: var(--cyan);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ── Feather icon helper ── */
.fi { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fi svg { display: block; }

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--wire);
  border-bottom: 1px solid var(--wire);
  padding: 20px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid var(--wire);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-icon { font-size: 1.1rem; }
.trust-text { font-size: .8rem; font-weight: 600; color: var(--slate); }

/* ══════════════════════════════════
   CASINO LISTINGS — magazine strip
══════════════════════════════════ */
.listings { padding: 100px 0; background: var(--ink); }

.listings-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}

.warn-chip {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.22);
  border-radius: var(--r-md);
  padding: 14px 18px;
  max-width: 360px;
  flex-shrink: 0;
}
.warn-chip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.warn-chip p { font-size: .75rem; color: var(--slate); line-height: 1.6; }
.warn-chip a { color: var(--cyan); }

/* Casino strip card */
.casino-strip {
  display: grid;
  grid-template-columns: 56px 100px 1fr auto auto;
  align-items: center;
  gap: 0;
  background: var(--ink-2);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--snow);
  transition: all var(--ease);
  position: relative;
}

.casino-strip::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--violet);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--ease);
}
.casino-strip:hover::after { transform: scaleY(1); }

.casino-strip:hover {
  border-color: rgba(124,58,237,.4);
  background: var(--ink-3);
  transform: translateX(4px);
  color: var(--snow);
  box-shadow: var(--shadow-md), var(--glow-v);
}

.casino-strip.top-pick {
  border-color: rgba(6,182,212,.3);
  background: linear-gradient(90deg, rgba(6,182,212,.04), var(--ink-2));
}
.casino-strip.top-pick::after { background: var(--cyan); }

/* Rank column */
.cs-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  padding: 24px 0;
  background: var(--ink-3);
  border-right: 1px solid var(--wire);
  align-self: stretch;
  flex-direction: column;
  gap: 4px;
}
.cs-rank-num { line-height: 1; }
.cs-rank.r1 .cs-rank-num { color: var(--amber); }
.cs-rank.r2 .cs-rank-num { color: #94a3b8; }
.cs-rank.r3 .cs-rank-num { color: #cd7f32; }
.cs-rank .cs-rank-num { color: var(--wire-2); }

/* Logo column */
.cs-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  border-right: 1px solid var(--wire);
  align-self: stretch;
}
.cs-logo-box {
  width: 72px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-logo-box img { width: 100%; height: 100%; object-fit: contain; }

/* Info column */
.cs-info {
  padding: 18px 22px;
  flex: 1;
  border-right: 1px solid var(--wire);
}
.cs-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(6,182,212,.35);
  color: var(--cyan);
  background: rgba(6,182,212,.08);
}
.cs-badge-amber {
  border-color: rgba(245,158,11,.35);
  color: var(--amber);
  background: rgba(245,158,11,.07);
}
.cs-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.cs-perk {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--mist);
}
.cs-perk::before { content: '✓'; color: var(--emerald); font-weight: 700; font-size: .8rem; }

/* Score column */
.cs-score {
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid var(--wire);
  flex-shrink: 0;
}
.cs-score-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
}
.cs-score-num.cyan   { color: var(--cyan); }
.cs-score-num.violet { color: var(--violet-lite); }
.cs-score-num.amber  { color: var(--amber); }
.cs-score-max { font-size: .75rem; color: var(--mist); margin-left: 2px; font-weight: 400; }
.cs-score-stars { font-size: .8rem; color: var(--amber); margin: 5px 0 3px; }
.cs-score-label { font-size: .65rem; color: var(--mist); letter-spacing: .8px; text-transform: uppercase; }

/* CTA column */
.cs-cta {
  padding: 18px 22px;
  flex-shrink: 0;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: .83rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  color: #fff;
  transition: all var(--ease);
  white-space: nowrap;
}
.casino-strip:hover .cs-btn {
  background: linear-gradient(135deg, var(--violet-lite), var(--violet));
  box-shadow: var(--glow-v);
  transform: scale(1.04);
}
.casino-strip.top-pick .cs-btn {
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  color: #000;
}
.casino-strip.top-pick:hover .cs-btn {
  background: linear-gradient(135deg, var(--cyan-lite), var(--cyan));
  box-shadow: var(--glow-c);
}

.aff-note {
  font-size: .75rem;
  color: var(--mist);
  margin-top: 18px;
  line-height: 1.65;
}
.aff-note a { color: var(--cyan); }

/* ══════════════════════════════════
   WHY UK CASINOS — alternating rows
══════════════════════════════════ */
.why-section { background: var(--ink-2); }

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--wire);
}
.why-row:last-child { border-bottom: none; padding-bottom: 0; }
.why-row.flip { direction: rtl; }
.why-row.flip > * { direction: ltr; }

.why-visual {
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.why-icon-big {
  font-size: 5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(124,58,237,.4));
}
.why-text-col {}
.why-text-col h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.why-text-col p { color: var(--slate); font-size: .93rem; line-height: 1.8; margin-bottom: 14px; }
.why-text-col p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   HOW WE RATE — horizontal timeline
══════════════════════════════════ */
.rate-section { background: var(--ink); position: relative; overflow: hidden; }

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  z-index: 0;
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.tl-node {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--wire-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all var(--ease);
  box-shadow: 0 0 0 6px var(--ink);
  position: relative;
}

.tl-step:nth-child(1) .tl-node { border-color: var(--violet); box-shadow: 0 0 0 6px var(--ink), var(--glow-v); }
.tl-step:nth-child(2) .tl-node { border-color: #5b21b6; }
.tl-step:nth-child(3) .tl-node { border-color: #0e7490; }
.tl-step:nth-child(4) .tl-node { border-color: var(--cyan); box-shadow: 0 0 0 6px var(--ink), var(--glow-c); }
.tl-step:nth-child(5) .tl-node { border-color: var(--emerald); }
.tl-step:nth-child(6) .tl-node { border-color: var(--amber); }

.tl-step:hover .tl-node { transform: scale(1.12); }

.tl-num {
  position: absolute;
  top: -8px; right: -4px;
  width: 20px; height: 20px;
  background: var(--violet);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-step h4 { font-size: .88rem; font-weight: 700; margin-bottom: 8px; }
.tl-step p { font-size: .78rem; color: var(--mist); line-height: 1.6; }

/* ══════════════════════════════════
   FAQ — two column
══════════════════════════════════ */
.faq-section { background: var(--ink-2); }

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 52px;
}

.faq-item {
  background: var(--ink-3);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: rgba(124,58,237,.4); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--snow);
  font-size: .9rem;
  font-weight: 600;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  transition: background var(--ease);
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { background: rgba(124,58,237,.05); }

.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--wire-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  font-size: .8rem;
  color: var(--mist);
  margin-top: 1px;
}
.faq-item.open .faq-arrow {
  border-color: var(--violet);
  color: var(--violet-lite);
  background: rgba(124,58,237,.1);
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: .85rem;
  color: var(--slate);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════
   GAMBLING WARNING
══════════════════════════════════ */
.gamble-warn {
  background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(220,38,38,.05));
  border: 1px solid rgba(239,68,68,.22);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.gamble-warn-ico { font-size: 1.6rem; flex-shrink: 0; }
.gamble-warn h4 { font-size: .9rem; font-weight: 700; color: #ef4444; margin-bottom: 6px; }
.gamble-warn p { font-size: .83rem; color: var(--slate); line-height: 1.7; }
.gamble-warn a { color: var(--cyan); }

/* ══════════════════════════════════
   REGULATORS — marquee ticker
══════════════════════════════════ */
.reg-section {
  background: var(--ink);
  border-top: 1px solid var(--wire);
  padding: 60px 0;
}

.reg-label-top {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
  margin-bottom: 32px;
}

.reg-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.reg-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--ink-2);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  padding: 22px 20px;
  width: 168px;
  text-decoration: none;
  transition: all var(--ease);
}
.reg-tile:hover {
  border-color: rgba(124,58,237,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--glow-v);
}
.reg-tile img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: filter var(--ease);
}
.reg-tile:hover img { filter: brightness(1.15); }
.reg-tile-name { font-size: .78rem; font-weight: 700; color: var(--slate); text-align: center; }
.reg-tile-desc { font-size: .68rem; color: var(--mist); text-align: center; line-height: 1.45; }

/* ══════════════════════════════════
   DISCLAIMER
══════════════════════════════════ */
.disclaimer-band {
  background: var(--ink-3);
  border-top: 1px solid var(--wire);
  padding: 28px 0;
}
.disclaimer-txt {
  font-size: .76rem;
  color: var(--mist);
  line-height: 1.8;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.disclaimer-txt a { color: var(--cyan); }
.disclaimer-txt strong { color: var(--slate); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.ftr {
  background: #030308;
  border-top: 1px solid var(--wire);
  padding: 64px 0 0;
}

.ftr-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

.ftr-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.ftr-logo-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ftr-logo-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--snow);
}
.ftr-logo-name em { color: var(--cyan); font-style: normal; }

.ftr-about {
  font-size: .84rem;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 290px;
}

.ftr-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 2px solid var(--violet);
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 900;
  color: var(--violet-lite);
}

/* Regulator logos in footer brand column */
.ftr-reg-strip {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-reg-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--mist);
  transition: color var(--ease);
  text-decoration: none;
}
.ftr-reg-link:hover { color: var(--cyan); }
.ftr-reg-link img {
  width: 20px; height: 20px;
  object-fit: contain;
  border-radius: 3px;
}

.ftr-col-h {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}

.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftr-links a {
  font-size: .85rem;
  color: var(--mist);
  transition: color var(--ease);
}
.ftr-links a:hover { color: var(--cyan); }

.ftr-help-box {
  margin-top: 20px;
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.18);
  border-radius: 10px;
  padding: 16px;
}
.ftr-help-box strong { display: block; font-size: .75rem; color: #ef4444; margin-bottom: 6px; }
.ftr-help-box p { font-size: .8rem; color: var(--mist); line-height: 1.55; }
.ftr-help-box span { font-size: 1rem; font-weight: 800; color: var(--snow); display: block; margin-top: 4px; }

.ftr-bottom {
  border-top: 1px solid var(--wire);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ftr-copy { font-size: .78rem; color: var(--mist); }
.ftr-copy-links { display: flex; gap: 20px; }
.ftr-copy-links a { font-size: .78rem; color: var(--mist); transition: color var(--ease); }
.ftr-copy-links a:hover { color: var(--cyan); }

/* ══════════════════════════════════
   AGE VERIFICATION
══════════════════════════════════ */
.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(3,3,8,.97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(16px);
}
.age-box {
  background: var(--ink-2);
  border: 1px solid var(--wire-2);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--glow-v);
  position: relative;
  overflow: hidden;
}
.age-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,.15), transparent);
  pointer-events: none;
}
.age-18-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 3px solid var(--violet);
  border-radius: 14px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--violet-lite);
  margin: 0 auto 22px;
  box-shadow: var(--glow-v);
  position: relative;
  z-index: 1;
}
.age-box h2 { font-size: 1.9rem; font-weight: 900; margin-bottom: 14px; position: relative; z-index: 1; }
.age-box p { font-size: .88rem; color: var(--slate); line-height: 1.75; margin-bottom: 30px; position: relative; z-index: 1; }
.age-box p a { color: var(--cyan); }
.age-btns { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.age-yes {
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  font-family: inherit;
}
.age-yes:hover { background: linear-gradient(135deg, var(--violet-lite), var(--violet)); transform: translateY(-2px); box-shadow: var(--glow-v); }
.age-no {
  display: block;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--wire-2);
  color: var(--mist);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--ease);
  text-decoration: none;
}
.age-no:hover { border-color: var(--crimson); color: var(--crimson); }
.age-note { font-size: .72rem; color: var(--mist); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--wire); line-height: 1.65; position: relative; z-index: 1; }

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 8888;
  box-shadow: var(--shadow-lg);
  transition: all .35s ease;
}
.cookie-bar.gone { transform: translateX(-50%) translateY(140%); opacity: 0; pointer-events: none; }
.cookie-txt { flex: 1; font-size: .83rem; color: var(--slate); line-height: 1.6; min-width: 220px; }
.cookie-txt strong { color: var(--snow); }
.cookie-txt a { color: var(--cyan); }
.cookie-acts { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.ck-acc {
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), #4c1d95);
  color: #fff;
  font-weight: 700;
  font-size: .83rem;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  font-family: inherit;
}
.ck-acc:hover { background: linear-gradient(135deg, var(--violet-lite), var(--violet)); transform: translateY(-1px); }
.ck-rej {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--wire-2);
  color: var(--mist);
  font-size: .83rem;
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
  font-family: inherit;
}
.ck-rej:hover { border-color: var(--slate); color: var(--snow); }

/* ══════════════════════════════════
   BACK TO TOP
══════════════════════════════════ */
.btt {
  position: fixed;
  bottom: 100px;
  right: 26px;
  width: 44px; height: 44px;
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  color: var(--slate);
  transition: all var(--ease);
  opacity: 0;
  pointer-events: none;
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { background: var(--violet); color: #fff; border-color: var(--violet); box-shadow: var(--glow-v); transform: translateY(-2px); }

/* ══════════════════════════════════
   INNER PAGES
══════════════════════════════════ */
.page-hood {
  background: var(--ink-2);
  border-bottom: 1px solid var(--wire);
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hood::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.page-hood .wrap { position: relative; z-index: 1; }
.page-hood h1 { margin-bottom: 12px; }
.page-hood p { color: var(--slate); max-width: 560px; font-size: 1rem; }

.breadcrumb { font-size: .78rem; color: var(--mist); margin-bottom: 18px; }
.breadcrumb a { color: var(--mist); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--cyan); }

/* Prose */
.doc { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.doc h2 { font-size: 1.45rem; font-weight: 800; margin: 52px 0 16px; color: var(--snow); }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 1.05rem; font-weight: 700; margin: 32px 0 12px; color: var(--slate); }
.doc p { color: var(--slate); line-height: 1.82; margin-bottom: 16px; font-size: .93rem; }
.doc ul, .doc ol { margin: 14px 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.doc ul { list-style: disc; }
.doc ol { list-style: decimal; }
.doc li { color: var(--slate); font-size: .93rem; line-height: 1.7; }
.doc a { color: var(--cyan); }
.doc hr { border: none; border-top: 1px solid var(--wire); margin: 48px 0; }

/* About page extras */
.value-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.value-tile {
  background: var(--ink-3);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: all var(--ease);
}
.value-tile:hover { border-color: rgba(124,58,237,.3); transform: translateY(-2px); }
.value-tile-ico { font-size: 1.4rem; margin-bottom: 12px; }
.value-tile h4 { font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.value-tile p { font-size: .82rem; color: var(--mist); line-height: 1.65; }

.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.team-card {
  background: var(--ink-3);
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--ease);
}
.team-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-3px); }
.team-ava {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(6,182,212,.15));
  border: 2px solid rgba(124,58,237,.3);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.team-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .7rem; color: var(--cyan); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { font-size: .8rem; color: var(--mist); line-height: 1.65; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
  .tl-step { padding-bottom: 32px; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 900px) {
  .why-row { grid-template-columns: 1fr; }
  .why-row.flip { direction: ltr; }
  .why-visual { min-height: 140px; }
  .faq-cols { grid-template-columns: 1fr; }
  .casino-strip { grid-template-columns: 48px 84px 1fr auto; }
  .cs-score { display: none; }
  .listings-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 60px; }
  .nav { display: none; }
  .hdr-right { display: none; }
  .burger { display: flex; }
  .hdr-inner { grid-template-columns: 1fr auto; }
  .section { padding: 64px 0; }
  .casino-strip { grid-template-columns: 1fr; }
  .cs-rank, .cs-logo { display: none; }
  .cs-info { border-right: none; border-bottom: 1px solid var(--wire); }
  .cs-cta { padding: 14px 18px; }
  .cs-btn { width: 100%; justify-content: center; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bottom { flex-direction: column; text-align: center; }
  .ftr-copy-links { justify-content: center; }
  .cookie-bar { bottom: 12px; left: 12px; right: 12px; width: auto; transform: none; }
  .cookie-bar.gone { transform: translateY(150%); }
}

@media (max-width: 520px) {
  .hero-strip { flex-direction: column; width: 100%; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--wire-2); }
  .hero-stat:last-child { border-bottom: none; }
  .timeline { grid-template-columns: 1fr; }
  .reg-tile { width: calc(50% - 8px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
}
