@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   BETSATLAS.COM — Stylesheet v4
   Design: Light / Professional — inspired by Cryptopuzzle.net
   Font: DM Sans (body) + Cormorant Garamond (headings)
   Accent: Orange #ff6b18  |  Base: White #ffffff
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Page backgrounds */
  --bg-base:       #ffffff;
  --bg-surface:    #f9fafb;
  --bg-elevated:   #f0f4f8;
  --bg-hover:      #e8edf3;
  --bg-input:      #0f172a;   /* nav bar + footer dark bg */

  /* Borders */
  --border:        #e5e7eb;
  --border-light:  rgba(15,23,42,0.04);
  --border-mid:    rgba(15,23,42,0.12);

  /* Text */
  --text:          #0f172a;
  --text-2:        #1e293b;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --white:         #ffffff;   /* used for text/headings on dark backgrounds */
  --black:         #0f172a;

  /* Brand — Orange */
  --orange:        #ff6b18;
  --orange-dark:   #e55a0e;
  --orange-glow:   rgba(255,107,24,0.15);
  --orange-light:  rgba(255,107,24,0.08);

  /* Semantic */
  --green:         #16a34a;
  --green-light:   rgba(22,163,74,0.08);
  --green-border:  rgba(22,163,74,0.20);
  --red:           #dc2626;
  --red-light:     rgba(220,38,38,0.08);
  --gold:          #d97706;
  --blue:          #2563eb;
  --blue-light:    rgba(37,99,235,0.08);
  --blue-mid:      rgba(37,99,235,0.20);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.10);
  --shadow-lg: 0 8px 40px rgba(15,23,42,0.14);
  --glow-orange: 0 0 20px rgba(255,107,24,0.15);

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;

  /* Layout */
  --max-w: 1160px;
  --gap:   0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- Typography --- */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #0f172a;
}
h3, h4, h5 {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { color: #64748b; line-height: 1.75; }

/* --- Layout Helpers --- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section     { padding: 56px 0; }
.section-sm  { padding: 32px 0; }
.section-xs  { padding: 18px 0; }

/* ============================================================
   NAVBAR — white, sticky, clean
   ============================================================ */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-xs);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

/* Logo */
.navbar__logo {
  font-size: 1.25rem; font-weight: 900;
  color: var(--text); display: flex; align-items: center; gap: 8px;
  letter-spacing: -.04em;
  text-decoration: none !important;
}
.navbar__logo img { height: 44px; width: auto; }
.navbar__logo .logo-text { display: flex; align-items: baseline; gap: 0; }
.navbar__logo .logo-casino   { color: var(--text); }
.navbar__logo .logo-compass  { color: var(--orange); }
.navbar__logo:hover { text-decoration: none; }

/* Nav links */
.navbar__nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.navbar__nav a {
  padding: 7px 13px; border-radius: var(--r-sm);
  font-weight: 500; font-size: 0.875rem; color: #374151;
  transition: all var(--gap);
}
.navbar__nav > li > a:hover,
.navbar__nav > li > a.active {
  background: var(--bg-surface); color: var(--text);
  text-decoration: none;
}
.navbar__nav > li > a.active { color: var(--orange); }

.navbar__right, .navbar__actions { display: flex; align-items: center; gap: 10px; }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown__trigger {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  transition: all var(--gap);
  white-space: nowrap;
}
.lang-dropdown__trigger:hover { background: var(--bg-elevated); color: var(--text); border-color: var(--border-mid); }
.lang-dropdown__trigger svg { width: 10px; height: 10px; transition: transform 0.2s; flex-shrink: 0; }
.lang-dropdown.open .lang-dropdown__trigger { border-color: var(--orange); color: var(--text); }
.lang-dropdown.open .lang-dropdown__trigger svg { transform: rotate(180deg); }
.lang-dropdown__menu {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: 4px;
  min-width: 130px;
  z-index: 999;
}
.lang-dropdown.open .lang-dropdown__menu { display: block; }
.lang-dropdown__item {
  display: block; width: 100%;
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit; font-size: 0.8rem; font-weight: 600;
  padding: 7px 12px;
  border-radius: 5px;
  text-align: left;
  transition: all 0.15s;
}
.lang-dropdown__item:hover { background: var(--bg-surface); color: var(--text); }
.lang-dropdown__item.active { color: var(--orange); }

/* Hamburger / burger */
.navbar__hamburger,
.navbar__burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; font-size: 1.3rem; color: var(--text); line-height: 1; }
.navbar__hamburger span {
  display: block; width: 22px; height: 2px;
  background: #374151; border-radius: 2px; margin: 4px 0;
  transition: background var(--gap);
}
.navbar__hamburger:hover span { background: var(--text); }

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */
.navbar__nav .has-dropdown { position: relative; }
.navbar__nav .has-dropdown::after {
  content: '';
  position: absolute; top: 100%; left: -16px; right: -16px;
  height: 14px; display: none; z-index: 301;
}
.navbar__nav .has-dropdown:hover::after { display: block; }

.navbar__nav .dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #ffffff;
  min-width: 210px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 6px 0;
  z-index: 300;
  animation: fadeDropdown .12s ease;
}
.navbar__nav .dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
@keyframes fadeDropdown { from { opacity: 0; } to { opacity: 1; } }
@media (hover: hover) and (pointer: fine) {
  .navbar__nav .has-dropdown:hover .dropdown { display: block; }
}
.navbar__nav .has-dropdown.open .dropdown { display: block; }

.navbar__nav .dropdown li { list-style: none; }
.navbar__nav .dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  font-size: 0.86rem; font-weight: 500;
  color: var(--text-2);
  white-space: nowrap; transition: all var(--gap);
}
.navbar__nav .dropdown a:hover {
  background: var(--bg-surface); color: var(--orange);
  text-decoration: none;
}
.navbar__nav .dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

.nav-arrow { font-size: 0.62rem; color: var(--text-light); transition: transform var(--gap); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-toggle { display: flex !important; align-items: center; gap: 5px; white-space: nowrap; }

/* Two-column Countries dropdown */
.dropdown--two-col {
  flex-direction: row; min-width: 460px; padding: 0; gap: 0;
}
.dropdown--three-col {
  flex-direction: row; min-width: 660px; padding: 0; gap: 0;
}
.dropdown--four-col {
  flex-direction: row; min-width: 880px; padding: 0; gap: 0;
}
@media (hover: hover) and (pointer: fine) {
  .navbar__nav .has-dropdown:hover .dropdown--two-col { display: flex; }
  .navbar__nav .has-dropdown:hover .dropdown--three-col { display: flex; }
  .navbar__nav .has-dropdown:hover .dropdown--four-col { display: flex; }
}
.navbar__nav .has-dropdown.open .dropdown--two-col { display: flex; }
.navbar__nav .has-dropdown.open .dropdown--three-col { display: flex; }
.navbar__nav .has-dropdown.open .dropdown--four-col { display: flex; }
.dropdown-col { flex: 1; padding: 6px 0; list-style: none; margin: 0; }
.dropdown-col + .dropdown-col { border-left: 1px solid var(--border); }
.dropdown-col__head {
  display: block; padding: 8px 18px 4px;
  font-size: 0.72rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.06em;
  pointer-events: none; user-select: none;
}

/* Sub-toggle (mobile) */
.sub-toggle { display: none; }
.sub-dropdown { display: none; }

/* Desktop: US States fly-out */
.navbar__nav .dropdown li.has-sub { position: relative; }
.navbar__nav .dropdown li.has-sub .sub-parent { display: flex; align-items: center; justify-content: space-between; }
.navbar__nav .dropdown li.has-sub .sub-parent a { flex: 1; }
.navbar__nav .dropdown li.has-sub .sub-parent::after {
  content: '›'; color: var(--text-light); font-size: 0.8rem; padding-right: 10px; pointer-events: none;
}
.navbar__nav .dropdown li.has-sub:hover .sub-dropdown {
  display: block; position: absolute; left: 100%; top: -6px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  min-width: 170px; padding: 6px 0; z-index: 300; list-style: none;
  animation: fadeDropdown .12s ease;
}
.navbar__nav .dropdown li.has-sub:hover .sub-dropdown li a {
  display: block; padding: 9px 16px; color: var(--text-muted);
  font-size: 0.85rem; text-decoration: none; border-radius: 0;
}
.navbar__nav .dropdown li.has-sub:hover .sub-dropdown li a:hover {
  color: var(--orange); background: var(--bg-surface);
}

/* ============================================================
   CRUKS / RESPONSIBLE GAMBLING NOTICE
   ============================================================ */
.cruks-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.cruks-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cruks-bar__left { display: flex; align-items: center; gap: 10px; font-size: 0.77rem; color: var(--text-light); }
.cruks-bar__left strong { color: var(--text-muted); font-weight: 600; }
.cruks-bar__icon { font-size: 1rem; flex-shrink: 0; }
.cruks-bar__right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cruks-bar__link {
  display: inline-flex; align-items: center; gap: 5px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 12px;
  font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--gap);
}
.cruks-bar__link:hover {
  background: var(--orange-light); border-color: var(--orange);
  color: var(--orange); text-decoration: none;
}
.cruks-bar__helpline { font-size: 0.74rem; color: var(--text-light); }
.cruks-bar__helpline strong { color: var(--text-muted); }

/* Inline responsible gaming block */
.resp-block {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-md); padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px; margin: 24px 0;
}
.resp-block__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.resp-block__text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.resp-block__text strong { color: var(--text-2); }
.resp-block__text a { color: var(--orange); font-weight: 600; }

/* ============================================================
   HERO — dark cinematic header (remains dark for visual impact)
   ============================================================ */
.hero {
  background-color: var(--bg-input); /* use background-color so inline background-image isn't overridden */
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,107,24,0.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero photo background (for pages that use it) */
.hero--photo {
  background-size: cover;
  background-position: center;
}
.hero--photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.20) 0%, rgba(15,23,42,0.05) 40%, rgba(15,23,42,0) 60%);
  z-index: 0;
}
.hero--photo .container { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.hero__eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.hero h1 { color: #ffffff; max-width: 700px; margin-bottom: 12px; }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 24px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px; flex-wrap: wrap;
}
.hero__stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,0.10); }
.hero__stat:last-child { border-right: none; }
.hero__stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: #ffffff; letter-spacing: -.03em; }
.hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.section-header { margin-bottom: 22px; }
.section-header h2 { margin-bottom: 6px; }
.section-header p { font-size: 0.92rem; max-width: 520px; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem;
  border-radius: 50px; padding: 10px 22px;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--gap); text-decoration: none !important;
  white-space: nowrap; letter-spacing: .01em;
}
.btn-primary { background: var(--orange); color: #ffffff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #ffffff; box-shadow: var(--glow-orange); }
.btn-dark { background: var(--text); color: #ffffff; border-color: var(--text); }
.btn-dark:hover { background: #1e293b; border-color: #1e293b; color: #ffffff; }
.btn-outline { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; padding: 10px 16px; }
.btn-ghost:hover { color: var(--text); background: var(--bg-surface); }
.btn-sm  { padding: 7px 16px; font-size: 0.8rem; }
.btn-lg  { padding: 13px 28px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* Primary CTA (affiliate button) */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: #ffffff;
  border: none; border-radius: 50px;
  padding: 11px 24px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: .02em;
  cursor: pointer;
  transition: background var(--gap), transform 0.12s, box-shadow var(--gap);
  text-decoration: none !important; white-space: nowrap;
}
.btn-cta:hover {
  background: var(--orange-dark); color: #ffffff;
  transform: translateY(-1px); box-shadow: var(--glow-orange); text-decoration: none;
}
.btn-cta.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-cta.btn-lg { padding: 14px 30px; font-size: 0.95rem; }

/* ============================================================
   TOP 10 COMPARISON LIST
   ============================================================ */
.rank-list { display: flex; flex-direction: column; gap: 10px; }

.rank-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 22px;
  display: grid; grid-template-columns: 44px 72px 1fr 160px 152px;
  align-items: center; gap: 20px;
  transition: border-color var(--gap), box-shadow var(--gap), transform var(--gap);
}
.rank-item:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.rank-item--top { border-left: 3px solid var(--orange); }
.rank-item--top:hover { border-color: var(--orange); box-shadow: var(--glow-orange); }

.rank-item__num { font-size: 1.5rem; font-weight: 900; color: #d1d5db; text-align: center; letter-spacing: -.04em; }
.rank-item__num.n1 { color: #d97706; }
.rank-item__num.n2 { color: #94a3b8; }
.rank-item__num.n3 { color: #a0704a; }

.rank-item__logo {
  width: 64px; height: 64px; background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; flex-shrink: 0;
}
.rank-item__info { min-width: 0; }
.rank-item__name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -.01em; }
.rank-item__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.rank-item__stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; }
.rank-item__score {
  font-size: 0.8rem; font-weight: 700; color: var(--text-2);
  background: var(--bg-surface); padding: 1px 7px; border-radius: 20px;
  border: 1px solid var(--border);
}
.rank-item__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.rank-item__tags { display: flex; gap: 5px; flex-wrap: wrap; }

/* Tags */
.tag {
  font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-muted); background: var(--bg-surface); white-space: nowrap;
}
.tag-green  { border-color: var(--green-border); color: var(--green); background: var(--green-light); }
.tag-blue   { border-color: var(--blue-mid);     color: var(--blue);  background: var(--blue-light); }
.tag-orange { border-color: rgba(255,107,24,.25); color: var(--orange); background: var(--orange-light); }

.rank-item__bonus { text-align: left; }
.rank-item__bonus-amount { font-size: 0.95rem; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 3px; }
.rank-item__bonus-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.rank-item__cta { text-align: right; }
.rank-item__disclaimer { font-size: 0.67rem; color: var(--text-light); text-align: center; margin-top: 5px; }

.rank-item__proscons {
  display: none; grid-column: 3 / -1;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: 12px;
}
.rank-item__proscons.open { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rank-item__toggle {
  font-size: 0.75rem; font-weight: 600; color: var(--orange); cursor: pointer;
  background: none; border: none; padding: 0; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li { font-size: 0.8rem; color: var(--text-muted); padding-left: 16px; position: relative; margin-bottom: 4px; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-bar__label { font-size: 0.8rem; font-weight: 700; color: var(--text-2); margin-right: 4px; }
.filter-pill {
  background: #ffffff; border: 1px solid var(--border); border-radius: 20px;
  padding: 5px 14px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--gap); font-family: inherit;
}
.filter-pill:hover { border-color: var(--orange); color: var(--orange); }
.filter-pill.active { background: var(--orange); color: #ffffff; border-color: var(--orange); }

/* ============================================================
   BONUS TABLE
   ============================================================ */
.bonus-table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); }
.bonus-table { width: 100%; border-collapse: collapse; background: #ffffff; }
.bonus-table thead { background: var(--bg-surface); }
.bonus-table th {
  padding: 12px 16px; text-align: left;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.bonus-table td { padding: 15px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text-2); }
.bonus-table tbody tr:last-child td { border-bottom: none; }
.bonus-table tbody tr:hover { background: var(--bg-surface); }
.bonus-table .hl { font-weight: 700; color: var(--text); }
.badge { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 2px 7px; border-radius: 4px; border: 1px solid; }
.badge-green  { background: var(--green-light); color: var(--green); border-color: var(--green-border); }
.badge-orange { background: var(--orange-light); color: var(--orange); border-color: rgba(255,107,24,.25); }
.badge-blue   { background: var(--blue-light); color: var(--blue); border-color: var(--blue-mid); }

/* ============================================================
   CASINO CARDS / CATEGORY CARDS
   ============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.category-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px 20px; text-align: center; cursor: pointer;
  transition: all var(--gap); text-decoration: none !important;
}
.category-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-md);
  transform: translateY(-2px); text-decoration: none;
}
.category-card__icon  { font-size: 2rem; margin-bottom: 10px; }
.category-card__title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.category-card__desc  { font-size: 0.8rem; color: var(--text-muted); }
.category-card__count { display: inline-block; margin-top: 10px; font-size: 0.75rem; font-weight: 700; color: var(--orange); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.blog-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all var(--gap);
}
.blog-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__img {
  height: 148px; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; background: var(--bg-elevated);
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 18px; }
.blog-card__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px; }
.blog-card__title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.35; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--orange); text-decoration: none; }
.blog-card__excerpt { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; }
.blog-card__meta { display: flex; justify-content: space-between; }
.blog-card__date { font-size: 0.75rem; color: var(--text-light); }
.blog-card__read { font-size: 0.75rem; font-weight: 600; color: var(--orange); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 24px 0 20px;
}
.page-header h1 { margin-bottom: 8px; }
.page-header p  { font-size: 0.95rem; max-width: 600px; }

.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.breadcrumb a { color: var(--orange); font-weight: 500; }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb span { color: var(--text-light); }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.article-body {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; min-width: 0;
}
.article-body h2 { margin: 32px 0 12px; font-size: 1.5rem; color: var(--text); }
.article-body h3 { margin: 24px 0 10px; font-size: 1.1rem; color: var(--text); }
.article-body p  { margin-bottom: 16px; line-height: 1.75; font-size: 0.95rem; color: var(--text-muted); }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { margin-bottom: 7px; font-size: 0.92rem; color: var(--text-muted); }
.article-body a { color: var(--orange); }
.article-body a:hover { color: var(--orange-dark); }

/* Article photo (inline image in content) */
.article-photo {
  border-radius: var(--r-lg); overflow: hidden;
  margin: 28px 0; border: 1px solid var(--border);
}
.article-photo img { width: 100%; height: 240px; object-fit: cover; object-position: center; }
.article-photo figcaption {
  padding: 10px 16px; font-size: 0.78rem; color: var(--text-light);
  background: var(--bg-surface); border-top: 1px solid var(--border);
  font-style: italic;
}

.tip-box {
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  border-radius: var(--r-md); padding: 16px 18px; margin: 20px 0;
}
.tip-box strong { color: var(--blue); }
.warn-box {
  background: var(--orange-light); border: 1px solid rgba(255,107,24,.2);
  border-radius: var(--r-md); padding: 16px 18px; margin: 20px 0;
}
.warn-box strong { color: var(--orange); }

.article-sidebar { position: sticky; top: 72px; }
.sidebar-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; margin-bottom: 16px;
}
.sidebar-card h4 { margin-bottom: 12px; font-size: 0.9rem; color: var(--text); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-strip__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.trust-item__icon { font-size: 1.1rem; }

/* ============================================================
   DIVIDER, UTILS
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }
.text-center { text-align: center; }
.mt-4  { margin-top: 4px; }  .mt-8  { margin-top: 8px; }   .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; }  .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-4  { margin-bottom: 4px; } .mb-8  { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 36px; }
.page-btn {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: #ffffff;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; transition: all var(--gap);
}
.page-btn:hover, .page-btn.active { background: var(--orange); color: #ffffff; border-color: var(--orange); }

/* ============================================================
   FOOTER — dark, professional
   ============================================================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.50);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-logo {
  font-size: 1.15rem; font-weight: 900; letter-spacing: -.03em;
  color: #ffffff; display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.footer__brand-logo img.site-logo { height: 38px; width: auto; filter: brightness(0) invert(1); }
.footer__brand-logo .logo-casino  { color: #ffffff; }
.footer__brand-logo .logo-compass { color: var(--orange); }
.footer__brand p { font-size: 0.83rem; line-height: 1.65; max-width: 280px; color: rgba(255,255,255,0.45); }
.footer__col h5 {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 9px; }
.footer__col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--gap); }
.footer__col a:hover { color: #ffffff; text-decoration: none; }

.footer__cruks {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 12px 16px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.footer__cruks-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer__cruks-text { font-size: 0.78rem; line-height: 1.65; color: rgba(255,255,255,0.40); }
.footer__cruks-text strong { color: rgba(255,255,255,0.60); }
.footer__cruks-text a { color: var(--orange); font-weight: 600; }
.footer__cruks-text a:hover { color: #ff8c4a; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.30); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__legal a:hover { color: rgba(255,255,255,0.70); text-decoration: none; }

/* ============================================================
   COUNTRY / STATE CARDS
   ============================================================ */
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin-top: 18px; }
.country-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 20px 22px; transition: all var(--gap);
  display: flex; flex-direction: column; gap: 9px; text-decoration: none !important;
}
.country-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-md);
  transform: translateY(-2px); text-decoration: none;
}
.country-card__flag  { font-size: 2.4rem; line-height: 1; }
.country-card__name  { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.country-card__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}
.status-legal   { background: var(--green-light); color: var(--green); }
.status-partial { background: rgba(217,119,6,.10);  color: #b45309; }
.status-varies  { background: var(--orange-light); color: var(--orange); }
.country-card__desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }
.country-card__cta { margin-top: auto; font-size: 0.82rem; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   TOPIC CARDS
   ============================================================ */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 32px; }
.topic-card {
  background-color: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 18px; text-align: center; transition: all var(--gap); text-decoration: none !important;
  position: relative; overflow: hidden;
}
.topic-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-md);
  transform: translateY(-2px); text-decoration: none;
}
.topic-card__icon  { font-size: 1.8rem; margin-bottom: 10px; }
.topic-card__title { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.topic-card__sub   { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   INFO TABLE
   ============================================================ */
.info-table {
  width: 100%; border-collapse: collapse; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border); font-size: 0.88rem; margin-top: 24px;
}
.info-table th {
  background: var(--bg-surface); color: var(--text-muted);
  padding: 12px 16px; text-align: left; font-weight: 700;
  font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase;
}
.info-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--bg-surface); }
.badge-yes     { display:inline-block; background:rgba(74,222,128,.12); color:#4ade80; border-radius:6px; padding:2px 8px; font-size:.75rem; font-weight:700; }
.badge-no      { display:inline-block; background:rgba(248,113,113,.12); color:#f87171; border-radius:6px; padding:2px 8px; font-size:.75rem; font-weight:700; }
.badge-partial { display:inline-block; background:rgba(251,191,36,.12); color:#fbbf24; border-radius:6px; padding:2px 8px; font-size:.75rem; font-weight:700; }
.badge-part    { color: var(--gold); font-weight: 700; }

/* Data table (guide/article pages) */
.data-table { width:100%; border-collapse:collapse; margin:20px 0; font-size:.88rem; }
.data-table th { background:var(--bg-elevated); color:var(--text); font-weight:800; padding:10px 12px; text-align:left; border-bottom:2px solid var(--border-mid); }
.data-table td { padding:10px 12px; border-bottom:1px solid var(--border-mid); color:var(--text-muted); vertical-align:top; }
.data-table tr:hover td { background:var(--bg-elevated); }
.table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; margin:20px 0; }

/* FAQ accordion */
.faq-item { border:1px solid var(--border); border-radius:10px; padding:16px; margin-bottom:10px; }
.faq-item summary { font-weight:700; cursor:pointer; color:var(--text); list-style:none; }
.faq-item summary::before { content:'+ '; color:var(--orange); }
.faq-item[open] summary::before { content:'− '; }
.faq-item p { margin-top:10px; color:var(--text-muted); line-height:1.7; margin-bottom:0; }

/* ============================================================
   OPERATOR CARDS (op-card)
   ============================================================ */
.op-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.op-card {
  display: flex; align-items: center; gap: 16px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 20px; transition: all var(--gap);
}
.op-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.op-card__rank { font-size: 0.75rem; font-weight: 900; color: var(--text-light); width: 24px; text-align: center; flex-shrink: 0; }
.op-card__logo { font-size: 1.6rem; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 6px; }
.op-card__logo img { width: 44px; height: 44px; object-fit: cover; object-position: top center; border-radius: 6px; display: block; }
.op-card__info { flex: 1; }
.op-card__name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.op-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.op-card__bonus { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.op-card__cta {
  background: var(--orange); color: #ffffff;
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.83rem; font-weight: 700; white-space: nowrap;
  text-decoration: none !important; transition: background var(--gap), box-shadow var(--gap);
}
.op-card__cta:hover { background: var(--orange-dark); text-decoration: none; box-shadow: var(--glow-orange); color: #ffffff; }

/* ============================================================
   TWO-COLUMN CONTENT LAYOUT
   ============================================================ */
.content-cols { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.content-sidebar { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-box {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.sidebar-box h4 { margin-bottom: 12px; font-size: 0.9rem; color: var(--text); }
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sidebar-box ul li a { font-size: 0.84rem; color: var(--text-muted); font-weight: 500; }
.sidebar-box ul li a:hover { color: var(--orange); }

/* ============================================================
   PAGE HERO (article page header)
   ============================================================ */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 90% 50%, rgba(255,107,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Photo-backed page hero */
.page-hero--photo {
  background-size: cover; background-position: center;
  padding: 64px 0 56px;
}
.page-hero--photo::before {
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0) 80%);
  z-index: 0;
}
.page-hero--photo { border-bottom: none; }
.page-hero--photo .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--text); margin: 12px 0 16px; }
.page-hero p  { color: var(--text-muted); max-width: 640px; }

/* Photo hero text overrides — must come AFTER .page-hero h1/p to win specificity tie */
.page-hero.page-hero--photo h1 { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.page-hero.page-hero--photo p  { color: rgba(255,255,255,0.80) !important; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.page-hero--photo .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero--photo .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero--photo .page-hero__badge { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.80); }
.page-hero__meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 14px;
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
}

/* ============================================================
   GAME CARDS / FEATURE TILES
   ============================================================ */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 20px; }
.game-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all var(--gap); text-decoration: none !important;
  display: flex; flex-direction: column;
}
.game-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.game-card__thumb {
  height: 110px; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.15) 100%);
}
.game-card__rank-badge {
  position: absolute; top: 8px; left: 8px; background: var(--orange); color: #ffffff;
  font-size: 0.65rem; font-weight: 900; padding: 2px 7px; border-radius: 20px;
  z-index: 1; letter-spacing: .04em;
}
.game-card__body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.game-card__name { font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.game-card__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.game-card__bonus { font-size: 0.8rem; font-weight: 700; color: var(--orange); margin-top: auto; padding-top: 4px; }
.game-card__cta {
  display: block; width: 100%; background: var(--orange); color: #ffffff;
  border: none; border-radius: var(--r-sm); padding: 9px;
  font-size: 0.82rem; font-weight: 700; text-align: center; cursor: pointer;
  transition: background var(--gap), box-shadow var(--gap); text-decoration: none !important;
}
.game-card__cta:hover { background: var(--orange-dark); box-shadow: var(--glow-orange); color: #ffffff; }

/* ============================================================
   CATEGORY TABS
   ============================================================ */
.cat-tabs { display: flex; align-items: center; gap: 6px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0; padding: 7px 16px; background: #ffffff; border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--gap); white-space: nowrap; font-family: inherit;
}
.cat-tab:hover { border-color: var(--orange); color: var(--orange); }
.cat-tab.active { background: var(--orange); border-color: var(--orange); color: #ffffff; }

/* Section variants */
.section--dark    { background: #0f172a; }
.section--surface { background: var(--bg-surface); }
.section--deep    { background: var(--bg-elevated); }

/* ============================================================
   RESPONSIVE — Tablet, Mobile, Small Phone
   ============================================================ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); }
.info-table, .bonus-table { min-width: 480px; }

/* --- Tablet: up to 960px --- */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .rank-item { grid-template-columns: 36px 56px 1fr; gap: 14px; }
  .rank-item__bonus { display: none; }
  .rank-item__cta { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
  .rank-item .btn-cta { width: 100%; }
  .content-cols { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  /* Compact nav so all items fit on smaller desktops */
  .navbar__nav { gap: 0; }
  .navbar__nav > li > a { padding: 6px 7px; font-size: 0.8rem; }
}

/* --- Small desktop / large tablet: 841–960px — show full nav, compact --- */
@media (max-width: 840px) {
  .navbar__inner { height: 58px; }
  .navbar__nav { display: none; }
  .navbar__hamburger, .navbar__burger { display: block; }
  .navbar__nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 58px; left: 0; right: 0;
    background: #ffffff; border-bottom: 1px solid var(--border);
    padding: 12px; gap: 2px; box-shadow: var(--shadow-lg); z-index: 200;
  }
  .navbar__nav.open > li > a { padding: 11px 14px; font-size: 0.9rem; }
  .navbar__nav.open .has-dropdown.open .dropdown {
    display: block; position: static; box-shadow: none; border: none;
    background: var(--bg-surface); border-radius: var(--r-md);
    margin: 4px 0 4px 12px; animation: none; padding: 4px 0;
  }
  .navbar__nav.open .has-dropdown.open .dropdown--two-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--three-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--three-col .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--border); }
  .navbar__nav.open .has-dropdown.open .dropdown--four-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--four-col .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--border); }
  .navbar__nav.open .has-dropdown.open .dropdown--two-col .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--border); }
  .navbar__nav.open .has-dropdown.open .dropdown a { padding: 9px 16px; font-size: 0.85rem; }
  .navbar__nav.open .nav-us-states { display: none; }
}

/* --- Mobile: up to 720px --- */
@media (max-width: 720px) {
  .container { padding: 0 16px; }
  body { font-size: 14px; }
  .section    { padding: 40px 0; }
  .section-sm { padding: 28px 0; }
  .section-xs { padding: 18px 0; }

  /* Navbar: hamburger */
  .navbar__inner { height: 58px; }
  .navbar__nav { display: none; }
  .navbar__hamburger, .navbar__burger { display: block; }
  .navbar__nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 58px; left: 0; right: 0;
    background: #ffffff; border-bottom: 1px solid var(--border);
    padding: 12px; gap: 2px; box-shadow: var(--shadow-lg); z-index: 200;
  }
  .navbar__nav.open > li > a { padding: 11px 14px; font-size: 0.9rem; }
  .navbar__nav.open .has-dropdown.open .dropdown {
    display: block; position: static; box-shadow: none; border: none;
    background: var(--bg-surface); border-radius: var(--r-md);
    margin: 4px 0 4px 12px; animation: none; padding: 4px 0;
  }
  .navbar__nav.open .has-dropdown.open .dropdown--two-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--three-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--three-col .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--border); }
  .navbar__nav.open .has-dropdown.open .dropdown--four-col { flex-direction: column; min-width: 0; }
  .navbar__nav.open .has-dropdown.open .dropdown--four-col .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--border); }
  .navbar__nav.open .has-dropdown.open .dropdown--two-col .dropdown-col + .dropdown-col {
    border-left: none; border-top: 1px solid var(--border);
  }
  .navbar__nav.open .has-dropdown.open .dropdown a { padding: 9px 16px; font-size: 0.85rem; }
  .navbar__nav.open .nav-us-states { display: none; }

  /* Mobile sub-dropdown */
  .sub-toggle {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 0.65rem; padding: 4px 6px;
    transition: transform 0.2s; line-height: 1; vertical-align: middle;
  }
  .has-sub.open .sub-toggle { transform: rotate(180deg); color: var(--orange); }
  .sub-parent { display: flex; align-items: center; }
  .sub-parent a { flex: 1; }
  .sub-dropdown {
    display: none; list-style: none;
    margin: 2px 0 4px 28px; padding: 0;
    border-left: 2px solid var(--border);
    max-height: 280px; overflow-y: auto;
  }
  .has-sub.open .sub-dropdown { display: block; }
  .sub-dropdown li a {
    display: block; padding: 7px 14px;
    font-size: 0.82rem; color: var(--text-muted);
    text-decoration: none; border-radius: var(--r-sm);
  }
  .sub-dropdown li a:hover { color: var(--orange); background: var(--bg-surface); }

  /* Hero */
  .hero { padding: 28px 0 22px; }
  .hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn, .hero__actions .btn-cta { width: 100%; justify-content: center; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding-top: 20px; }
  .hero__stat { padding: 12px 16px 12px 0; margin: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .hero__stat:nth-child(even) { padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.10); }
  .hero__stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Page hero */
  .page-hero { padding: 32px 0 24px; }
  .page-hero__meta { gap: 8px; }
  .page-hero__badge { font-size: 0.72rem; padding: 3px 10px; }

  /* Rank list */
  .rank-item { grid-template-columns: 28px 44px 1fr; padding: 12px; gap: 10px; }
  .rank-item__logo { width: 44px; height: 44px; font-size: 1.3rem; }
  .rank-item__bonus { display: none; }
  .rank-item__cta { grid-column: 1 / -1; text-align: center; margin-top: 6px; }
  .rank-item .btn-cta { width: 100%; }
  .rank-item__num { font-size: 1.2rem; }

  .op-card { flex-wrap: wrap; gap: 12px; }
  .op-card__cta { width: 100%; text-align: center; }

  .game-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .country-grid { grid-template-columns: 1fr; }
  .topic-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid    { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .info-table-wrap, .bonus-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); }
  .info-table  { min-width: 480px; }
  .bonus-table { min-width: 560px; }

  .article-body { padding: 22px 16px; }
  .article-body h2 { font-size: 1.35rem; }
  .article-body h3 { font-size: 1rem; }

  .footer { padding: 40px 0 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__legal { flex-wrap: wrap; gap: 12px; }
  .footer__cruks { flex-direction: column; gap: 8px; }

  .trust-strip__inner { gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
  .cruks-bar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cruks-bar__right { flex-wrap: wrap; gap: 8px; }
  .filter-bar { gap: 6px; }
  .filter-pill { padding: 5px 12px; font-size: 0.78rem; }
  .content-sidebar, .article-sidebar { position: static; }
  .section-header { margin-bottom: 22px; }
}

/* --- Small phones: up to 480px --- */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .navbar__logo img { height: 38px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.10); padding-left: 0 !important; }
  .hero__stat:last-child { border-bottom: none; }
  .rank-item { grid-template-columns: 24px 40px 1fr; padding: 10px; gap: 8px; }
  .rank-item__logo { width: 40px; height: 40px; font-size: 1.1rem; }
  .rank-item__name { font-size: 0.85rem; }
  .rank-item__desc { display: none; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .game-card__thumb { height: 80px; font-size: 2.2rem; }
  .country-card { padding: 18px 16px; }
  .country-card__name { font-size: 1rem; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .btn-lg { padding: 11px 18px; font-size: 0.88rem; }
  .btn-cta.btn-lg { padding: 12px 20px; }
  .cat-tab { padding: 9px 16px; font-size: 0.82rem; }
  .page-hero { padding: 24px 0 20px; }
  .footer__legal { gap: 10px; }
}

/* ============================================================
   HOMEPAGE GRID LAYOUTS — mobile overrides for inline-styled grids
   ============================================================ */
@media (max-width: 768px) {
  #main-two-col,
  #map-articles-grid { grid-template-columns: 1fr !important; }
  #news-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  #news-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   CASINO COMPARISON CARDS (ci)
   ============================================================ */
.compare-list { display: flex; flex-direction: column; gap: 16px; }

.ci {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--r-xl);
  display: grid; grid-template-columns: 60px 130px 1fr 230px;
  overflow: hidden; transition: border-color .18s, box-shadow .18s, transform .18s; position: relative;
}
.ci:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ci--top { border-left: 4px solid var(--orange); }

.ci__rank {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--text-light); background: var(--bg-surface); border-right: 1px solid var(--border); padding: 0 4px;
}
.ci__rank--1 { color: #d97706; font-size: 1.3rem; }
.ci__rank--2 { color: #94a3b8; }
.ci__rank--3 { color: #c87941; }

.ci__logo {
  display: flex; align-items: center; justify-content: center;
  background: #ffffff; border-right: 1px solid var(--border);
  font-size: 3.6rem; min-height: 110px; flex-shrink: 0; padding: 12px; position: relative;
}
.ci__logo img { width: auto; height: auto; max-width: 106px; max-height: 80px; object-fit: contain; display: block; }
.wi__shot {
  width: 84px; height: 56px; flex-shrink: 0;
  object-fit: cover; object-position: center top;
  border-radius: 8px; border: 1px solid var(--border); background: var(--bg-surface);
}
@media (max-width: 480px) { .wi__shot { width: 64px; height: 44px; } }

.ci__body { padding: 20px 26px; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.ci__header { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ci__name { font-size: 1.55rem; font-weight: 900; color: var(--text); letter-spacing: -.035em; line-height: 1.1; }
.ci__name-link { color: inherit; text-decoration: none; transition: color .15s; }
.ci__name-link:hover { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.wi__name-link { color: inherit; text-decoration: none; transition: color .15s; }
.wi__name-link:hover { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.ci__rating { display: flex; align-items: center; gap: 8px; }
.ci__stars { color: #d97706; font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.ci__score {
  background: var(--bg-surface); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.82rem; font-weight: 800; padding: 3px 11px; border-radius: 999px;
}
.ci__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ci__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.ci__pros { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 2px; }
.ci__pros span {
  font-size: 0.8rem; font-weight: 600; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 5px;
}
.ci__pros span::before {
  content: '✓'; color: var(--green); font-weight: 900; font-size: 0.72rem;
  width: 14px; height: 14px; background: var(--green-light); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.ci__offer {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 20px 24px;
  background: linear-gradient(160deg, var(--bg-surface) 0%, rgba(255,107,24,0.04) 100%);
  border-left: 1px solid var(--border); text-align: center;
}
.ci__bonus-box {
  background: rgba(255,107,24,0.08); border: 1px solid rgba(255,107,24,0.20);
  border-radius: var(--r-md); padding: 10px 16px; width: 100%;
}
.ci__bonus { font-size: 1.15rem; font-weight: 900; color: var(--orange); letter-spacing: -.02em; line-height: 1.2; }
.ci__bonus-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.ci__cta {
  display: block; width: 100%; background: var(--orange); color: #ffffff !important;
  border-radius: 50px; padding: 13px 20px; font-size: 0.92rem; font-weight: 700;
  text-align: center; text-decoration: none !important; letter-spacing: .01em;
  transition: background .15s, box-shadow .15s, transform .12s; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,107,24,0.25);
}
.ci__cta:hover { background: var(--orange-dark); box-shadow: 0 6px 20px rgba(255,107,24,0.35); transform: translateY(-1px); color: #ffffff !important; text-decoration: none !important; }
.ci__disclaimer { font-size: 0.67rem; color: var(--text-light); line-height: 1.4; }

@media (max-width: 960px) {
  .ci { grid-template-columns: 50px 110px 1fr; }
  .ci__offer {
    grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center;
    border-left: none; border-top: 1px solid var(--border); padding: 14px 20px; gap: 16px;
  }
  .ci__bonus-box { flex: 1; }
  .ci__cta { width: auto; padding: 12px 28px; }
}
@media (max-width: 720px) {
  .ci { grid-template-columns: 40px 90px 1fr; }
  .ci__name { font-size: 1.25rem; }
  .ci__logo { font-size: 2.8rem; min-height: 90px; }
  .ci__body { padding: 14px 16px; }
  .ci__pros { gap: 10px; }
  .ci__offer { flex-direction: column; align-items: stretch; }
  .ci__cta { width: 100%; }
}
@media (max-width: 480px) {
  .ci { grid-template-columns: 36px 80px 1fr; }
  .ci__name { font-size: 1.1rem; }
  .ci__logo { font-size: 2.4rem; min-height: 80px; }
  .ci__body { padding: 12px 12px; gap: 6px; }
  .ci__desc { display: none; }
  .ci__rating { flex-wrap: wrap; }
}

/* ============================================================
   ARTICLE HERO & PAGE HEADER SPLIT LAYOUT
   ============================================================ */
.article-hero__inner, .page-header__inner, .page-hero__inner {
  display: grid; grid-template-columns: 1fr 280px; gap: 36px; align-items: center;
}
.article-hero__svg, .page-header__svg, .page-hero__svg {
  display: flex; justify-content: center; align-items: center; opacity: .95;
}
@media (max-width: 820px) {
  .article-hero__inner, .page-header__inner, .page-hero__inner { grid-template-columns: 1fr; }
  .article-hero__svg, .page-header__svg, .page-hero__svg { display: none !important; visibility: hidden !important; width: 0; height: 0; overflow: hidden; }
}

/* ============================================================
   VISUAL CARD (in-article)
   ============================================================ */
.visual-card {
  border-radius: 16px; overflow: hidden; margin: 32px 0;
  background: #ffffff; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0; min-height: 200px;
}
.visual-card__img {
  width: 280px; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; padding: 20px; background: var(--bg-elevated);
}
.visual-card__body { padding: 24px 28px; flex: 1; }
.visual-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0 0 8px; letter-spacing: -.02em; }
.visual-card__text  { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.visual-card__stat  { font-size: 2rem; font-weight: 900; color: var(--orange); letter-spacing: -.04em; margin: 12px 0 4px; }
.visual-card__stat-label { font-size: .78rem; color: var(--text-light); letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 640px) {
  .visual-card { flex-direction: column; }
  .visual-card__img { width: 100%; min-height: 160px; }
}

/* ============================================================
   SCREENSHOT FRAME
   ============================================================ */
.screenshot-frame {
  margin: 28px 0; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-surface); position: relative;
}
.screenshot-frame__img { display: block; width: 100%; height: auto; max-height: 380px; object-fit: cover; object-position: top; }
.screenshot-frame__img[src=""] { display: none; }
.screenshot-frame__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 24px; text-align: center; gap: 12px; min-height: 200px;
}
.screenshot-frame__img:not([src=""])+.screenshot-frame__placeholder { display: none; }
.screenshot-frame__icon { font-size: 2.4rem; opacity: .5; }
.screenshot-frame__label { font-size: .95rem; font-weight: 700; color: var(--text-2); opacity: .7; }
.screenshot-frame__hint { font-size: .78rem; color: var(--text-light); line-height: 1.6; max-width: 400px; }
.screenshot-frame__hint code { background: var(--orange-light); color: var(--orange); padding: 1px 6px; border-radius: 4px; font-size: .75rem; }
.screenshot-frame__bar {
  background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
}
.screenshot-frame__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.screenshot-frame__url { font-size: .72rem; color: var(--text-light); font-family: monospace; }
@media (max-width: 640px) {
  .screenshot-frame__placeholder { padding: 32px 16px; min-height: 140px; }
  .screenshot-frame__icon { font-size: 1.8rem; }
}

/* ============================================================
   OPERATOR WARNING BANNERS
   ============================================================ */
.op-warning { border-radius: 12px; padding: 18px 22px; margin: 0 0 24px; display: flex; gap: 14px; align-items: flex-start; font-size: .88rem; line-height: 1.65; }
.op-warning--danger  { background: rgba(220,38,38,.06); border: 1px solid rgba(220,38,38,.25); border-left: 4px solid #dc2626; }
.op-warning--warning { background: rgba(217,119,6,.06); border: 1px solid rgba(217,119,6,.25); border-left: 4px solid #d97706; }
.op-warning__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.op-warning__title { font-weight: 700; font-size: .9rem; margin-bottom: 5px; }
.op-warning--danger .op-warning__title  { color: #b91c1c; }
.op-warning--warning .op-warning__title { color: #b45309; }
.op-warning__text    { color: var(--text-muted); margin-bottom: 6px; }
.op-warning__verdict { color: var(--text-2); font-weight: 600; }
.op-warning__licence { display: inline-block; font-size: .72rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; margin-bottom: 8px; }
.op-warning--danger .op-warning__licence  { background: rgba(220,38,38,.10); color: #b91c1c; }
.op-warning--warning .op-warning__licence { background: rgba(217,119,6,.10); color: #b45309; }

/* ============================================================
   AUTHOR BYLINE (E-E-A-T)
   ============================================================ */
.author-byline {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 18px;
  margin: 32px 0 48px;
}
.author-byline__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elevated); border: 2px solid var(--border);
  flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.author-byline__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-byline__info { flex: 1; }
.author-byline__name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.author-byline__title { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }
.author-byline__date  { font-size: 0.75rem; color: var(--text-light); margin-top: 3px; }

/* ============================================================
   GEO-PERSONALIZED SECTIONS (keep as-is — JS controls these)
   ============================================================ */
[data-geo-block] { }

/* ============================================================
   ALSO CARD (in-article related links)
   ============================================================ */
.also-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-left: 3px solid var(--orange);
  border-radius: var(--r-md); padding: 14px 18px; margin: 20px 0;
  display: flex; align-items: center; gap: 10px;
}
.also-card a { font-weight: 600; color: var(--orange); font-size: 0.9rem; }
.also-card a:hover { color: var(--orange-dark); }
.also-card__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }

/* ============================================================
   PAGE PHOTO HERO — photo strip at top of content pages
   ============================================================ */
.content-photo-hero {
  width: 100%; height: 280px; overflow: hidden; position: relative;
  border-radius: 0 0 var(--r-xl) var(--r-xl); margin-bottom: 0;
}
.content-photo-hero img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.content-photo-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,23,42,0.15) 100%);
}
@media (max-width: 720px) { .content-photo-hero { height: 200px; } }

/* ============================================================
   SECTION ALTERNATING BG (for visual rhythm)
   ============================================================ */
.section:nth-child(even) { background: var(--bg-surface); }
/* Override for explicit section variants */
.section--dark, .section.section--dark { background: #0f172a; }
.section--surface, .section.section--surface { background: var(--bg-surface); }
.section--deep, .section.section--deep { background: var(--bg-elevated); }

/* ============================================================
   MISC UTILITY CLASSES
   ============================================================ */
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted); }
.font-bold   { font-weight: 700; }
.hidden      { display: none !important; }

/* Lang switcher container in navbar */
.lang-switcher { display: flex; align-items: center; }


/* ============================================================
   DARK SECTION OVERRIDES — ensure text is white on dark bg
   ============================================================ */
.section--dark,
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5 {
  color: #ffffff;
}
.section--dark p, .section--dark span, .section--dark li,
.section--dark label, .section--dark small {
  color: rgba(255,255,255,0.70);
}
.section--dark a { color: var(--orange); }
.section--dark a:hover { color: #ff8c4a; }

/* WK card + operator panel have light backgrounds inside dark section — reset to dark text */
.wk-card { color: var(--text) !important; }
.wk-card h1, .wk-card h2, .wk-card h3, .wk-card h4, .wk-card h5 { color: var(--text) !important; }
.section--dark .wk-card span,
.section--dark .wk-card p,
.section--dark .wk-card li,
.section--dark .wk-card label,
.section--dark .wk-card small { color: var(--text-muted); }
.section--dark .wk-card a { color: var(--orange); }
.section--dark #compact-ops-list span,
.section--dark #compact-ops-list p { color: var(--text); }
.op-row__name { color: var(--text) !important; }
.promo-banner__text h3 { color: #ffffff !important; }

/* ── Country Article Page Layout ──────────────────────────────────────── */
.cp-section { padding: 44px 0; border-bottom: 1px solid var(--border); }
.cp-section:last-of-type { border-bottom: none; }
.cp-grid { display: grid; grid-template-columns: 1fr 290px; gap: 36px; align-items: start; }
.cp-main { min-width: 0; }
.cp-main h2 { margin-bottom: 14px; font-size: 1.65rem; letter-spacing: -.025em; }
.cp-main h3 { margin: 26px 0 9px; font-size: 1rem; font-weight: 700; color: var(--text); }
.cp-main p { font-family: 'Lora', Georgia, serif; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; font-size: 1.01rem; }
.cp-main ul,
.cp-main ol { font-family: 'Lora', Georgia, serif; color: var(--text-muted); line-height: 1.8; padding-left: 24px; margin-bottom: 18px; font-size: 1rem; }
.cp-main li { margin-bottom: 7px; }
.cp-main a { color: var(--orange); }
.cp-main .lead { font-size: 1.13rem; line-height: 1.9; color: var(--text); font-family: 'Lora', Georgia, serif; margin-bottom: 22px; }
.cp-intro { max-width: 900px; margin: 0 auto; padding: 36px 0 0; }
.cp-intro-lead { font-family: 'Lora', Georgia, serif; font-size: 1.08rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }

/* Table of contents strip */
.cp-toc { display: flex; gap: 8px; flex-wrap: wrap; padding: 18px 0; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.cp-toc a { font-size: .78rem; font-weight: 600; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; color: var(--text); text-decoration: none; transition: .15s; white-space: nowrap; }
.cp-toc a:hover, .cp-toc a.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Sidebar stack */
.cp-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 74px; }
.cp-sidebar-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.cp-sidebar-card--highlight { border-color: rgba(255,107,24,.3); background: rgba(255,107,24,.04); }
.cp-sidebar-title { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }

/* Operators in sidebar */
.op-sidebar { display: flex; flex-direction: column; gap: 7px; }
.op-sidebar-row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; background: var(--bg-base); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; transition: border-color .15s, box-shadow .15s; }
.op-sidebar-row:hover { border-color: var(--orange); box-shadow: 0 2px 10px rgba(255,107,24,.12); }
.op-sidebar-row__rank { font-size: .68rem; font-weight: 800; color: var(--orange); min-width: 14px; }
.op-sidebar-row__logo { width: 26px; height: 26px; border-radius: 4px; object-fit: contain; background: #fff; padding: 2px; flex-shrink: 0; }
.op-sidebar-row__name { font-size: .82rem; font-weight: 600; color: var(--text); flex: 1; }
.op-sidebar-row__bonus { font-size: .7rem; color: var(--text-muted); white-space: nowrap; }
.op-sidebar-row__cta { font-size: .68rem; font-weight: 700; color: #fff; background: var(--orange); border-radius: 5px; padding: 2px 7px; flex-shrink: 0; }

/* Ad slot placeholder */
.ad-slot { background: var(--bg-surface); border: 2px dashed var(--border); border-radius: 12px; padding: 18px 14px; text-align: center; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.ad-slot__label { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); }
.ad-slot__size { font-size: .75rem; font-weight: 600; color: var(--text-muted); }

/* News mini cards */
.news-mini-list { display: flex; flex-direction: column; }
.news-mini { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.news-mini:last-child { border-bottom: none; padding-bottom: 0; }
.news-mini:first-child { padding-top: 0; }
.news-mini__img { width: 50px; height: 50px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.news-mini__title { font-size: .79rem; font-weight: 600; color: var(--text); line-height: 1.35; display: block; margin-bottom: 3px; }
.news-mini__meta { font-size: .68rem; color: var(--text-muted); }
.news-mini:hover .news-mini__title { color: var(--orange); }

/* Quick facts list */
.quick-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.quick-facts li { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; font-size: .82rem; padding: 7px 0; border-bottom: 1px solid var(--border); }
.quick-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.quick-facts .qf-label { color: var(--text-muted); flex-shrink: 0; }
.quick-facts .qf-val { font-weight: 600; color: var(--text); text-align: right; }
.qf-badge { display: inline-block; padding: 1px 8px; border-radius: 20px; font-size: .72rem; font-weight: 700; }
.qf-badge--green { background: rgba(34,197,94,.15); color: #16a34a; }
.qf-badge--amber { background: rgba(245,158,11,.15); color: #b45309; }
.qf-badge--blue { background: rgba(99,102,241,.15); color: #4338ca; }

/* Mini map */
.mini-map-wrap { width: 100%; height: 148px; position: relative; overflow: hidden; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-base); cursor: pointer; }

/* Regulation table */
.reg-table { width: 100%; border-collapse: collapse; font-size: .87rem; margin: 20px 0; }
.reg-table th { background: rgba(255,107,24,.07); color: var(--orange); font-weight: 700; padding: 10px 14px; text-align: left; border-bottom: 2px solid rgba(255,107,24,.18); white-space: nowrap; }
.reg-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; line-height: 1.55; }
.reg-table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.reg-table tr:last-child td { border-bottom: none; }
.reg-table tr:hover td { background: rgba(255,107,24,.03); }

/* FAQ */
.cp-faq-item { border-bottom: 1px solid var(--border); }
.cp-faq-item:last-child { border-bottom: none; }
.cp-faq-q { font-weight: 700; color: var(--text); font-size: .94rem; padding: 16px 0 8px; }
.cp-faq-a { color: var(--text-muted); font-size: .9rem; line-height: 1.76; padding-bottom: 16px; }

/* Responsible gambling box */
.rg-box { background: rgba(255,107,24,.05); border: 1px solid rgba(255,107,24,.2); border-radius: 12px; padding: 20px 24px; }
.rg-box__title { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 14px; }
.rg-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.rg-box li { color: var(--text-muted); font-size: .9rem; line-height: 1.6; padding-left: 0; }
.rg-box strong { color: var(--text); }

@media (max-width: 900px) {
  .cp-grid { grid-template-columns: 1fr; }
  .cp-sidebar { position: static; }
  .cp-main h2 { font-size: 1.45rem; }
}
