:root {
  --bg: #0b1220;
  --card: #121a2b;
  --sidebar: #0e1628;
  --text: #e8edf7;
  --muted: #8b9bb8;
  --accent: #3b82f6;
  --accent-dim: #1e3a5f;
  --gold: #f59e0b;
  --border: #243049;
  --sidebar-w: 280px;
  --topbar-h: 56px;
  --admin-topbar-h: 36px;
  --site-container-max: 72rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

/* —— Admin strip (logged-in staff on public pages) —— */
.admin-topbar {
  display: none;
  align-items: center;
  min-height: var(--admin-topbar-h);
  padding: 0 1rem;
  background: linear-gradient(90deg, #422006 0%, #78350f 55%, #92400e 100%);
  border-bottom: 2px solid var(--gold);
  color: #fef3c7;
  font-size: 0.8125rem;
  position: sticky;
  top: 0;
  z-index: 400;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.admin-topbar:not([hidden]) {
  display: flex;
}
.admin-topbar__label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-right: 1rem;
  flex-shrink: 0;
}
.admin-topbar__nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  min-width: 0;
}
.admin-topbar__link {
  color: #fef3c7;
  text-decoration: none;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  font-weight: 500;
}
.admin-topbar__link:hover {
  background: rgba(251, 191, 36, 0.2);
  color: #fffbeb;
}
.admin-topbar__link--logout {
  color: #fcd34d;
  opacity: 0.9;
}
.admin-topbar__logout {
  display: inline-flex;
  margin: 0 0 0 auto;
  padding: 0;
}
.admin-topbar__logout button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.admin-topbar__badge {
  display: inline-block;
  min-width: 1.1rem;
  padding: 0.05rem 0.35rem;
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: #dc2626;
  color: #fff;
  border-radius: 999px;
  vertical-align: middle;
}
body.has-admin-bar .site-sidebar {
  top: var(--admin-topbar-h);
  max-height: calc(100vh - var(--admin-topbar-h));
}

/* —— App shell —— */
.site-shell { display: flex; min-height: 100vh; }
body.has-admin-bar .site-shell { min-height: calc(100vh - var(--admin-topbar-h)); }
.site-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.site-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  align-self: flex-start;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 200;
}
.sidebar-inner { padding: 1rem 0.75rem 1.5rem; }
.sidebar-brand { padding: 0.25rem 0.5rem 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.75rem; }
.sidebar-brand .logo { text-decoration: none; display: block; }
.logo-brand {
  display: inline-block;
  text-decoration: none;
}
.logo-brand__word {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
.logo-brand__stats {
  color: var(--gold);
}
.logo-brand:hover .logo-brand__word {
  color: #fff;
}
.logo-brand:hover .logo-brand__stats {
  color: #fbbf24;
}
.sidebar-tagline { font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem; }
.logo-brand--center { display: inline-block; }

.nav-section { border-bottom: 1px solid var(--border); }
.nav-section__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: left;
}
.nav-section__toggle:hover { color: var(--accent); }
.nav-section__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.15s;
  flex-shrink: 0;
}
.nav-section__toggle[aria-expanded="true"] .nav-section__chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.nav-section__panel { padding: 0 0.5rem 0.85rem; }
.nav-section__panel[hidden] { display: none; }

.nav-link {
  display: block;
  padding: 0.35rem 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 6px;
}
.nav-link:hover { color: var(--accent); background: var(--accent-dim); }
.nav-link--primary { color: var(--text); font-weight: 600; margin-bottom: 0.35rem; }
.nav-link--highlight { color: var(--gold); }

.nav-crypto-block {
  margin: 0.5rem 0 0.65rem;
  padding: 0.5rem 0.45rem;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.06);
}
.nav-crypto-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 0.35rem 0.15rem;
}
.nav-list--crypto { margin: 0; }
.nav-list--crypto a {
  color: var(--gold);
  font-weight: 600;
}
.nav-list--crypto a:hover {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
}

.nav-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.nav-search-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.5rem 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-search {
  width: 100%;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--text);
  font-size: 0.85rem;
}
.nav-search::placeholder { color: var(--muted); }
.nav-search:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

.nav-list { list-style: none; }
.nav-list li[data-filter-text][hidden] { display: none; }
.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.3rem 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  border-radius: 5px;
}
.nav-list a:hover { color: var(--accent); background: rgba(59, 130, 246, 0.08); }
.nav-list__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-list__meta { font-size: 0.75rem; color: var(--muted); flex-shrink: 0; }
.nav-list--scroll { max-height: 220px; overflow-y: auto; margin-right: -0.25rem; padding-right: 0.25rem; }
.nav-list--compact { margin: 0.25rem 0 0.5rem; }
.nav-list--compact a { padding: 0.28rem 0.5rem; font-size: 0.84rem; }
.nav-divider {
  height: 0;
  border: 0;
  border-top: 1px dashed var(--border);
  margin: 0.75rem 0.5rem 0.65rem;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
}
.sidebar-backdrop:not([hidden]) { display: block; }

.site-topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.sidebar-open-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  cursor: pointer;
}
.sidebar-open-btn__bar {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.topbar-actions { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; }
.topbar-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}
.topbar-link:hover { color: var(--accent); background: var(--accent-dim); }
.topbar-link--accent { color: var(--gold); }
.topbar-link--accent:hover { color: #fbbf24; background: rgba(245, 158, 11, 0.12); }

.site-container {
  width: 100%;
  max-width: var(--site-container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.site-main { flex: 1; padding: 1.25rem 0 2rem; }
.main-inner { min-width: 0; }

.site-footer {
  margin-top: auto;
  padding: 1.1rem 0 0.9rem;
  border-top: 1px solid var(--border);
  background: var(--sidebar);
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.footer-about-block { max-width: 36rem; }
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
}
.footer-about {
  margin: 0;
  line-height: 1.5;
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-links-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav-group { margin: 0; }
.footer-group-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin: 0 0 0.3rem;
}
.footer-links--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.55rem;
}
.footer-links--inline a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  line-height: 1.35;
}
.footer-links--inline a:hover { color: var(--accent); }
.footer-link--highlight { color: var(--gold) !important; }
.footer-bottom {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 40rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.25rem 2rem;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .topbar-search { max-width: none; order: 3; flex-basis: 100%; margin: 0.35rem 0 0; }
  .site-topbar { flex-wrap: wrap; height: auto; padding: 0.5rem 1rem; min-height: var(--topbar-h); }
  .site-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
  }
  body.sidebar-open .site-sidebar { transform: translateX(0); }
  .sidebar-open-btn { display: flex; }
}
@media (max-width: 520px) {
  .topbar-actions .topbar-link:not(.topbar-link--accent) { display: none; }
  .topbar-search__input { font-size: 0.8rem; }
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.breadcrumb-label { color: var(--muted); margin-right: 0.15rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: #fbbf24; text-decoration: underline; }
.breadcrumb-current { color: #d4a574; }
.breadcrumb .sep { color: var(--muted); opacity: 0.65; font-size: 0.75rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar-search {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  margin-right: 0.5rem;
}
.topbar-search__input {
  width: 100%;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
  font-size: 0.875rem;
}
.topbar-search__input::placeholder { color: var(--muted); }
.topbar-search__input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 300;
}
.search-results:not([hidden]) { display: block; }
.search-results[hidden] { display: none; }
.search-results__empty,
.search-results__hint {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.search-results__item { border-bottom: 1px solid var(--border); }
.search-results__item:last-child { border-bottom: 0; }
.search-results__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
}
.search-results__link:hover,
.search-results__item.is-active .search-results__link {
  background: var(--accent-dim);
  color: var(--accent);
}
.search-results__rank { font-size: 0.75rem; color: var(--muted); flex-shrink: 0; }
.meta-line { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.meta-line a { color: var(--accent); }
.home-directory { margin: 0 0 2rem; }
.home-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-directory__card a {
  display: block;
  height: 100%;
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.home-directory__card a:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.home-directory__card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
}
.home-directory__card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.home-directory__card--primary a {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(145deg, var(--card) 0%, var(--accent-dim) 120%);
}
.home-directory__card--accent a {
  border-color: rgba(245, 158, 11, 0.35);
}
.home-section { margin: 0 0 2rem; }
.home-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}
.home-section--table { margin-top: 2.25rem; }
.hub-links--cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.35rem 1rem;
}
.browse-index--home { margin-top: 0.5rem; }
.browse-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
  max-width: 52rem;
}
@media (min-width: 960px) {
  .browse-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 1rem 1.15rem;
  }
  .browse-index > .hub-grid:first-child {
    grid-column: 1 / -1;
  }
}
.hub-grid, .related-hubs { margin: 0; }
.hub-grid {
  padding: 1rem 1.15rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.hub-grid h2,
.related-hubs h2,
.related-brands h2 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.related-hubs { margin: 2rem 0; }
.related-brands h2 { font-size: 1.1rem; text-transform: none; letter-spacing: normal; color: var(--text); }

/* Similar bookmakers — horizontal marquee */
.related-brands { margin: 2rem 0 1.25rem; }
.related-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 0.65rem 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.related-marquee__track {
  display: flex;
  width: max-content;
  animation: related-marquee-scroll 36s linear infinite;
}
.related-marquee:hover .related-marquee__track {
  animation-play-state: paused;
}
.related-marquee__group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  padding: 0 0.65rem;
  flex-shrink: 0;
}
.related-marquee__item { flex-shrink: 0; }
.related-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.related-chip:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}
.related-chip__logo {
  flex-shrink: 0;
}
.related-chip__name { line-height: 1.2; }
@keyframes related-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .related-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .related-marquee__track {
    animation: none;
    transform: none;
    width: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }
  .related-marquee__group[aria-hidden="true"] {
    display: none;
  }
  .related-marquee:hover .related-marquee__track {
    animation-play-state: running;
  }
}
.hub-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hub-links li { margin: 0; }
.hub-links a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.3;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.hub-links a:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
  text-decoration: none;
}
.hub-grid__more {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.hub-grid__more a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.hub-grid__more a::after {
  content: " →";
}
.hub-grid__more a:hover {
  color: #fbbf24;
  text-decoration: underline;
}
.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border: 1px solid var(--border); border-radius: 10px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th,
.compare-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table th { background: var(--card); color: var(--muted); font-size: 0.75rem; text-transform: uppercase; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:nth-child(1),
.compare-table th:nth-child(1) { width: 3.25rem; white-space: nowrap; text-align: center; }
.compare-table td.cell-rank { color: var(--muted); vertical-align: middle; }
.rank-medal { display: inline-flex; align-items: center; justify-content: center; }
.rank-medal__disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.rank-medal--gold .rank-medal__disc {
  background: linear-gradient(145deg, #fde68a, #f59e0b);
  border-color: #d97706;
  color: #78350f;
}
.rank-medal--silver .rank-medal__disc {
  background: linear-gradient(145deg, #f1f5f9, #cbd5e1);
  border-color: #94a3b8;
  color: #334155;
}
.rank-medal--bronze .rank-medal__disc {
  background: linear-gradient(145deg, #fcd9b6, #d97706);
  border-color: #b45309;
  color: #5c3d1e;
}
.compare-table td:nth-child(3) {
  max-width: 11rem;
  word-break: break-word;
  line-height: 1.4;
  color: var(--muted);
  font-size: 0.85rem;
}
.compare-table td.cell-actions { width: 1%; white-space: nowrap; }
.row-brand { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); text-decoration: none; font-weight: 500; }
.row-brand:hover { color: var(--accent); }
/* Keep table cells as table-cell — flex on <td> breaks row borders in border-collapse tables */
.compare-table td.cell-actions {
  white-space: nowrap;
}
.compare-table td.cell-actions .link-review {
  margin-right: 0.5rem;
}
.link-review,
.link-go {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.3;
}
.link-review {
  color: #fff !important;
  background: var(--accent);
}
.link-review:hover { background: #2563eb; }
.link-go {
  color: var(--accent);
  border: 1px solid var(--border);
  background: transparent;
  font-weight: 500;
}
.link-go:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Brand detail — key stats */
.bm-stats {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.15rem 0.35rem;
}
.bm-stats__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.bm-stats__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.bm-stat-pill {
  flex: 1 1 7.5rem;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.bm-stat-pill--wide {
  flex: 1 1 100%;
}
.bm-stat-pill__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.bm-stat-pill__value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  word-break: break-word;
}
.bm-stats__regions {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.bm-stats__regions a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.bm-stats__regions a:hover {
  text-decoration: underline;
}
.bm-stats__sep {
  margin: 0 0.2rem;
  color: var(--border);
}
.bm-stats__groups {
  border-top: 1px solid var(--border);
}
.bm-stats__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.bm-stats__row-label {
  flex: 0 0 5.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.bm-stats__row-value {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}
.bm-stats__tags-wrap {
  flex: 1;
  min-width: 0;
}
.bm-stats__tag-line {
  align-items: center;
}
.bm-stats__more {
  display: contents;
}
.bm-stats__more-summary {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  user-select: none;
  white-space: nowrap;
}
.bm-stats__more-summary::-webkit-details-marker {
  display: none;
}
.bm-stats__more-summary:hover {
  text-decoration: underline;
}
.bm-stats__more[open] > .bm-stats__more-summary {
  display: none;
}
.bm-stats__more-tags {
  flex: 0 0 100%;
  width: 100%;
  margin: 0.15rem 0 0;
}
.bm-stats__tags-wrap--text .bm-stats__tag-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text);
}
.bm-stats__tags-wrap--text .bm-stats__more-tags {
  display: inline;
  margin: 0;
  flex: 0 0 auto;
  width: auto;
}
.bm-stats__tags-wrap--text .bm-stats__more[open] .bm-stats__more-tags::before {
  content: ", ";
}
.bm-stats__prose {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text);
}
.tag-list--stats {
  gap: 0.3rem;
}
.tag-list--stats .tag-chip {
  font-size: 0.74rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

/* Help me choose wizard */
.nav-link--wizard {
  display: block;
  margin: 0 0 1rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 8px;
  text-decoration: none;
}
.nav-link--wizard:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.find-wizard {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.35rem;
}
.find-combobox {
  position: relative;
  max-width: 28rem;
  margin-top: 0.5rem;
}
.find-combobox__field {
  position: relative;
  display: flex;
  align-items: center;
}
.find-combobox__flag {
  position: absolute;
  left: 0.65rem;
  font-size: 1.15rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.find-combobox__field:has(.find-combobox__flag:not([hidden])) .find-combobox__input {
  padding-left: 2.35rem;
}
.find-combobox__input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.find-combobox__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}
.find-combobox__list--tall {
  max-height: 18rem;
}
.find-combobox__list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  max-height: 14rem;
  overflow-y: auto;
  margin: 0.25rem 0 0;
  padding: 0.25rem 0;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.find-combobox__list[hidden] {
  display: none;
}
.find-combobox__option {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text);
}
.find-combobox__opt-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.find-combobox__opt-text {
  flex: 1;
  min-width: 0;
}
.find-combobox__opt-count {
  font-size: 0.72rem;
  color: var(--muted);
  flex-shrink: 0;
}
.find-combobox__opt-flag {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.find-combobox__opt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  flex-shrink: 0;
  color: #93c5fd;
  font-size: 0.95rem;
}
.find-combobox__opt-icon i {
  line-height: 1;
}
.find-combobox__option:hover,
.find-combobox__option.is-active {
  background: var(--accent-dim);
  color: var(--text);
}
.find-combobox__hint {
  margin: 0.4rem 0 0;
}
.find-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.75rem, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
  max-width: 42rem;
}
.find-picker__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-height: 4.5rem;
  padding: 0.6rem 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, var(--card) 100%);
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.find-picker__btn:hover {
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.find-picker__btn.is-selected {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent);
}
.find-picker__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.find-picker__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  color: #93c5fd;
}
.find-picker__icon svg {
  width: 100%;
  height: 100%;
}
.find-picker__btn.is-selected .find-picker__icon {
  color: #bfdbfe;
}
.find-picker__label {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--muted);
}
.find-picker__btn.is-selected .find-picker__label {
  color: var(--text);
}
.find-check--crypto {
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.06);
  width: 100%;
  max-width: 28rem;
  box-sizing: border-box;
}
.find-check__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  flex-shrink: 0;
  color: #fbbf24;
  font-size: 1.1rem;
}
.find-check__icon i {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}
.find-step {
  border: 0;
  margin: 0 0 1.35rem;
  padding: 0;
}
.find-step legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.find-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}
.find-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.find-options--wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.find-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--card);
  color: var(--text);
}
.find-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.find-chip input {
  accent-color: var(--accent);
}
.find-chip--any {
  font-weight: 500;
}
.find-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  cursor: pointer;
}
.find-clear {
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}
.find-clear--inline {
  display: inline-block;
}
.find-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin: 0;
}
.find-btn-primary {
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
}
.find-results {
  margin-bottom: 2rem;
}
/* Compare tables: bookmaker + actions only on narrow screens */
@media (max-width: 640px) {
  .table-wrap:has(.compare-table) {
    overflow-x: visible;
  }
  .compare-table th:nth-child(1),
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(1),
  .compare-table td:nth-child(3) {
    display: none;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.5rem 0.45rem;
  }
  .compare-table .bm-logo {
    max-width: 56px;
    max-height: 26px;
  }
  .compare-table .row-brand {
    gap: 0.4rem;
    min-width: 0;
  }
  .compare-table .row-brand span {
    font-size: 0.88rem;
    line-height: 1.25;
  }
  .compare-table td.cell-actions {
    width: auto;
    white-space: normal;
    vertical-align: middle;
  }
  .compare-table td.cell-actions .link-review {
    margin-right: 0;
    margin-bottom: 0.3rem;
    display: block;
    text-align: center;
    padding: 0.32rem 0.45rem;
    font-size: 0.72rem;
  }
  .compare-table td.cell-actions .link-go {
    display: block;
    text-align: center;
    padding: 0.28rem 0.4rem;
    font-size: 0.72rem;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.bm-list.compact li { border-bottom: 0; }
.bm-list.compact a { padding: 0.35rem 0; }
.prose { color: var(--muted); line-height: 1.65; }
.prose h2 { color: var(--text); font-size: 1.1rem; margin: 1.25rem 0 0.5rem; }
.prose p { margin-bottom: 0.75rem; }
.prose ul { margin: 0.5rem 0 1rem 1.25rem; }
.prose a { color: var(--accent); }
.prose code { background: var(--card); padding: 0.1rem 0.35rem; border-radius: 4px; font-size: 0.9em; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
}
.prose th,
.prose td {
  padding: 0.5rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.prose th { color: var(--muted); font-weight: 600; }
.prose tr:last-child td { border-bottom: 0; }
.trust-prose { max-width: 46rem; }
.archive-page { max-width: 46rem; }
.archive-domain {
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}
.archive-domain span {
  font-family: ui-monospace, monospace;
  color: var(--text);
}
.archive-notice {
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent, #3b82f6);
  border-radius: 6px;
  background: color-mix(in srgb, var(--surface) 92%, var(--accent, #3b82f6) 8%);
}
.archive-notice p { margin: 0; line-height: 1.55; }
.archive-links { margin: 0.75rem 0 1.5rem; padding-left: 1.25rem; }
.archive-links li { margin-bottom: 0.5rem; line-height: 1.5; }
.archive-prose h2 { margin-top: 1.75rem; font-size: 1.15rem; }
.contact-form-section {
  margin-top: 1.25rem;
  max-width: 36rem;
}
.contact-lede { margin-bottom: 1rem; }
.contact-aside {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.25rem;
  line-height: 1.5;
}
h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.lede { color: var(--muted); margin-bottom: 1.5rem; max-width: 42rem; }
.not-found__code {
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  opacity: 0.35;
  margin: 0 0 0.35rem;
}
.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}
.not-found__actions .topbar-link { font-size: 0.95rem; }
.seo-body { margin: 2.5rem 0 2rem; max-width: 42rem; line-height: 1.65; }
.home-table-more { margin: 0 0 2rem; font-size: 0.9rem; }
.home-table-more a { color: var(--accent); font-weight: 500; }
.home-body { margin-top: 0; margin-bottom: 2rem; }
.bm-review { margin: 2rem 0 1.75rem; max-width: 42rem; }
.bm-review.seo-body > h2#bm-review-heading {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.stats-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.seo-body h2 {
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 2rem 0 0.75rem;
}
.seo-body h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 1.2rem 0 0.45rem;
  color: var(--text);
}
.seo-body p { color: var(--muted); margin: 0 0 1rem; }
.seo-body ul, .seo-body ol { color: var(--muted); margin: 0 0 1.25rem; padding-left: 1.5rem; }
.seo-body li { margin-bottom: 0.5rem; }
.seo-body li::marker { color: var(--accent); }
.seo-body li strong { color: var(--text); font-weight: 600; }
.seo-body a {
  color: var(--accent);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}
.seo-body a:hover {
  color: #60a5fa;
}
.guide-head { max-width: 52rem; margin: 0 0 1.35rem; }
.guide-head h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.guide-head__intro {
  margin: 0 0 0.65rem;
  max-width: 48rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.48;
  color: var(--text);
  opacity: 0.96;
}
.guide-head__date {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.guide-author {
  margin: 0 0 0.3rem;
  max-width: 48rem;
}
.guide-author__mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.guide-author__avatar {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  background: rgba(17, 24, 39, 0.45);
  text-transform: uppercase;
}
.guide-author__avatar-img {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
}
.guide-author__id { min-width: 0; }
.guide-author__role {
  margin: 0;
  color: var(--text);
  opacity: 0.92;
  font-size: 1rem;
}
.guide-author__name {
  margin: 0 0 0.1rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}
.guide-author__bio {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 44rem) minmax(260px, 320px);
  gap: 2rem;
  align-items: start;
}
.guide-layout .seo-body {
  margin-top: 0.1rem;
}
.guide-sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + 1rem);
}
.guide-author-panel {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 1rem;
}
.guide-author-panel__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}
.guide-author-panel__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}
.guide-author-panel__avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.guide-author-panel__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.45);
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
}
.guide-author-panel__name {
  margin: 0 0 0.15rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}
.guide-author-panel__role {
  margin: 0;
  color: var(--muted);
}
.guide-author-panel__bio {
  margin: 0 0 0.75rem;
  color: var(--text);
  line-height: 1.55;
}
.guide-author-panel__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.guide-author-panel__meta a {
  color: var(--accent);
}
.guides-hero {
  background: linear-gradient(135deg, #141d30 0%, #1f2d4a 62%, #2b3f67 100%);
  color: #eef4ff;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  padding: 2.3rem 1.3rem;
  margin: 0 0 1.4rem;
  text-align: center;
}
.guides-hero__kicker {
  margin: 0 0 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.92;
  color: #fbbf24;
}
.guides-hero h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
}
.guides-hero__lede {
  margin: 0 auto;
  max-width: 42rem;
  color: #c9d8f6;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #30415f;
  border-radius: 10px;
  overflow: hidden;
  background: #30415f;
}
.guides-card {
  background: #121a2b;
  color: var(--text);
  padding: 1.3rem;
  min-height: 220px;
}
.guides-card__topic {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #9bb0d2;
}
.guides-card h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}
.guides-card h2 a {
  color: #f8fbff;
  text-decoration: none;
}
.guides-card h2 a:hover {
  color: #fbbf24;
  text-decoration: underline;
  text-decoration-style: dotted;
}
.guides-card__intro {
  margin: 0 0 0.9rem;
  color: #b8c6e2;
}
.guides-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #96a9cb;
}
.guides-card__meta time {
  margin-left: auto;
}
.guides-card__avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #3b4b69;
}
@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .guide-sidebar {
    position: static;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
}
.bm-list { list-style: none; }
.bm-list li { border-bottom: 1px solid var(--border); }
.bm-list__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
}
.bm-list__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}
.bm-list__brand:hover .name { color: var(--accent); }
.bm-list__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  flex-shrink: 0;
}
.bm-list .meta { color: var(--muted); font-size: 0.875rem; margin-left: auto; }
.pagination {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.pagination__summary {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.pagination__list > li { display: flex; }
.pagination__btn,
.pagination__page,
.pagination__current,
.pagination__gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.pagination__btn {
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
}
.pagination__btn:hover:not(.pagination__disabled) {
  border-color: var(--accent);
  color: var(--accent);
}
.pagination__prev { padding-left: 0.85rem; }
.pagination__next { padding-right: 0.85rem; }
.pagination__page {
  color: var(--muted);
  border: 1px solid transparent;
}
.pagination__page:hover {
  color: var(--accent);
  border-color: var(--border);
  background: var(--card);
}
.pagination__current {
  color: #fff;
  background: var(--accent);
  font-weight: 600;
}
.pagination__gap {
  color: var(--muted);
  min-width: 1.5rem;
  padding: 0;
}
.pagination__disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 520px) {
  .pagination__btn { font-size: 0.8rem; min-width: auto; }
  .pagination__page,
  .pagination__current { min-width: 2rem; height: 2rem; font-size: 0.8rem; }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 1.5rem 0;
}
.stats-grid__item--wide {
  grid-column: 1 / -1;
}
.stats-grid dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.stats-grid dd { margin: 0; }
.stat-text__body {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}
.stat-text--collapsible.is-truncated .stat-text__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.stats-grid .tag-chip {
  font-size: 0.78rem;
  padding: 0.18rem 0.5rem;
}
.tag-list--collapsible {
  align-items: center;
}
.tag-list--collapsible.is-truncated[data-tag-limit="6"] .tag-chip:nth-child(n+7) {
  display: none;
}
.tag-list--collapsible.is-truncated[data-tag-limit="8"] .tag-chip:nth-child(n+9) {
  display: none;
}
.tag-list--collapsible.is-expanded .tag-chip {
  display: inline-flex !important;
}
.stat-text--collapsible.is-expanded .stat-text__body {
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}
.tag-list__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.3;
}
.tag-list__toggle:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.tag-list__toggle::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.15s ease;
}
.tag-list__toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}
.bm-bonus {
  position: relative;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(245, 158, 11, 0.16) 0%,
    rgba(245, 158, 11, 0.05) 32%,
    var(--card) 58%
  );
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.1),
    0 10px 40px rgba(245, 158, 11, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.35);
}
.bm-bonus__header {
  padding: 1.15rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
  background: linear-gradient(105deg, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0.06) 55%, transparent 100%);
}
.bm-bonus__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
}
.bm-bonus__title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcd34d;
}
.bm-bonus__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}
.bm-bonus__headline {
  margin: 0;
  font-size: clamp(1.55rem, 4.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gold);
  background: linear-gradient(92deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.35));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .bm-bonus__headline {
    color: var(--gold);
    -webkit-text-fill-color: unset;
  }
}
.bm-bonus__summary {
  margin: 0;
  padding: 1.1rem 1.35rem 0.55rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.bm-bonus__requirements {
  list-style: none;
  margin: 0;
  padding: 0.35rem 1.2rem 0.85rem;
  display: grid;
  gap: 0.45rem;
}
@media (min-width: 640px) {
  .bm-bonus__requirements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
  }
}
.bm-bonus__req {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(245, 158, 11, 0.12);
  font-size: 0.88rem;
  line-height: 1.4;
}
.bm-bonus__req-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.bm-bonus__req-value {
  color: var(--text);
  font-weight: 500;
}
.bm-bonus__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
}
.bm-bonus__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0;
}
.bm-bonus__meta-item {
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.08);
}
.bm-bonus__meta dt {
  display: inline;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.35rem;
}
.bm-bonus__meta dt::after { content: ":"; }
.bm-bonus__meta dd {
  display: inline;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.bm-bonus__terms-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #93c5fd;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.45);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.bm-bonus__terms-link:hover {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.28);
  border-color: #60a5fa;
}
.bm-bonus__disclaimer {
  margin: 0;
  padding: 0.65rem 1.2rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  border-top: 1px dashed var(--border);
}

/* Slim SEO H1 bar; brand name is the visual title below */
.bm-detail-kicker-bar {
  margin: 0 0 1rem;
  padding: 0.55rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}
.bm-detail-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--muted);
}
.bm-detail-head {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.bm-detail-head__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.bm-detail-head__logo > .bm-logo {
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-width: 164px;
  max-height: 74px;
}
.bm-rank-badge {
  margin: 0;
  line-height: 1;
}
.bm-rank-badge__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
}
.bm-detail-head__logo .rank-medal__disc {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.68rem;
}
.bm-detail-head__main { flex: 1; min-width: 12rem; }
.bm-detail-brand {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.bm-meta-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; margin-top: 0.45rem; }
.bm-head-action { margin: 0; align-self: center; }
.meta--inline { margin: 0; font-size: 0.9rem; color: var(--muted); }
.bm-last-updated {
  font-size: 0.82rem;
  color: var(--muted);
}
.bm-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
}
.badge--verified {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}
.badge--shield {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.08));
  color: #bae6fd;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  padding: 0.32rem 0.62rem;
}
.badge__icon {
  font-size: 0.88rem;
  line-height: 1;
}
.verify-panel {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--sidebar);
}
.verify-panel summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.verify-panel summary::-webkit-details-marker { display: none; }
.verify-panel[open] summary { margin-bottom: 0.65rem; }
.verify-panel__body { font-size: 0.9rem; margin: 0; max-width: 46rem; }
.rg-helper {
  margin: 0 0 1.35rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(30, 58, 95, 0.04));
}
.rg-helper__title {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.rg-helper__text {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}
.rg-helper__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.rg-helper__links li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.rg-helper__links a { color: var(--accent); }
@media (max-width: 700px) {
  .rg-helper__links {
    display: block;
  }
  .rg-helper__links li + li {
    margin-top: 0.25rem;
  }
}
/* Logo assets are ~82×37; never force square boxes */
.bm-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 82px;
  max-height: 37px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  background: var(--card);
  flex-shrink: 0;
}
.bm-logo--lg,
.logo-lg {
  max-width: 164px;
  max-height: 74px;
  border-radius: 8px;
}
.bm-logo--chip {
  max-width: 56px;
  max-height: 26px;
}
.intro { color: var(--muted); margin-bottom: 1rem; }
.bm-actions { margin: 0 0 1.25rem; }
.btn-visit {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}
.btn-visit:hover { background: #2563eb; }
@media (max-width: 900px) {
  .bm-head-action {
    width: 100%;
    margin-top: 0.15rem;
  }
}
.nav-quickfind { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--accent);
  text-decoration: none;
}
.tag-chip:hover { border-color: var(--accent); background: var(--accent-dim); }
.region-chip {
  color: var(--text);
  border-color: rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.08);
}
.facet-index-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.facet-index-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.facet-index-list a { color: var(--accent); text-decoration: none; font-weight: 500; }
.footer-rg {
  text-align: center;
  padding: 1rem 0;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.footer-rg-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.footer-rg-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.25rem;
  background: transparent;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.footer-rg-badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer-rg-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* Dark-footer SVGs (assets/rg/*-footer.svg) — no boxes, recoloured for --bg */
.footer-rg-badge img {
  display: block;
  width: auto;
  height: 22px;
  max-width: min(168px, 42vw);
  object-fit: contain;
}
.footer-rg-badge--gamstop img {
  height: 20px;
  max-width: min(112px, 34vw);
}
.footer-rg-badge--gambleaware img {
  height: 20px;
  max-width: min(152px, 40vw);
}
.footer-rg-badge--think img {
  height: 21px;
  max-width: min(196px, 50vw);
}
.contact-form .form-row { margin-bottom: 1rem; }
.contact-form label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.35rem; }
.contact-turnstile-row { margin-bottom: 1rem; }
.contact-captcha-row #contact-captcha-question {
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--text);
  font: inherit;
}
.contact-form select {
  cursor: pointer;
  appearance: auto;
}
.contact-form-status { font-size: 0.9rem; margin-top: 0.75rem; }
.contact-form-status--ok { color: #4ade80; }
.contact-form-status--error { color: #f87171; }
.contact-form-status--pending { color: var(--muted); }
body.coming-soon {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 90% 70% at 50% -20%, #1e4a7a 0%, var(--bg) 50%);
  text-align: center; padding: 2rem;
}
body.coming-soon .brand {
  color: #60a5fa; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem;
}
body.coming-soon h1 { font-size: clamp(2rem, 6vw, 2.75rem); margin-bottom: 1rem; }
body.coming-soon .lede { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.75rem; }
body.coming-soon .pill {
  display: inline-flex; padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
body.coming-soon .pill strong { color: #4ade80; }
body.coming-soon .dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 2rem; }
body.coming-soon .dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: cs-pulse 1.4s ease-in-out infinite;
}
body.coming-soon .dots span:nth-child(2) { animation-delay: 0.2s; }
body.coming-soon .dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cs-pulse { 0%, 80%, 100% { opacity: 0.35; } 40% { opacity: 1; } }

/* —— Back to top —— */
.back-to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 520;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.45rem);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease,
    background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  pointer-events: none;
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: #fff;
}
.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
