:root {
  --ink: #123b3a;
  --ink-2: #0b4f4a;
  --ink-3: #315f5c;
  --paper: #f8f4eb;
  --paper-2: #fffdf8;
  --paper-3: #e8efea;
  --muted: #65716f;
  --line: #d5ddd8;
  --accent: #e16b52;
  --accent-strong: #a43e2a;
  --accent-soft: #fbe5df;
  --teal: #0b4f4a;
  --teal-soft: #dceeea;
  --gold: #d89b46;
  --success: #247a5c;
  --warning: #8d5300;
  --danger: #993447;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(11, 79, 74, 0.08);
  --shadow-md: 0 18px 50px rgba(11, 79, 74, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--ink-3);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-strong);
}

:focus-visible {
  outline: 3px solid rgba(225, 107, 82, 0.48);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--ink-3);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.55rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.3rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(11, 79, 74, 0.12);
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 30%, var(--accent) 0 13%, transparent 14%),
    radial-gradient(circle at 70% 32%, var(--teal) 0 14%, transparent 15%),
    radial-gradient(circle at 58% 72%, var(--gold) 0 12%, transparent 13%),
    var(--ink);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(33, 17, 63, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle span {
  position: absolute;
}

.menu-toggle::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle::after {
  position: absolute;
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(11, 79, 74, 0.2);
}

.button:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(11, 79, 74, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: var(--accent);
}

.button-secondary:hover {
  color: var(--ink);
  background: #ee947f;
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--paper-3);
}

.button[aria-disabled="true"],
.button:disabled,
.button-secondary:disabled {
  color: var(--muted);
  background: var(--paper-3);
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(68px, 10vw, 130px) 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -150px;
  width: 540px;
  height: 540px;
  content: "";
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 200, 87, 0.9), transparent 33%),
    radial-gradient(circle at 70% 60%, rgba(109, 92, 231, 0.72), transparent 34%),
    radial-gradient(circle at 44% 72%, rgba(255, 241, 201, 0.92), transparent 28%);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.65;
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 52px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 30px;
  color: var(--ink-3);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-panel .kicker {
  color: #c7d2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 8px 0 15px;
  color: var(--white);
  font-size: 2rem;
}

.hero-panel p {
  color: #d8dcef;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #f4f6ff;
}

.hero-panel li::before {
  width: 9px;
  height: 9px;
  margin-top: 0.5em;
  flex: 0 0 auto;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.disclosure-strip {
  padding: 16px 0;
  color: var(--ink-2);
  background: var(--accent-soft);
  border-block: 1px solid rgba(164, 62, 42, 0.2);
  font-size: 0.9rem;
}

.disclosure-strip .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclosure-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--accent-strong);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-tight {
  padding: 55px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #d8dcef;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.6fr);
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading h2 {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card,
.info-card,
.guide-card,
.payment-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.editorial-card::after,
.guide-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--teal-soft);
  border-radius: 50%;
  opacity: 0.7;
}

.card-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 850;
}

.card-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.guide-card h3 {
  margin: 15px 0 14px;
}

.guide-card p {
  color: var(--muted);
}

.guide-card .card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-weight: 800;
}

.ranking-stack {
  display: grid;
  gap: 18px;
}

.operator-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 42px 118px minmax(190px, 0.95fr) minmax(220px, 1.2fr) 132px 160px;
}

.operator-card.featured {
  border-color: rgba(255, 200, 87, 0.78);
  box-shadow: 0 14px 34px rgba(154, 88, 0, 0.1);
}

.operator-card.reviewed {
  border-left: 4px solid var(--teal);
}

.operator-card.upcoming {
  background: linear-gradient(110deg, var(--paper-2), #fff9e9);
}

.rank-number {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
}

.operator-logo-wrap {
  display: grid;
  width: 112px;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  background: linear-gradient(145deg, var(--ink), var(--ink-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.operator-logo-wrap img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.operator-main h3 {
  margin: 0 0 5px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.operator-main h3 a {
  color: var(--ink);
  text-decoration: none;
}

.operator-main p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: var(--ink-2);
  background: var(--paper-3);
  border: 1px solid rgba(33, 17, 63, 0.08);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.badge-upcoming {
  color: #6f4100;
  background: var(--accent-soft);
  border-color: rgba(154, 88, 0, 0.24);
}

.badge-reviewed {
  color: #392a9b;
  background: var(--teal-soft);
  border-color: rgba(109, 92, 231, 0.24);
}

.offer-block {
  min-width: 0;
}

.offer-block strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  line-height: 1.35;
}

.offer-block span {
  color: var(--muted);
  font-size: 0.82rem;
}

.score-box {
  padding: 13px 12px;
  background: var(--paper);
  border-radius: 14px;
  text-align: center;
}

.score-number {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.score-box small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.operator-actions {
  display: grid;
  gap: 9px;
}

.operator-actions .button,
.operator-actions .button-ghost {
  width: 100%;
  min-height: 43px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.filter-count {
  margin-left: auto;
  align-self: center;
  color: var(--muted);
  font-size: 0.83rem;
}


.trust-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(3, 1fr);
}

.trust-cell {
  padding: 35px;
  border-right: 1px solid var(--line);
}

.trust-cell:last-child {
  border-right: 0;
}

.trust-cell strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.trust-cell span {
  color: var(--muted);
}

.category-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  padding: 23px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.category-card:nth-child(2n) {
  background: #174f4b;
}

.category-card:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-4px);
}

.category-card span {
  color: #d6dbf2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.page-hero {
  padding: 68px 0 54px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 35px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

.page-hero p {
  max-width: 770px;
  color: var(--ink-3);
  font-size: 1.13rem;
}

.hero-note {
  padding: 23px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs {
  padding: 20px 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #a7a9b2;
}

.breadcrumbs a {
  color: var(--muted);
}

.criteria-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.criteria-list li {
  padding: 9px 13px;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.review-hero {
  padding: 55px 0 48px;
}

.review-hero-card {
  display: grid;
  align-items: center;
  gap: 38px;
  padding: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 200, 87, 0.36), transparent 30%),
    radial-gradient(circle at 72% 90%, rgba(109, 92, 231, 0.34), transparent 35%),
    var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  grid-template-columns: 190px minmax(0, 1fr) 210px;
}

.review-hero-logo {
  display: grid;
  min-height: 135px;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.review-hero-logo img {
  max-height: 78px;
}

.review-hero h1 {
  margin: 8px 0 13px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.review-hero p {
  margin: 0;
  color: #d8dcef;
}

.review-score {
  padding: 24px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 20px;
  text-align: center;
}

.review-score .score-number {
  font-size: 3.25rem;
}

.stars {
  display: block;
  margin: 8px 0 4px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-layout {
  display: grid;
  align-items: start;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-content {
  min-width: 0;
}

.article-content > section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.article-content > section:last-child {
  border-bottom: 0;
}

.article-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
}

.article-content h3 {
  margin-top: 30px;
}

.article-content p,
.article-content li {
  color: var(--ink-3);
  font-size: 1.02rem;
}

.article-content a {
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 23px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-card h3 {
  margin-bottom: 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.fact-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.fact-row {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.fact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-row dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.89rem;
  font-weight: 700;
}

.pros-cons {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.pros,
.cons {
  padding: 25px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pros h3,
.cons h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.pros h3::before,
.cons h3::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
}

.pros h3::before {
  content: "+";
  background: var(--success);
}

.cons h3::before {
  content: "–";
  background: var(--danger);
}

.pros ul,
.cons ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.rating-grid {
  display: grid;
  gap: 13px;
}

.rating-row {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 150px 1fr 42px;
}

.rating-label {
  font-size: 0.85rem;
  font-weight: 750;
}

.rating-track {
  height: 10px;
  overflow: hidden;
  background: var(--paper-3);
  border-radius: 999px;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: inherit;
}

.rating-value {
  font-size: 0.84rem;
  font-weight: 850;
  text-align: right;
}

.source-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.86rem;
}

.source-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 32px;
  color: var(--white);
  background: var(--ink-2);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-panel h2,
.cta-panel h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-panel p {
  margin: 0;
  color: #d8dcef;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  content: "+";
  color: var(--ink);
  background: var(--paper-3);
  border-radius: 50%;
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  padding: 0 21px 19px;
  color: var(--ink-3);
}

.faq-answer[hidden] {
  display: none;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  background: #f2efe8;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--ink-3);
  font-size: 0.88rem;
}

tr:last-child td {
  border-bottom: 0;
}

.comparison-picker {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compare-option {
  position: relative;
}

.compare-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.compare-option label {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.compare-option input:checked + label {
  background: var(--teal-soft);
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.compare-option input:focus-visible + label {
  outline: 3px solid rgba(109, 92, 231, 0.38);
  outline-offset: 3px;
}

.compare-option input:disabled + label {
  opacity: 0.45;
  cursor: not-allowed;
}

.compare-option img {
  width: 62px;
  height: 46px;
  object-fit: contain;
  padding: 7px;
  background: var(--ink);
  border-radius: 10px;
}

.compare-option strong {
  display: block;
  line-height: 1.2;
}

.compare-option small {
  color: var(--muted);
}

.compare-status {
  margin: -12px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.payment-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-card h3 {
  margin-bottom: 6px;
}

.payment-card .examples {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.payment-facts {
  display: grid;
  gap: 12px;
}

.payment-facts div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.payment-facts strong {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.guide-index {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-index .guide-card {
  min-height: 285px;
}

.callout {
  padding: 23px;
  margin: 25px 0;
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout.warning {
  background: var(--accent-soft);
  border-left-color: var(--accent-strong);
}

.callout.launch {
  background: linear-gradient(135deg, var(--accent-soft), var(--paper-2));
  border-left-color: var(--accent-strong);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.methodology-table {
  display: grid;
  gap: 10px;
}

.methodology-row {
  display: grid;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  grid-template-columns: 190px 80px minmax(0, 1fr);
}

.methodology-row strong {
  line-height: 1.25;
}

.methodology-weight {
  color: var(--accent-strong);
  font-size: 1.15rem;
  font-weight: 900;
}

.methodology-row span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-error {
  min-height: 1.2em;
  color: var(--danger);
  font-size: 0.76rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 700;
}

.responsible-banner {
  padding: 25px;
  color: var(--white);
  background: #123b3a;
  border-radius: var(--radius);
}

.responsible-banner strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.responsible-banner p {
  margin-bottom: 12px;
  color: #d8dcef;
}

.site-footer {
  padding: 58px 0 25px;
  color: #d8dcef;
  background: #082c2a;
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(170px, 0.55fr));
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-about {
  max-width: 520px;
  margin-top: 18px;
  color: #abb2cb;
}

.footer-heading {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c9cee0;
  font-size: 0.89rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #939bb6;
  font-size: 0.76rem;
}

.footer-legal p {
  margin: 0;
}

.footer-address {
  font-style: normal;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 60px 0;
}

.not-found-card {
  max-width: 720px;
  padding: clamp(30px, 6vw, 60px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 15vw, 9rem);
  font-weight: 700;
  line-height: 0.75;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: var(--paper);
}

.redirect-card {
  width: min(100%, 540px);
  padding: 38px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.redirect-logo {
  display: grid;
  width: 150px;
  min-height: 90px;
  place-items: center;
  padding: 14px;
  margin: 0 auto 24px;
  background: var(--ink);
  border-radius: 18px;
}

.redirect-logo img {
  max-height: 58px;
}

.redirect-progress {
  height: 7px;
  margin: 22px 0;
  overflow: hidden;
  background: var(--paper-3);
  border-radius: 999px;
}

.redirect-progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: inherit;
  animation: loading 1.4s ease-in-out infinite alternate;
}

@keyframes loading {
  to { transform: translateX(185%); }
}

.print-only {
  display: none;
}

@media (max-width: 1080px) {
  .operator-card {
    grid-template-columns: 40px 100px minmax(180px, 1fr) minmax(200px, 1fr) 115px;
  }

  .operator-actions {
    grid-column: 3 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .category-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 18px 15px 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 15px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .section-heading,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-card {
    align-items: start;
    grid-template-columns: 38px 95px minmax(0, 1fr) 110px;
  }

  .offer-block {
    grid-column: 3 / -1;
  }

  .operator-actions {
    grid-column: 3 / -1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-cell:last-child {
    border-bottom: 0;
  }

  .review-hero-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .review-score {
    grid-column: 1 / -1;
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .comparison-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .methodology-row {
    grid-template-columns: 150px 65px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero::before {
    right: -320px;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button-ghost,
  .cta-panel .button,
  .cta-panel .button-secondary {
    width: 100%;
  }

  .disclosure-strip .container {
    align-items: flex-start;
  }

  .card-grid,
  .guide-index,
  .payment-grid,
  .pros-cons,
  .form-grid,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .operator-card {
    gap: 14px;
    padding: 18px;
    grid-template-columns: 34px 76px minmax(0, 1fr);
  }

  .operator-logo-wrap {
    width: 74px;
    min-height: 62px;
    padding: 9px;
    border-radius: 12px;
  }

  .operator-main {
    min-width: 0;
  }

  .score-box {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 13px;
    text-align: left;
  }

  .score-number {
    font-size: 1.55rem;
  }

  .offer-block,
  .operator-actions {
    grid-column: 1 / -1;
  }

  .operator-actions {
    grid-template-columns: 1fr;
  }

  .filter-count {
    width: 100%;
    margin-left: 0;
  }

  .category-cards {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    min-height: 170px;
  }

  .review-hero-card {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .review-hero-logo {
    width: min(100%, 220px);
  }

  .review-score {
    grid-column: auto;
  }

  .rating-row {
    gap: 8px;
    grid-template-columns: 112px 1fr 34px;
  }

  .comparison-picker {
    grid-template-columns: 1fr;
  }

  .methodology-row {
    gap: 7px;
    grid-template-columns: 1fr auto;
  }

  .methodology-row span:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-actions .button-secondary {
    display: none;
  }

  .category-cards {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .review-hero {
    padding-top: 42px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .article-content p,
  .article-content li {
    font-size: 0.98rem;
  }

  .cta-panel,
  .contact-form {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .operator-actions,
  .filters,
  .cta-panel,
  .disclosure-strip {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .print-only {
    display: block;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

/* Gamblingsters production overrides */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brand img {
  width: 222px;
  height: auto;
  max-height: 52px;
}

.site-footer .brand img {
  filter: brightness(0) invert(1);
}

.language-picker select {
  min-height: 42px;
  max-width: 132px;
  padding: 8px 32px 8px 12px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.operator-card {
  grid-template-columns: 42px 130px minmax(0, 1fr) 210px;
}

.operator-side {
  display: grid;
  gap: 12px;
  align-self: stretch;
  align-content: center;
}

.operator-logo-wrap {
  width: 126px;
  min-height: 86px;
  background: #fff;
  border-color: var(--line);
}

.operator-card[data-operator="bitstarz"] .operator-logo-wrap,
.review-hero-card[data-operator="bitstarz"] .review-hero-logo,
.redirect-card .redirect-logo[src*="bitstarz"] {
  background: #171c2a;
}

.operator-logo-wrap.compact {
  width: 100%;
  max-width: 190px;
  min-height: 88px;
  margin-bottom: 18px;
}

.operator-status-copy {
  margin-top: -2px;
  margin-bottom: 10px !important;
  font-size: 0.8rem !important;
}

.offer-block {
  padding: 12px 14px;
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.availability-line,
.geo-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px !important;
  padding: 7px 10px;
  color: var(--muted) !important;
  background: var(--paper-3);
  border-radius: 999px;
  font-size: 0.78rem !important;
  font-weight: 800;
}

.availability-line::before,
.geo-status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--warning);
  border-radius: 50%;
}

.is-available::before { background: var(--success); }
.is-unavailable::before { background: var(--danger); }

.partner-disclosure {
  margin-top: 12px !important;
  padding-left: 11px;
  color: var(--ink-3) !important;
  border-left: 3px solid var(--accent);
  font-size: 0.8rem !important;
}

.methodology-grid {
  display: grid;
  align-items: start;
  gap: 44px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.methodology-row {
  grid-template-columns: 1fr auto;
}

.section-cta {
  margin-top: 28px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card h3 {
  margin-top: auto;
  margin-bottom: 10px;
  color: #fff;
}

.category-card p {
  color: #d8eeeb;
  font-size: 0.86rem;
}

.review-hero .review-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.review-hero-card {
  display: block;
  padding: clamp(28px, 5vw, 48px);
}

.review-hero-logo {
  width: min(100%, 230px);
  min-height: 118px;
  margin-bottom: 22px;
  background: #fff;
}

.review-hero-card .operator-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
}

.review-hero-card .operator-actions > * {
  width: auto;
}

.review-score {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.review-score > strong {
  display: block;
  margin: 18px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.review-score p {
  color: var(--ink-3);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  color: #c7dcda;
  font-size: 0.78rem;
}

.legal-entity-card + .legal-entity-card {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-entity-card h3,
.sidebar-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.pros h2,
.cons h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
}

.pros h2::before,
.cons h2::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
}
.pros h2::before { content: "+"; background: var(--success); }
.cons h2::before { content: "–"; background: var(--danger); }

.compare-options-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-picker {
  display: block;
}

.compare-option {
  display: block;
}

.compare-option input {
  position: absolute;
  opacity: 0;
}

.compare-option > span {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 9px;
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
}

.compare-option input:checked + span {
  background: var(--teal-soft);
  border-color: var(--teal);
  box-shadow: inset 0 0 0 2px var(--teal);
}

.compare-option input:focus-visible + span {
  outline: 3px solid rgba(225, 107, 82, 0.5);
  outline-offset: 3px;
}

.compare-option img {
  width: 110px;
  max-height: 46px;
  object-fit: contain;
}

.compare-option small {
  color: var(--muted);
}

.responsible-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.responsible-banner h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.toast-root {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  width: min(calc(100% - 36px), 390px);
  pointer-events: none;
}

.toast {
  position: relative;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: auto;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > strong {
  display: block;
  margin: 13px 34px 7px 0;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.toast p {
  color: var(--ink-3);
  font-size: 0.9rem;
}

.toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--paper-3);
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.button.is-disabled {
  color: var(--muted);
  background: var(--paper-3);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .operator-card { grid-template-columns: 38px 110px minmax(0, 1fr) 190px; }
  .compare-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .desktop-action { display: none; }
  .brand img { width: 184px; }
  .operator-card { grid-template-columns: 38px 105px minmax(0, 1fr); }
  .operator-side { grid-column: 2 / -1; grid-template-columns: 120px minmax(0, 1fr); align-items: center; }
  .review-hero .review-layout,
  .methodology-grid { grid-template-columns: 1fr; }
  .review-score { position: static; }
}

@media (max-width: 680px) {
  .language-picker select { max-width: 94px; padding-left: 9px; font-size: 0.76rem; }
  .brand img { width: 154px; }
  .operator-card { grid-template-columns: 32px 78px minmax(0, 1fr); }
  .operator-logo-wrap { width: 78px; min-height: 64px; padding: 8px; }
  .operator-main { grid-column: 3; }
  .operator-side { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .operator-side .score-box { display: flex; align-items: center; justify-content: space-between; }
  .operator-actions { grid-template-columns: 1fr !important; }
  .category-cards,
  .compare-options-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .responsible-banner { align-items: stretch; flex-direction: column; }
  .toast-root { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

@media (max-width: 430px) {
  .brand img { width: 128px; }
  .header-inner { gap: 8px; }
  .language-picker select { max-width: 82px; }
}

/* Review-hero actions need their own contrast treatment on the dark panel. */
.review-hero-card .operator-actions .button {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.review-hero-card .operator-actions .button:hover {
  color: var(--ink);
  background: #ee947f;
}

.review-hero-card .operator-actions .button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.58);
}

.review-hero-card .operator-actions .button-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 680px) {
  .toast {
    padding: 16px;
    border-radius: 16px;
  }

  .toast > strong {
    margin: 8px 30px 5px 0;
    font-size: 1.05rem;
  }

  .toast p {
    display: -webkit-box;
    margin-bottom: 12px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .toast .button-secondary {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .toast-close {
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
  }
}

/* Gamblingsters jungle-temple identity */
:root {
  --ink: #132b1a;
  --ink-2: #1b4329;
  --ink-3: #3f5542;
  --paper: #f4edda;
  --paper-2: #fffaf0;
  --paper-3: #e9e0c8;
  --muted: #6d715f;
  --line: #d2c59e;
  --accent: #d9ad4d;
  --accent-strong: #8a5b16;
  --accent-soft: #f5e5b9;
  --teal: #21552f;
  --teal-soft: #dce8d4;
  --gold: #dfb859;
  --success: #247246;
  --warning: #9a6716;
  --danger: #963e39;
  --white: #fffdf7;
  --shadow-sm: 0 10px 28px rgba(26, 45, 25, 0.09);
  --shadow-md: 0 22px 60px rgba(5, 24, 12, 0.22);
  --radius-sm: 9px;
  --radius: 16px;
  --radius-lg: 26px;
  --header-height: 82px;
}

body {
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("/assets/images/brand/jungle-pattern.svg");
  background-size: 240px 240px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  color: #09170d;
  background: #e6c36b;
}

:focus-visible {
  outline-color: rgba(224, 185, 88, 0.75);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.site-header {
  border-bottom-color: rgba(224, 185, 88, 0.42);
  background: rgba(7, 24, 13, 0.96);
  box-shadow: 0 8px 30px rgba(2, 12, 6, 0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
}

.brand img {
  width: 258px;
  max-height: 58px;
}

.site-footer .brand img {
  filter: none;
}

.site-nav a {
  color: #e5ddc5;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff8e4;
  background: rgba(218, 173, 77, 0.16);
}

.language-picker select {
  color: #f8f0d7;
  background: #173722;
  border-color: rgba(218, 173, 77, 0.52);
}

.menu-toggle {
  color: #f8f0d7;
  background: #173722;
  border-color: rgba(218, 173, 77, 0.52);
}

.button,
.button-secondary,
.button-ghost {
  border-radius: 7px;
  letter-spacing: 0.01em;
}

.button,
.button-secondary {
  color: #102516;
  background: linear-gradient(180deg, #efd47e, #d3a33c);
  border-color: #e4bd5f;
  box-shadow: 0 10px 24px rgba(110, 74, 16, 0.25);
}

.button:hover,
.button-secondary:hover {
  color: #0a1b0f;
  background: linear-gradient(180deg, #f5df96, #dfb64e);
  box-shadow: 0 14px 30px rgba(110, 74, 16, 0.32);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.72);
  border-color: var(--line);
}

.site-header .button-ghost {
  color: #f8f0d7;
  background: transparent;
  border-color: rgba(241, 213, 128, 0.42);
}

.site-header .button-ghost:hover {
  color: #fff8e4;
  background: rgba(218, 173, 77, 0.14);
}

.site-header .button-secondary {
  color: #102516;
}

.disclosure-strip {
  color: #e6dec7;
  background: #183923;
  border-block-color: rgba(218, 173, 77, 0.34);
}

.disclosure-strip a {
  color: #f0d27b;
}

.disclosure-icon {
  color: #102516;
  background: var(--accent);
}

.hero {
  display: grid;
  min-height: clamp(630px, 76vh, 790px);
  align-items: center;
  padding: clamp(78px, 10vw, 132px) 0 88px;
  color: #fff8e4;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 8, 0.91) 0%, rgba(5, 24, 12, 0.78) 43%, rgba(8, 29, 15, 0.25) 72%, rgba(4, 18, 9, 0.5) 100%),
    linear-gradient(0deg, rgba(4, 17, 8, 0.9) 0%, transparent 26%),
    url("/assets/images/brand/jungle-temple.svg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(218, 173, 77, 0.36);
}

.hero::before {
  display: none;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.62fr);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: #fff8e4;
  font-size: clamp(3.2rem, 7vw, 6.25rem);
  letter-spacing: -0.052em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.55);
}

.hero .eyebrow {
  color: #f0ca68;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  max-width: 720px;
  color: #eee6cf;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero .button-ghost {
  color: #fff8e4;
  background: rgba(7, 27, 14, 0.48);
  border-color: rgba(255, 244, 208, 0.58);
}

.hero .button-ghost:hover {
  color: #fff8e4;
  background: rgba(218, 173, 77, 0.16);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: #fff8e4;
  background: linear-gradient(145deg, rgba(9, 35, 17, 0.9), rgba(24, 62, 35, 0.75));
  border: 1px solid rgba(239, 203, 104, 0.58);
  border-radius: 18px 18px 18px 2px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.hero-panel::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  content: "";
  background: url("/assets/images/brand/mark-monochrome.svg") center / contain no-repeat;
  opacity: 0.07;
}

.hero-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: #f3d57d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  color: #e5ddc6;
}

.hero-panel .geo-status {
  color: #dfe9d6 !important;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  position: relative;
}

.ranking-section {
  background: rgba(255, 250, 240, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
}

.section-dark {
  color: #fff8e4;
  background-color: #0b2615;
  background-image:
    linear-gradient(120deg, rgba(25, 73, 38, 0.52), transparent 55%),
    url("/assets/images/brand/jungle-pattern.svg");
  background-blend-mode: multiply;
  border-block: 1px solid rgba(218, 173, 77, 0.22);
}

.section-dark p,
.section-dark .section-heading p {
  color: #d9d3be;
}

.section-dark a:not(.button):not(.button-secondary):not(.button-ghost) {
  color: #f0cc70;
}

.section-heading .eyebrow,
.card-kicker {
  color: var(--accent-strong);
}

.operator-card,
.editorial-card,
.info-card,
.guide-card,
.payment-card,
.sidebar-card,
.pros,
.cons,
.filters,
.trust-grid,
.hero-note,
.not-found-card,
.redirect-card,
.compare-option > span {
  background: rgba(255, 250, 240, 0.95);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.operator-card {
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(35, 50, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.operator-card:hover {
  border-color: #b8a36d;
  box-shadow: 0 18px 42px rgba(29, 48, 26, 0.13);
  transform: translateY(-2px);
}

.operator-card.featured {
  border-color: rgba(210, 163, 60, 0.9);
  box-shadow: inset 5px 0 #d7aa45, 0 14px 36px rgba(96, 66, 19, 0.12);
}

.operator-card.reviewed {
  border-left-color: #2e6d3d;
}

.operator-card.upcoming {
  background: linear-gradient(105deg, rgba(255, 250, 240, 0.98), rgba(246, 230, 188, 0.92));
}

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #132b1a;
  background: linear-gradient(180deg, #f3d986, #d0a23d);
  border: 1px solid #b98628;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
}

.operator-logo-wrap {
  background: #fff;
  border-color: #d8cda9;
  border-radius: 11px;
}

.operator-card[data-operator="slots-inc"] .operator-logo-wrap,
.operator-card[data-operator="pokies2go"] .operator-logo-wrap,
.editorial-card .operator-logo-wrap.compact:has(img[src*="slots-inc"]),
.editorial-card .operator-logo-wrap.compact:has(img[src*="pokies2go"]),
.review-hero-card[data-operator="slots-inc"] .review-hero-logo,
.review-hero-card[data-operator="pokies2go"] .review-hero-logo {
  background: #0d0d11;
}

.offer-block {
  background: #f6efdf;
  border-color: #ded0a9;
}

.score-box {
  background: #efe6cf;
  border: 1px solid #dacba2;
}

.badge-upcoming {
  color: #6f470d;
  background: #f6e7bd;
  border-color: rgba(154, 103, 22, 0.3);
}

.badge-reviewed {
  color: #184d2d;
  background: #dcebd8;
  border-color: rgba(36, 114, 70, 0.25);
}

.partner-disclosure {
  border-left-color: #d2a442;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  color: #fff8e4;
  background: #173b23;
  border-color: #173b23;
}

.category-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff8e4;
  background:
    linear-gradient(145deg, rgba(8, 31, 15, 0.9), rgba(30, 79, 43, 0.84)),
    url("/assets/images/brand/jungle-portal.svg") center 42% / 145% auto;
  border-color: rgba(218, 173, 77, 0.34);
  border-radius: 14px;
}

.category-card:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(32, 65, 32, 0.94), rgba(106, 83, 27, 0.78)),
    url("/assets/images/brand/jungle-temple.svg") center / cover;
}

.category-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 14, 6, 0.86), transparent 62%);
}

.category-card:hover {
  color: #fff8e4;
  background-color: #184728;
  transform: translateY(-5px);
}

.category-card span {
  color: #e5c86f;
}

.category-card p {
  color: #e2dcc7;
}

.trust-grid {
  background: #fffaf0;
  border-radius: 16px;
}

.trust-cell {
  position: relative;
  min-height: 205px;
  border-color: var(--line);
}

.trust-cell::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  content: "";
  background: #d6aa45;
}

.trust-cell h3 {
  font-size: 1.48rem;
}

.editorial-card::after,
.guide-card::after {
  background: url("/assets/images/brand/mark-monochrome.svg") center / contain no-repeat;
  opacity: 0.045;
}

/* Restores the original Gamblingsters Casino of the Month idea as a transparent watchlist feature. */
.casino-month {
  overflow: hidden;
  color: #fff8e4;
  background:
    radial-gradient(circle at 75% 10%, rgba(231, 194, 97, 0.28), transparent 31%),
    linear-gradient(130deg, #071b0e 0%, #153a21 52%, #6a5520 100%);
  border-block: 1px solid rgba(222, 180, 75, 0.42);
}

.casino-month-grid {
  display: grid;
  min-height: 560px;
  align-items: stretch;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
}

.casino-month-copy {
  align-self: center;
  padding-block: 16px;
}

.casino-month .eyebrow {
  color: #e8c664;
}

.casino-month-badge {
  display: inline-flex;
  margin: 0 0 25px 10px;
  padding: 7px 11px;
  color: #f8efcf;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 198, 100, 0.38);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.casino-month-logo {
  display: grid;
  width: min(100%, 360px);
  min-height: 92px;
  place-items: center;
  padding: 16px 20px;
  margin-bottom: 26px;
  background: #0b0c10;
  border: 1px solid rgba(232, 198, 100, 0.34);
  border-radius: 10px;
}

.casino-month-logo img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.casino-month h2 {
  max-width: 700px;
  margin-bottom: 20px;
  color: #fff8e4;
  font-size: clamp(2.4rem, 5vw, 4.45rem);
}

.casino-month p {
  max-width: 720px;
  color: #ddd6be;
  font-size: 1.02rem;
}

.casino-month-status {
  display: inline-flex;
  margin: 4px 0 22px !important;
  padding: 8px 12px;
  color: #f5e7bc !important;
  background: rgba(228, 184, 76, 0.12);
  border-left: 3px solid #e2b851;
}

.casino-month-art {
  min-height: 560px;
  background:
    linear-gradient(90deg, #153a21 0%, transparent 30%),
    linear-gradient(0deg, rgba(5, 20, 9, 0.62), transparent 42%),
    url("/assets/images/brand/jungle-portal.svg") center / cover no-repeat;
  border-left: 1px solid rgba(232, 198, 100, 0.27);
  box-shadow: inset 40px 0 70px rgba(8, 28, 13, 0.7);
}

.page-hero {
  color: #fff8e4;
  background:
    linear-gradient(90deg, rgba(4, 18, 9, 0.93), rgba(10, 38, 19, 0.72), rgba(12, 35, 17, 0.48)),
    url("/assets/images/brand/jungle-temple.svg") center 43% / cover;
  border-bottom-color: rgba(218, 173, 77, 0.4);
}

.page-hero h1,
.page-hero .eyebrow {
  color: #fff8e4;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.page-hero .eyebrow {
  color: #efcc71;
}

.page-hero p {
  color: #e8e1cd;
}

.hero-note {
  color: #fff8e4;
  background: rgba(8, 29, 14, 0.83);
  border-color: rgba(232, 198, 100, 0.42);
  backdrop-filter: blur(9px);
}

.hero-note p {
  color: #ddd6c1;
}

.breadcrumbs a,
.breadcrumbs li {
  color: #6d715f;
}

.review-hero {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.6), rgba(244, 237, 218, 0));
}

.review-hero-card {
  background:
    linear-gradient(110deg, rgba(5, 24, 12, 0.96), rgba(25, 65, 35, 0.9)),
    url("/assets/images/brand/jungle-temple.svg") center / cover;
  border: 1px solid rgba(222, 180, 75, 0.46);
  border-radius: 18px;
}

.review-hero p,
.review-meta {
  color: #ddd7c2;
}

.review-score {
  background: #fff8e7;
  border: 1px solid #d6c38e;
}

.review-hero-card .operator-actions .button {
  color: #102516;
  background: linear-gradient(180deg, #efd47e, #d3a33c);
}

.review-hero-card .operator-actions .button:hover {
  color: #0a1b0f;
  background: linear-gradient(180deg, #f5df96, #dfb64e);
}

.review-hero-card .operator-actions .button-ghost {
  color: #fff8e4;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(239, 210, 126, 0.58);
}

.article-content > section {
  border-color: var(--line);
}

.callout,
.cta-panel,
.responsible-banner {
  color: #fff8e4;
  background: linear-gradient(135deg, #102f1b, #1e5630);
  border-color: rgba(218, 173, 77, 0.45);
}

.callout p,
.cta-panel p,
.responsible-banner p {
  color: #ddd6c1;
}

.methodology-table,
.table-wrap {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.95);
}

.contact-quick {
  padding: 42px 0 0;
}

.contact-quick-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 42px);
  color: #fff8e4;
  background:
    linear-gradient(120deg, rgba(7, 28, 14, 0.95), rgba(28, 76, 40, 0.88)),
    url("/assets/images/brand/jungle-portal.svg") center / cover;
  border: 1px solid rgba(218, 173, 77, 0.45);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.contact-quick-card .eyebrow {
  color: #efcc71;
}

.contact-email {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  color: #fff8e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 700;
  text-decoration-color: #d9ad4d;
}

.contact-email:hover {
  color: #f1d277;
}

.contact-quick-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: #ded7c1;
}

.site-footer {
  color: #ddd6c1;
  background:
    linear-gradient(120deg, rgba(6, 23, 11, 0.97), rgba(15, 48, 24, 0.94)),
    url("/assets/images/brand/jungle-temple.svg") center 70% / cover;
  border-top: 1px solid rgba(218, 173, 77, 0.4);
}

.footer-about,
.footer-links a,
.footer-legal {
  color: #c9c3ae;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #f0cb6e;
}

.footer-legal {
  border-top-color: rgba(239, 211, 126, 0.19);
}

.not-found,
.redirect-page {
  background:
    linear-gradient(rgba(5, 23, 11, 0.88), rgba(5, 23, 11, 0.88)),
    url("/assets/images/brand/jungle-temple.svg") center / cover;
}

.not-found-card,
.redirect-card {
  background: rgba(255, 250, 240, 0.96);
}

.toast {
  background: #fffaf0;
  border-color: #d3c49c;
  border-top-color: #d5a843;
}

@media (max-width: 1080px) {
  .brand img { width: 218px; }
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr); }
  .casino-month-grid { grid-template-columns: minmax(0, 1fr) minmax(290px, 0.68fr); }
}

@media (max-width: 900px) {
  .brand img { width: 190px; }
  .site-nav {
    color: #fff8e4;
    background: rgba(7, 24, 13, 0.99);
    border-top: 1px solid rgba(218, 173, 77, 0.35);
  }
  .site-nav a { color: #eee6cf; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 610px; }
  .casino-month-grid { grid-template-columns: 1fr; }
  .casino-month-art { min-height: 430px; border-top: 1px solid rgba(232, 198, 100, 0.27); border-left: 0; }
}

@media (max-width: 680px) {
  :root { --header-height: 72px; }
  .brand img { width: 160px; }
  .hero { min-height: 670px; padding: 65px 0 68px; background-position: 56% center; }
  .hero h1 { font-size: clamp(2.72rem, 14vw, 4.45rem); }
  .hero-panel { padding: 22px; }
  .disclosure-strip { font-size: 0.8rem; }
  .rank-number { width: 32px; height: 32px; font-size: 1rem; }
  .casino-month-grid { min-height: auto; gap: 26px; }
  .casino-month-art { min-height: 360px; }
  .casino-month-badge { margin-left: 0; }
  .page-hero { padding-top: 54px; }
  .contact-email { overflow-wrap: anywhere; }
}

@media (max-width: 430px) {
  .brand img { width: 136px; }
  .hero { min-height: 620px; }
  .hero-actions { gap: 10px; }
  .casino-month-art { min-height: 310px; }
}

.review-score p {
  color: var(--ink-3);
}

@media (max-width: 680px) {
  .language-picker select {
    width: 108px;
    max-width: 108px;
    padding-right: 28px;
    font-size: 0.78rem;
  }
}

@media (max-width: 430px) {
  .brand img { width: 128px; }
  .language-picker select { width: 104px; max-width: 104px; }
}

.brand-logo-mobile { display: none; }
.brand-logo-desktop { display: block; }

@media (max-width: 680px) {
  .brand-logo-desktop { display: none; }
  .brand-logo-mobile { display: block; width: 148px !important; max-height: 44px !important; }
}

@media (max-width: 430px) {
  .brand-logo-mobile { width: 142px !important; }
}
