@charset "UTF-8";

:root {
  --navy: #08223a;
  --navy-2: #0e314f;
  --green: #216b51;
  --green-2: #2f7d5b;
  --gold: #d6b36a;
  --gold-soft: #f5ead0;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef3f6;
  --ink: #102033;
  --muted: #5f6f7d;
  --line: #d8e1e7;
  --line-strong: #bdcbd5;
  --danger: #9a332f;
  --success: #216b51;
  --shadow: 0 18px 40px rgba(8, 34, 58, 0.1);
  --shadow-soft: 0 10px 24px rgba(8, 34, 58, 0.08);
  --radius: 8px;
  --risk-bar-height: 40px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100%;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section-padding {
  padding: 76px 0;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 150px;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 56px;
  font-weight: 800;
}

h2 {
  font-size: 38px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 750;
}

p + p {
  margin-top: 16px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.button,
.header-button,
.mobile-menu__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.header-button:hover,
.mobile-menu__cta:hover {
  transform: translateY(-1px);
}

.button--primary,
.header-button,
.mobile-menu__cta {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(33, 107, 81, 0.2);
}

.button--primary:hover,
.header-button:hover,
.mobile-menu__cta:hover {
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(8, 34, 58, 0.18);
}

.button--secondary {
  background: #ffffff;
  border-color: var(--line-strong);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.button--ghost {
  color: var(--navy);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.button-link::after {
  content: "->";
  color: var(--gold);
  transition: transform 0.2s ease;
}

.button-link:hover::after {
  transform: translateX(3px);
}

.risk-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.risk-bar__inner {
  min-height: var(--risk-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 0;
  text-align: center;
  font-size: 13px;
}

.risk-bar__badge {
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.risk-bar a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body {
  padding-top: var(--risk-bar-height);
}

.site-header {
  position: sticky;
  top: var(--risk-bar-height);
  z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__main {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark img {
  width: 46px;
  height: 46px;
}

.site-logo__text {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

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

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface-2);
  color: var(--navy);
}

.burger-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius);
  background: var(--navy);
  margin-left: auto;
}

.burger-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-shell {
  position: relative;
  padding: 54px 0 28px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.98), rgba(245, 247, 250, 0.94)),
    radial-gradient(circle at 88% 12%, rgba(214, 179, 106, 0.24), transparent 26%);
}

.hero-shell--premium {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 34px 0 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.16), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(33, 107, 81, 0.22), transparent 28%),
    linear-gradient(180deg, #0b1f34 0%, #101f20 58%, #1c1010 100%);
  border-bottom: 1px solid rgba(214, 179, 106, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.hero-shell--premium::before,
.hero-shell--premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.42), transparent);
}

.hero-shell--premium::before {
  top: 0;
  bottom: auto;
}

.hero-premium {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.hero-premium__kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-premium h1 {
  max-width: 1080px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
}

.hero-premium h1 span {
  color: var(--gold);
}

.hero-premium__lead,
.hero-premium__notice {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.hero-premium__notice {
  max-width: 760px;
  font-size: 13px;
}

.hero-premium__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-premium__pills li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 750;
}

.hero-premium .hero-actions {
  margin-top: 6px;
}

.hero-actions--center {
  justify-content: center;
}

.hero-shell--premium .button--secondary {
  border-color: rgba(214, 179, 106, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.hero-shell--premium .button--secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.hero-premium__section-title {
  display: grid;
  grid-template-columns: minmax(54px, 1fr) auto minmax(54px, 1fr);
  align-items: center;
  width: min(100%, 380px);
  gap: 12px;
  margin-top: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize;
}

.hero-premium__section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.7));
}

.hero-premium__section-title span:last-child {
  background: linear-gradient(90deg, rgba(214, 179, 106, 0.7), transparent);
}

.inner-hero,
.casino-review-hero {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 179, 106, 0.2), transparent 26%),
    linear-gradient(135deg, #071d32 0%, #0a3236 56%, #113a2e 100%);
  border-bottom: 1px solid rgba(214, 179, 106, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero::after,
.casino-review-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.52), transparent);
}

.inner-hero__grid,
.casino-review-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: end;
}

.casino-review-hero__grid {
  align-items: center;
}

.inner-hero__copy,
.casino-review-hero__copy,
.inner-hero__panel,
.casino-review-hero__panel {
  display: grid;
  gap: 14px;
}

.inner-hero .eyebrow,
.casino-review-hero .eyebrow {
  margin-bottom: 0;
  color: var(--gold);
}

.inner-hero .eyebrow::before,
.casino-review-hero .eyebrow::before {
  background: var(--green-2);
}

.inner-hero h1,
.casino-review-hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(40px, 4.3vw, 62px);
}

.casino-review-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 4vw, 58px);
}

.inner-hero p:not(.eyebrow),
.casino-review-hero p:not(.eyebrow) {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.inner-hero__meta,
.casino-review-hero__meta,
.review-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inner-hero__meta span,
.casino-review-hero__meta span,
.review-row__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
}

.review-row__meta span {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--navy);
}

.inner-hero__panel,
.casino-review-hero__panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.inner-hero__panel h2,
.inner-hero__panel h3,
.inner-hero__panel p,
.inner-hero__panel li,
.casino-review-hero__panel h2,
.casino-review-hero__panel h3,
.casino-review-hero__panel p,
.casino-review-hero__panel li {
  color: inherit;
}

.inner-hero__stat,
.casino-review-hero__score {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.inner-hero__stat strong,
.casino-review-hero__score strong {
  color: var(--gold);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.inner-hero__stat span,
.casino-review-hero__score span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.casino-review-hero__logo {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #ffffff;
}

.casino-review-hero__logo--dark {
  background: var(--navy);
}

.casino-review-hero__logo img {
  max-width: 220px;
  max-height: 76px;
}

.content-band {
  padding: 62px 0;
}

.content-band--compact {
  padding: 42px 0;
}

.content-band--alt {
  background: var(--surface-2);
}

.content-band--risk {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.content-band--risk h2,
.content-band--risk h3,
.content-band--risk p,
.content-band--risk li,
.content-band--risk .section-kicker {
  color: inherit;
}

.content-band--risk .button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.content-band--risk .button--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.risk-copy-left {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.risk-copy-left h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 52px);
}

.risk-copy-left p:not(.section-kicker) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.43fr);
  gap: 24px;
  align-items: start;
}

.editorial-layout--wide-aside {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
}

.editorial-panel,
.editorial-aside,
.feature-panel,
.review-row,
.review-section,
.review-summary-bar,
.process-step,
.support-card,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.editorial-panel,
.editorial-aside,
.feature-panel,
.review-section,
.support-card,
.legal-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.editorial-panel--soft,
.feature-panel--soft {
  background: var(--surface-2);
}

.editorial-panel--accent,
.review-section--accent {
  border-left: 4px solid var(--green);
}

.editorial-panel p,
.editorial-aside p,
.feature-panel p,
.review-section p,
.review-row p,
.process-step p,
.support-card p,
.legal-panel p {
  color: var(--muted);
}

.signal-list,
.check-list {
  display: grid;
  gap: 10px;
}

.signal-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.signal-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
}

.audit-rail,
.review-summary-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.audit-rail__item,
.review-summary-bar__item {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.audit-rail__item:last-child,
.review-summary-bar__item:last-child {
  border-right: 0;
}

.audit-rail__item strong,
.review-summary-bar__item strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.audit-rail__item span,
.review-summary-bar__item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.review-strip {
  display: grid;
  gap: 14px;
}

.review-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-row:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.review-row__logo {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.review-row__logo--dark {
  background: var(--navy);
}

.review-row__logo img {
  max-width: 128px;
  max-height: 60px;
  object-fit: contain;
}

.review-row__body {
  display: grid;
  gap: 10px;
}

.review-row__actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 14px;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  align-items: start;
}

.process-step::before {
  content: counter(process);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.support-directory,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.pros-cons-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.editorial-layout > .review-section .pros-cons-grid {
  grid-template-columns: 1fr;
}

.risk-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 32px;
  align-items: center;
}

.risk-cta__copy,
.risk-cta__panel {
  display: grid;
  gap: 16px;
}

.risk-cta__copy {
  max-width: 780px;
}

.risk-cta__copy h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 52px);
}

.risk-cta__copy p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.risk-cta__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.risk-cta__panel h3 {
  color: #ffffff;
}

.risk-cta__panel p {
  color: rgba(255, 255, 255, 0.78);
}

.risk-cta__checks {
  display: grid;
  gap: 10px;
}

.risk-cta__checks li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.risk-cta__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.risk-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-shell__grid,
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.hero-shell__copy,
.hero-shell__panel,
.section-shell,
.ranking-card,
.story-card,
.brand-card,
.review-breakdown,
.info-strip,
.metrics-card,
.warning-panel,
.trust-card,
.contact-card,
.contact-form,
.legal-card,
.comparison-wrap,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.hero-shell__copy {
  padding: 42px;
  border-top: 4px solid var(--green);
}

.hero-shell__copy h1 {
  margin-bottom: 18px;
}

.hero-shell__copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-ticker,
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.hero-ticker li,
.trust-list li {
  min-height: 72px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-shell__panel {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(8, 34, 58, 0.98), rgba(10, 48, 47, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.hero-shell__panel h2,
.hero-shell__panel h3,
.hero-shell__panel p,
.hero-shell__panel li {
  color: inherit;
}

.score-chip {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.score-chip strong {
  color: var(--gold);
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.score-chip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel__eyebrow,
.brand-pill,
.story-card__label,
.stat-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel-list,
.brand-card__list,
.review-breakdown ul,
.info-strip ul,
.legal-card ul {
  display: grid;
  gap: 10px;
}

.hero-panel-list li,
.brand-card__list li,
.review-breakdown li,
.info-strip li,
.legal-card li {
  position: relative;
  padding-left: 20px;
  color: inherit;
}

.hero-panel-list li::before,
.brand-card__list li::before,
.review-breakdown li::before,
.info-strip li::before,
.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
}

.section-shell {
  padding: 34px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head__aside {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-left: 4px solid var(--green);
  color: var(--muted);
  font-size: 15px;
}

.ranking-grid,
.card-grid,
.story-grid,
.brand-grid,
.metric-grid,
.trust-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

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

.story-grid,
.card-grid--3,
.trust-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ranking-card,
.story-card,
.brand-card,
.review-breakdown,
.info-strip,
.metrics-card,
.trust-card,
.contact-card,
.legal-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.ranking-card {
  position: relative;
  min-height: 100%;
  border-top: 4px solid var(--green);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.ranking-card__media {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.ranking-card__media--dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.ranking-card__logo,
.brand-card__logo {
  max-width: 210px;
  max-height: 78px;
  object-fit: contain;
}

.brand-card__logo--dark {
  width: min(100%, 220px);
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--navy);
}

.ranking-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ranking-card__rank {
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.editorial-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--navy);
  font-weight: 800;
}

.editorial-score strong {
  font-size: 42px;
  line-height: 1;
}

.score-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.ranking-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.comparison-wrap {
  overflow: hidden;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison-table {
  min-width: 900px;
  background: #ffffff;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8fafb;
}

.comparison-table tbody tr:hover {
  background: #f2f7f5;
}

.comparison-table td {
  color: var(--muted);
  font-size: 14px;
}

.comparison-table td:first-child {
  color: var(--navy);
  font-weight: 800;
}

.comparison-table a {
  color: var(--green);
  font-weight: 800;
}

.table-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.story-card,
.trust-card,
.metrics-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover,
.trust-card:hover,
.metrics-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.metrics-card {
  min-height: 136px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.metric-number {
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.split-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 22px;
  align-items: start;
}

.info-strip,
.warning-panel {
  align-self: start;
}

.warning-panel {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--navy);
  border-color: var(--navy);
  color: rgba(255, 255, 255, 0.9);
}

.warning-panel h2,
.warning-panel h3,
.warning-panel p,
.warning-panel li,
.warning-panel .section-kicker {
  color: inherit;
}

.warning-panel .button--secondary {
  color: var(--navy);
}

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

.section-shell > h2 + .faq-list,
.section-shell > p + .faq-list {
  margin-top: 24px;
}

.faq-list details {
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 62px 18px 20px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--green);
  color: #ffffff;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-form {
  padding: 26px;
}

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

.field + .field,
.contact-form .checkbox-row,
.contact-form button {
  margin-top: 14px;
}

.field label,
.fieldset-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 125, 91, 0.12);
  outline: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-row input {
  margin-top: 6px;
}

.form-feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
}

.form-feedback.is-success {
  background: #e4f2eb;
  color: var(--success);
}

.form-feedback.is-error {
  background: #f8e5e2;
  color: var(--danger);
}

.legal-stack,
.brand-stack {
  display: grid;
  gap: 18px;
}

.legal-card p,
.story-card p,
.brand-card p,
.review-breakdown p,
.info-strip p,
.contact-card p,
.section-shell p,
.trust-card p {
  color: var(--muted);
}

.legal-card a,
.legal-panel a,
.contact-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.75fr));
  gap: 30px;
  padding: 54px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand,
.site-footer__column {
  display: grid;
  gap: 12px;
}

.site-footer .site-logo__text {
  color: #ffffff;
}

.site-footer__brand p,
.site-footer__meta p,
.site-footer__column a {
  color: inherit;
}

.site-footer__column h3 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.site-footer__column a {
  font-size: 14px;
}

.site-footer__column a:hover {
  color: var(--gold);
}

.site-footer__note-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__note-grid span {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.site-footer__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0 32px;
  font-size: 13px;
}

.site-footer__legal-line {
  text-align: right;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 34, 58, 0.96);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner__content h2,
.cookie-settings__panel h2 {
  color: inherit;
  font-size: 22px;
}

.cookie-banner__content p {
  max-width: 760px;
  margin-top: 6px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .button--secondary,
.cookie-banner .button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #ffffff;
}

.cookie-banner .button--secondary:hover,
.cookie-banner .button--ghost:hover {
  background: #ffffff;
  color: var(--navy);
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 34, 58, 0.58);
  backdrop-filter: blur(8px);
}

.cookie-settings__panel {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-settings__panel p {
  margin-top: 8px;
  color: var(--muted);
}

.cookie-settings__panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.cookie-settings__panel .button {
  margin-top: 18px;
}

.cookie-settings__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--navy);
  font-size: 24px;
}

.thank-popup {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.thank-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 34, 58, 0.55);
}

.thank-popup__box {
  position: relative;
  width: min(100% - 32px, 430px);
  margin: 12vh auto 0;
  padding: 30px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-popup__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
}

.thank-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--navy);
  font-size: 24px;
}

.page-container,
.page-content {
  padding: 42px 0;
}

@media (max-width: 1100px) {
  .site-nav,
  .header-button {
    display: none;
  }

  .burger-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: max-height 0.24s ease, padding 0.24s ease, opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .mobile-menu.is-open {
    max-height: 560px;
    padding-top: 14px;
    padding-bottom: 16px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--navy);
    font-weight: 800;
  }

  .mobile-menu__cta {
    color: #ffffff !important;
  }

  .hero-shell__grid,
  .review-layout,
  .inner-hero__grid,
  .casino-review-hero__grid,
  .split-grid,
  .contact-layout,
  .editorial-layout,
  .editorial-layout--wide-aside,
  .risk-cta,
  .section-head,
  .site-footer__top,
  .site-footer__meta {
    grid-template-columns: 1fr;
  }

  .review-row {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .review-row__actions {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .ranking-grid,
  .card-grid--2,
  .story-grid,
  .card-grid--3,
  .trust-grid,
  .support-grid,
  .metric-grid,
  .audit-rail,
  .review-summary-bar,
  .support-directory,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__legal-line {
    text-align: left;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-padding {
    padding: 56px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .risk-bar__inner {
    justify-content: flex-start;
    text-align: left;
  }

  .site-header__main {
    min-height: 72px;
  }

  .site-logo__text {
    max-width: 150px;
    font-size: 16px;
  }

  .hero-shell {
    padding-top: 30px;
  }

  .hero-shell--premium {
    min-height: auto;
    padding: 32px 0 36px;
  }

  .hero-premium {
    gap: 10px;
  }

  .hero-premium h1 {
    font-size: 32px;
  }

  .hero-premium__lead {
    font-size: 16px;
  }

  .hero-premium__section-title {
    gap: 14px;
    margin-top: 4px;
    font-size: 22px;
  }

  .inner-hero,
  .casino-review-hero {
    padding: 38px 0;
  }

  .inner-hero h1,
  .casino-review-hero h1 {
    font-size: 34px;
  }

  .content-band {
    padding: 46px 0;
  }

  .hero-shell__copy,
  .hero-shell__panel,
  .section-shell,
  .ranking-card,
  .story-card,
  .brand-card,
  .review-breakdown,
  .info-strip,
  .warning-panel,
  .trust-card,
  .contact-card,
  .contact-form,
  .legal-card,
  .inner-hero__panel,
  .casino-review-hero__panel,
  .editorial-panel,
  .editorial-aside,
  .feature-panel,
  .review-section,
  .support-card,
  .legal-panel {
    padding: 20px;
  }

  .hero-ticker,
  .trust-list,
  .ranking-grid,
  .card-grid--2,
  .story-grid,
  .card-grid--3,
  .trust-grid,
  .support-grid,
  .metric-grid,
  .audit-rail,
  .review-summary-bar,
  .support-directory,
  .feature-grid,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  .review-row__actions {
    justify-items: stretch;
  }

  .hero-actions,
  .ranking-card__actions,
  .review-row__actions,
  .risk-cta__actions,
  .split-actions,
  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button,
  .ranking-card__actions .button,
  .review-row__actions .button,
  .risk-cta__actions .button,
  .split-actions .button,
  .cookie-banner__actions .button {
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 150px;
    padding: 13px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .risk-bar__inner {
    font-size: 12px;
  }

  .site-logo__mark,
  .site-logo__mark img {
    width: 42px;
    height: 42px;
  }

  .site-logo__text {
    max-width: 128px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

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

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