/* ═══════════════════════════════════════════════════
   ProCasinoReviewPortugal — Cinematic Luxury Dark Editorial
   Typography: Cormorant Garamond + Outfit + JetBrains Mono
   Palette: Deep Obsidian / Aged Parchment / Burnished Gold / Blood Crimson
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #0d0b09;
  --ink-2:      #181410;
  --ink-3:      #221d17;
  --ink-4:      #2e271f;
  --parchment:  #f0e8d8;
  --parchment-2:#e8ddc8;
  --cream:      #faf6ef;
  --gold:       #c8922a;
  --gold-2:     #e2aa3e;
  --gold-3:     #f0c85a;
  --gold-pale:  #f5e9c8;
  --crimson:    #8b1a2b;
  --crimson-2:  #b02235;
  --crimson-3:  #d42b41;
  --teal:       #0e6b6b;
  --teal-2:     #138080;
  --teal-3:     #19a0a0;

  /* Text */
  --text-on-dark:    #e8ddd0;
  --text-muted-dark: #8a7e72;
  --text-on-light:   #1a150e;
  --text-muted-light:#6b5e50;

  /* Surfaces */
  --surface-1: #161210;
  --surface-2: #1f1a15;
  --surface-3: #28211a;
  --surface-4: #322a22;

  /* Borders */
  --border-gold:   rgba(200,146,42,0.22);
  --border-light:  rgba(240,232,216,0.08);
  --border-strong: rgba(200,146,42,0.45);

  /* Shadows */
  --shadow-gold: 0 0 60px rgba(200,146,42,0.12);
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.6);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --container: 1240px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-med:  0.32s;
  --t-slow: 0.55s;
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

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

/* ── AGE BAR ────────────────────────────────────────── */
.age-bar {
  position: relative;
  z-index: 200;
  background: var(--crimson);
  overflow: hidden;
}
.age-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 16px;
  animation: ticker-slide 22s linear infinite;
}
@keyframes ticker-slide { 0%{transform:translateX(0)} 100%{transform:translateX(0)} }
.age-bar__chip {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.age-bar__text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ── HEADER ─────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,11,9,0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-med) var(--ease-in-out),
              box-shadow var(--t-med) var(--ease-in-out);
}
.header.scrolled {
  background: rgba(13,11,9,0.98);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.header__logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.header__logo-mark {
  color: var(--gold);
  transition: transform var(--t-med) var(--ease-out);
}
.header__logo:hover .header__logo-mark { transform: rotate(60deg); }
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--parchment);
  line-height: 1;
  letter-spacing: 0;
}
.header__logo-name em {
  font-style: normal;
  color: var(--gold-2);
}
.header__logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.header__nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-dark);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  border: none; background: none;
}
.nav__link:hover, .nav__link--active {
  color: var(--gold-2);
  background: rgba(200,146,42,0.08);
}
.nav__link--active {
  color: var(--gold);
}

/* Dropdown */
.nav__drop { position: relative; }
.nav__drop-btn { cursor: pointer; }
.nav__drop-btn svg { transition: transform var(--t-fast); }
.nav__drop:hover .nav__drop-btn svg { transform: rotate(180deg); }
.nav__drop-panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: all var(--t-med) var(--ease-out);
  z-index: 300;
  box-shadow: var(--shadow-deep);
}
.nav__drop:hover .nav__drop-panel,
.nav__drop:focus-within .nav__drop-panel {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.nav__drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.nav__drop-item:hover { background: rgba(200,146,42,0.1); }
.nav__drop-icon { font-size: 22px; }
.nav__drop-info { display: flex; flex-direction: column; }
.nav__drop-info strong { font-size: 14px; color: var(--text-on-dark); }
.nav__drop-info small { font-size: 11px; font-family: var(--font-mono); color: var(--teal-3); margin-top: 1px; }

/* Right side */
.header__right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted-dark);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  letter-spacing: 0.06em;
}
.lang-btn:hover { color: var(--gold-2); }
.lang-btn--on {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(200,146,42,0.08);
}
.header__age {
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--gold-2); border-radius: 2px;
  transition: all var(--t-med) var(--ease-out);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink-2);
}

/* Diagonal split background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--surface-2);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Azulejo-pattern right side texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(200,146,42,0.04) 0px, rgba(200,146,42,0.04) 1px,
      transparent 1px, transparent 28px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(200,146,42,0.04) 0px, rgba(200,146,42,0.04) 1px,
      transparent 1px, transparent 28px
    );
}

/* Radial glow left */
.hero__glow-l {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 10% 50%, rgba(139,26,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* Radial glow right gold */
.hero__glow-r {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 40%, rgba(200,146,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__inner.container {}

/* Left text */
.hero__copy {}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
}
.hero__eyebrow::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.01;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__h1 .accent {
  font-weight: 700;
  font-style: italic;
  color: var(--gold-2);
  position: relative;
  display: inline-block;
}
.hero__h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson-2) 100%);
}

.hero__sub {
  font-size: 17px;
  color: var(--text-muted-dark);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero__cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.btn--gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--r-sm);
  border: none;
  transition: all var(--t-med) var(--ease-out);
  box-shadow: 0 4px 24px rgba(200,146,42,0.3);
  position: relative; overflow: hidden;
}
.btn--gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200,146,42,0.45);
}
.btn--ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-gold);
  transition: all var(--t-med) var(--ease-out);
}
.btn--ghost:hover {
  background: rgba(200,146,42,0.08);
  color: var(--gold-2);
  border-color: var(--gold);
}

/* Hero stats */
.hero__stats {
  display: flex; gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.hero__stat {}
.hero__stat-v {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
}
.hero__stat-l {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Right: hero visual cards */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 20px;
}
.hero__card {
  background: var(--surface-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: all var(--t-med) var(--ease-out);
  animation: float-card 6s ease-in-out infinite;
  cursor: default;
}
.hero__card:nth-child(2) { animation-delay: -3s; margin-left: 32px; }
.hero__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero__card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.hero__card-icon--cp  { background: linear-gradient(135deg, #004d00, #007a00); }
.hero__card-icon--888 { background: linear-gradient(135deg, #1a003a, #4a0080); }
.hero__card-body { flex: 1; }
.hero__card-name {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 600;
  color: var(--parchment);
}
.hero__card-lic {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-3);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.hero__card-score {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}
.hero__card-score small {
  display: block;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-muted-dark);
  font-weight: 400;
}

/* Decorative vertical line */
.hero__deco-line {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, var(--border-gold) 30%, var(--border-gold) 70%, transparent);
}

/* ── TRUST ROW ───────────────────────────────────────── */
.trust {
  padding: 80px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.trust__item {
  padding: 36px 28px;
  background: var(--surface-2);
  position: relative;
  transition: background var(--t-med);
}
.trust__item:hover { background: var(--surface-3); }
.trust__item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-light);
}
.trust__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.trust__h {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 10px;
}
.trust__b {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* ── SECTION HEADERS ────────────────────────────────── */
.sec-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-eye::before { content: '◆'; font-size: 8px; }
.sec-h {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sec-h strong { font-weight: 700; font-style: italic; color: var(--gold-2); }
.sec-sub {
  font-size: 16px;
  color: var(--text-muted-dark);
  max-width: 520px;
}

/* ── CASINOS SECTION ────────────────────────────────── */
.casinos {
  padding: 100px 0;
  background: var(--ink);
}
.casinos__header {
  margin-bottom: 64px;
}

/* Casino Card — full-width, majestic */
.casino-entry {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.casino-entry:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--border-gold), var(--shadow-gold);
}
.casino-entry--clickable {
  cursor: pointer;
}
.casino-entry--clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Rank stripe */
.casino-entry__rank {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.casino-entry__rank--1 { background: linear-gradient(180deg, var(--gold) 0%, var(--gold-3) 100%); }
.casino-entry__rank--2 { background: linear-gradient(180deg, var(--teal) 0%, var(--teal-3) 100%); }

/* Top bar with diagonal gradient */
.casino-entry__topbar {
  padding: 28px 36px 28px 48px;
  background: linear-gradient(105deg, var(--surface-3) 0%, var(--surface-2) 60%, transparent 100%);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.casino-entry__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  border: 1px solid;
}
.casino-entry__badge--gold {
  color: var(--gold-3);
  border-color: rgba(200,146,42,0.4);
  background: rgba(200,146,42,0.08);
}
.casino-entry__badge--teal {
  color: var(--teal-3);
  border-color: rgba(19,160,160,0.4);
  background: rgba(19,160,160,0.08);
}
.casino-entry__name-block { flex: 1; }
.casino-entry__name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.casino-entry__sub {
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-top: 3px;
}
.casino-entry__score-block { text-align: right; }
.casino-entry__score-v {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-2);
}
.casino-entry__score-max {
  font-size: 18px;
  color: var(--text-muted-dark);
}
.casino-entry__score-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: 4px;
}
.casino-entry__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Body */
.casino-entry__body {
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  min-height: 280px;
}

/* Brand panel */
.casino-entry__brand {
  padding: 32px;
  border-right: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  gap: 16px;
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}
.casino-entry__brand::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    repeating-conic-gradient(
      rgba(200,146,42,1) 0% 25%,
      transparent 0% 50%
    );
  background-size: 24px 24px;
}
.casino-entry__logo {
  width: 88px; height: 88px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border: 1px solid var(--border-gold);
  position: relative; z-index: 1;
}
.casino-entry__logo--cp  { background: linear-gradient(135deg, #dee4de, #f0f9f0); }
.casino-entry__logo--888 { background: linear-gradient(135deg, #ede9f6, #fbf8ff); }

.casino-entry__bonus-pill {
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: var(--r-md);
  padding: 12px 16px;
  width: 100%;
  position: relative; z-index: 1;
}
.casino-entry__bonus-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.casino-entry__bonus-val {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--parchment);
}

/* Content panel */
.casino-entry__content {
  padding: 32px 36px;
}
.casino-entry__desc {
  font-size: 15px;
  color: var(--text-muted-dark);
  line-height: 1.72;
  margin-bottom: 28px;
}
.casino-entry__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-on-dark);
}
.feature-check::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(19,160,160,0.15);
  border: 1px solid rgba(19,160,160,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2319a0a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Quick stats */
.casino-entry__quick {
  display: flex; gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}
.qstat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-light);
}
.qstat:last-child { border-right: none; }
.qstat__v {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  color: var(--gold-2);
}
.qstat__l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: 3px;
}

/* CTA panel */
.casino-entry__cta {
  padding: 32px 28px;
  border-left: 1px solid var(--border-light);
  display: flex; flex-direction: column;
  justify-content: center; align-items: stretch;
  gap: 12px;
  background: var(--surface-1);
}
.btn--visit {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  text-align: center;
  transition: all var(--t-med) var(--ease-out);
  box-shadow: 0 4px 20px rgba(200,146,42,0.25);
  border: none;
}
.btn--visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,146,42,0.4);
}
.btn--read {
  display: block;
  background: transparent;
  color: var(--gold-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  text-align: center;
  border: 1px solid var(--border-gold);
  transition: all var(--t-med);
}
.btn--read:hover {
  background: rgba(200,146,42,0.08);
  border-color: var(--gold);
}
.casino-entry__lic {
  text-align: center;
}
.casino-entry__lic-num {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-3);
  border: 1px solid rgba(19,160,160,0.25);
  background: rgba(19,160,160,0.06);
  padding: 4px 10px;
  border-radius: 4px;
}
.casino-entry__lic-link {
  display: block;
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-top: 6px;
  transition: color var(--t-fast);
  text-align: center;
}
.casino-entry__lic-link:hover { color: var(--teal-3); }
.casino-entry__tnc {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-muted-dark);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}

/* ── COMPARISON TABLE ───────────────────────────────── */
.compare {
  padding: 80px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
}
.compare__header { margin-bottom: 48px; }
.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-gold);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
}
.compare__table thead tr {
  background: var(--surface-3);
}
.compare__table th {
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
}
.compare__table td {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-light);
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover td { background: rgba(200,146,42,0.04); }
.compare__table tbody tr:nth-child(1) td:first-child {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--parchment);
}
.compare__table tbody tr:nth-child(2) td:first-child {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--parchment);
}
.ct-lic {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-3);
}

/* ── HOW WE RATE ────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--ink);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.how__item {
  padding: 40px 32px;
  background: var(--surface-2);
  position: relative;
  transition: background var(--t-med);
}
.how__item:hover { background: var(--surface-3); }
.how__num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: rgba(200,146,42,0.1);
  line-height: 1;
  margin-bottom: -10px;
  user-select: none;
}
.how__h {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 10px;
}
.how__b { font-size: 13px; color: var(--text-muted-dark); line-height: 1.65; }
.how__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.how__item:hover::after { transform: scaleX(1); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
}
.faq__list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq__item {
  background: var(--surface-2);
}
.faq__btn {
  width: 100%;
  display: flex; align-items: center;
  padding: 24px 32px;
  background: none; border: none;
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: color var(--t-fast), background var(--t-fast);
}
.faq__btn:hover { background: var(--surface-3); color: var(--gold-2); }
.faq__btn[aria-expanded="true"] { color: var(--gold-2); }
.faq__btn-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  opacity: 0.6;
  width: 24px;
  flex-shrink: 0;
}
.faq__btn-text { flex: 1; }
.faq__btn-ico {
  width: 24px; height: 24px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
  transition: transform var(--t-med), background var(--t-med);
}
.faq__btn[aria-expanded="true"] .faq__btn-ico {
  transform: rotate(45deg);
  background: rgba(200,146,42,0.12);
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out),
              padding var(--t-slow) var(--ease-out);
}
.faq__body.open {
  max-height: 300px;
}
.faq__body-inner {
  padding: 0 32px 24px 76px;
  font-size: 15px;
  color: var(--text-muted-dark);
  line-height: 1.72;
}

/* ── REVIEW PAGE ────────────────────────────────────── */
.review-hero {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 0 60px;
  overflow: hidden;
}
.review-hero::before {
  content: '';
  position: absolute; right: 0; inset-block: 0;
  width: 35%;
  background: var(--surface-2);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.review-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 15% 50%, rgba(139,26,43,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.review-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.review-hero__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transition: color var(--t-fast);
}
.review-hero__back:hover { color: var(--gold-2); }
.review-hero__eye {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--teal-3); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 12px;
}
.review-hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
}
.review-hero__meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.review-hero__lic-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--teal-3);
  border: 1px solid rgba(19,160,160,0.3);
  background: rgba(19,160,160,0.06);
  padding: 5px 14px; border-radius: 4px;
}
.review-hero__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.review-hero__score-card {
  background: var(--surface-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 32px 44px;
  text-align: center;
  min-width: 180px;
}
.review-hero__score-big {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
}
.review-hero__score-max { font-size: 24px; color: var(--text-muted-dark); }
.review-hero__score-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: 10px;
}
.review-hero__score-stars { color: var(--gold); font-size: 16px; margin-top: 6px; }

/* Tabs */
.review-tabs {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 72px; z-index: 50;
}
.review-tabs__inner {
  display: flex; gap: 0;
  overflow-x: auto;
}
.rtab {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-dark);
  background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.rtab:hover { color: var(--gold-2); }
.rtab.active {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}
.tab-panel { display: none; padding: 60px 0 80px; }
.tab-panel.active { display: block; }

/* Pros/Cons */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 32px 0;
}
.pros-box, .cons-box {
  background: var(--surface-2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.pros-box { border: 1px solid rgba(19,160,160,0.3); }
.cons-box { border: 1px solid rgba(139,26,43,0.4); }
.pros-box__h {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--teal-3); margin-bottom: 16px;
}
.cons-box__h {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--crimson-3); margin-bottom: 16px;
}
.pros-box ul, .cons-box ul {
  display: flex; flex-direction: column; gap: 10px;
}
.pros-box li::before { content: '✓  '; color: var(--teal-3); font-weight: 700; }
.cons-box li::before { content: '✗  '; color: var(--crimson-3); font-weight: 700; }
.pros-box li, .cons-box li { font-size: 14px; color: var(--text-muted-dark); line-height: 1.55; }

/* License block */
.lic-block {
  background: var(--surface-2);
  border: 1px solid rgba(19,160,160,0.3);
  border-left: 3px solid var(--teal-3);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  margin: 32px 0;
}
.lic-block__icon { font-size: 32px; flex-shrink: 0; }
.lic-block__h {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--teal-3); margin-bottom: 10px;
}
.lic-block__p { font-size: 14px; color: var(--text-muted-dark); line-height: 1.65; margin-bottom: 14px; }
.lic-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lic-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-3);
  background: rgba(19,160,160,0.08);
  border: 1px solid rgba(19,160,160,0.2);
  padding: 4px 12px; border-radius: 4px;
}
.lic-tag a { color: inherit; transition: opacity var(--t-fast); }
.lic-tag a:hover { opacity: 0.8; text-decoration: underline; }

/* Review content typography */
.rcontent h2 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 600;
  color: var(--cream); margin: 40px 0 16px;
}
.rcontent p { font-size: 15px; color: var(--text-muted-dark); line-height: 1.75; margin-bottom: 16px; }
.rcontent ul { padding-left: 20px; margin-bottom: 16px; }
.rcontent ul li { font-size: 14px; color: var(--text-muted-dark); margin-bottom: 8px; list-style: disc; }

/* Quick facts sidebar */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.review-sidebar {}
.sidebar-card {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 130px;
}
.sidebar-card__head {
  background: var(--surface-3);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.sidebar-card__body { padding: 20px 24px; }
.sstat { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.sstat:last-child { border-bottom: none; }
.sstat__l { font-size: 12px; color: var(--text-muted-dark); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.sstat__v { font-size: 14px; font-weight: 600; color: var(--parchment); }
.sidebar-card__cta { padding: 20px 24px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 10px; }
.sidebar-tnc { font-size: 10px; font-family: var(--font-mono); color: var(--text-muted-dark); text-align: center; }

/* ── LEGAL PAGES ────────────────────────────────────── */
.legal-page {
  padding: 80px 0 120px;
}
.legal-page__inner {
  max-width: 800px;
}
.legal-page__h1 {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 300; letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 8px;
}
.legal-page__h1 strong { font-weight: 700; font-style: italic; color: var(--gold-2); }
.legal-page__date {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted-dark); letter-spacing: 0.1em;
  margin-bottom: 48px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.legal-page__body h2 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--gold-2); margin: 40px 0 14px;
}
.legal-page__body p, .legal-page__body li {
  font-size: 15px; color: var(--text-muted-dark);
  line-height: 1.75; margin-bottom: 14px;
}
.legal-page__body ul { padding-left: 22px; }
.legal-page__body ul li { list-style: disc; }
.legal-alert {
  background: rgba(139,26,43,0.1);
  border: 1px solid rgba(139,26,43,0.3);
  border-left: 3px solid var(--crimson-2);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 14px; color: var(--text-muted-dark); line-height: 1.65;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 36px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.contact-card:hover {
  background: var(--surface-3);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-card strong {
  color: var(--parchment);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(31,26,21,0.97);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-deep);
  padding: 18px 20px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-on-dark);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner__text a {
  color: var(--teal-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-on-dark);
}
.cookie-banner__btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.cookie-banner__btn--gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}
.cookie-banner__btn--gold:hover { background: var(--gold-2); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer__rg {
  background: linear-gradient(105deg, rgba(19,160,160,0.1) 0%, rgba(139,26,43,0.08) 100%);
  border-top: 1px solid rgba(19,160,160,0.15);
  border-bottom: 1px solid rgba(19,160,160,0.15);
  padding: 40px 0;
}
.footer__rg-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.footer__rg-shield { font-size: 44px; flex-shrink: 0; }
.footer__rg-body { flex: 1; min-width: 240px; }
.footer__rg-h {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  color: var(--cream); margin-bottom: 8px;
}
.footer__rg-p { font-size: 13px; color: var(--text-muted-dark); line-height: 1.65; max-width: 520px; }
.footer__rg-cta {
  flex-shrink: 0;
  background: rgba(19,160,160,0.12);
  border: 1px solid rgba(19,160,160,0.35);
  color: var(--teal-3);
  font-size: 13px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--r-sm);
  transition: all var(--t-med);
}
.footer__rg-cta:hover { background: rgba(19,160,160,0.22); }

.footer__main {
  background: var(--surface-1);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--parchment); margin-bottom: 18px;
}
.footer__brand-logo em { font-style: normal; color: var(--gold-2); }
.footer__brand-logo svg { color: var(--gold); }
.footer__brand-desc { font-size: 13px; color: var(--text-muted-dark); line-height: 1.7; margin-bottom: 22px; }
.footer__age-wrap { display: flex; align-items: center; gap: 12px; }
.footer__age-badge {
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.footer__age-text { font-size: 12px; color: var(--text-muted-dark); font-family: var(--font-mono); }
.footer__heading {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-muted-dark);
  transition: color var(--t-fast);
  padding: 3px 0;
}
.footer__links a:hover { color: var(--parchment); }
.footer__lic {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--teal-3);
  background: rgba(19,160,160,0.08);
  border: 1px solid rgba(19,160,160,0.2);
  padding: 2px 7px; border-radius: 3px;
}
.footer__srij-block {
  display: flex; align-items: center; gap: 14px;
  background: rgba(19,160,160,0.08);
  border: 1px solid rgba(19,160,160,0.2);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: all var(--t-med);
  margin-top: 4px;
}
.footer__srij-block:hover { border-color: var(--teal-3); background: rgba(19,160,160,0.14); }
.footer__srij-icon { font-size: 28px; }
.footer__srij-text { display: flex; flex-direction: column; }
.footer__srij-text strong { font-size: 15px; color: var(--teal-3); }
.footer__srij-text small { font-size: 11px; color: var(--text-muted-dark); font-family: var(--font-mono); margin-top: 2px; }

/* Logos row */
.footer__logos {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.footer__logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-size: 12px; color: var(--text-muted-dark);
  text-decoration: none;
  transition: all var(--t-fast);
}
.footer__logo-pill:hover { border-color: rgba(200,146,42,0.3); color: var(--parchment); }
.footer__logo-pill img { height: 26px; width: auto; filter: grayscale(1) brightness(0.6); transition: filter var(--t-fast); }
.footer__logo-pill:hover img { filter: grayscale(0) brightness(1); }
.footer__logo-pill--age {
  background: rgba(139,26,43,0.12);
  border-color: rgba(139,26,43,0.3);
  color: #d0607a;
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
}

/* Bottom bar */
.footer__bottom {
  padding: 24px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--text-muted-dark); margin-bottom: 4px; }
.footer__disc { font-size: 11px; color: rgba(138,126,114,0.55); }
.footer__disc a { color: var(--teal-3); transition: opacity var(--t-fast); }
.footer__disc a:hover { opacity: 0.8; text-decoration: underline; }
.footer__bottom-links {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px;
}
.footer__bottom-links a { color: var(--text-muted-dark); transition: color var(--t-fast); }
.footer__bottom-links a:hover { color: var(--gold-2); }
.footer__bottom-links span { color: var(--border-light); }

/* ── UTILITY ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .casino-entry__body { grid-template-columns: 1fr; }
  .casino-entry__brand {
    flex-direction: row; padding: 24px 32px;
    border-right: none; border-bottom: 1px solid var(--border-light);
  }
  .casino-entry__cta {
    flex-direction: row; align-items: center;
    border-left: none; border-top: 1px solid var(--border-light);
    padding: 24px 32px;
  }
  .btn--visit, .btn--read { flex: 1; }
  .trust__grid { grid-template-columns: repeat(2,1fr); }
  .how__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero::before, .hero::after { display: none; }
  .hero__visual { padding-left: 0; }
  .hero__deco-line { display: none; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { display: none; }
}

@media (max-width: 768px) {
  .header__inner { gap: 14px; }
  .header__logo-name { font-size: 15px; }
  .header__logo-sub { font-size: 8px; }
  .header__nav {
    display: none;
    position: fixed; inset: 0; top: 110px;
    background: var(--ink-2);
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    z-index: 150;
    overflow-y: auto;
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav .nav__link {
    font-size: 18px; padding: 16px;
  }
  .nav__drop-panel {
    position: static; opacity: 1; visibility: visible;
    transform: none; background: var(--surface-3);
    margin-top: 4px;
    box-shadow: none;
  }
  .burger { display: flex; }
  .hero { min-height: auto; }
  .hero__inner { padding: 60px 0; gap: 40px; }
  .hero__h1 { font-size: 44px; }
  .hero__visual { display: none; }
  .hero__stats { gap: 20px; }
  .trust__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .casino-entry__topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .casino-entry__features { grid-template-columns: 1fr; }
  .review-hero__inner { grid-template-columns: 1fr; }
  .review-hero__score-card { display: none; }
  .footer__bottom { flex-direction: column; gap: 16px; }
  .footer__bottom-links { gap: 6px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions { justify-content: flex-end; }
}

@media (max-width: 480px) {
  .header__logo-mark { width: 30px; height: 30px; }
  .header__logo-name {
    font-size: 13px;
    max-width: 172px;
    overflow-wrap: anywhere;
  }
  .header__logo-sub { display: none; }
  .header__right { gap: 8px; }
  .lang-btn { padding: 4px 6px; font-size: 10px; }
  .header__age { display: none; }
  .footer__brand-logo { font-size: 18px; }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
