:root {
  --ink: #10272c;
  --ink-soft: #345057;
  --paper: #f7f5ee;
  --paper-deep: #eeeade;
  --white: #ffffff;
  --brand: #0b6259;
  --brand-dark: #08463f;
  --mint: #c9eee4;
  --accent: #f2b84b;
  --accent-soft: #fff0c9;
  --coral: #d85f50;
  --line: #cdd8d4;
  --shadow: 0 16px 40px rgba(16, 39, 44, 0.1);
  --shadow-small: 0 7px 18px rgba(16, 39, 44, 0.08);
  --radius: 22px;
  --radius-small: 12px;
  --content: 1160px;
  --reading: 790px;
  --header-height: 72px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(242, 184, 75, 0.16), transparent 23rem),
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 46%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #06332e;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

p,
ul,
ol,
table {
  margin-top: 0;
}

p {
  max-width: none;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

strong {
  font-weight: 750;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 8px;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(16, 39, 44, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--content));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand-link {
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand-link img {
  width: 217px;
  height: 42px;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 23px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -7px;
}

.menu-icon::after {
  position: absolute;
  top: 7px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

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

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

.site-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.site-nav a {
  min-height: 44px;
  padding: 0.65rem 0.58rem;
  display: inline-flex;
  align-items: center;
  color: #e7f2ef;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

main {
  overflow: clip;
}

section,
.content-anchor {
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.wrap {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.hero {
  position: relative;
  padding: clamp(3.25rem, 5vw, 4.5rem) 0 4rem;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(201, 238, 228, 0.3)),
    radial-gradient(circle at 88% 20%, rgba(242, 184, 75, 0.2), transparent 23rem);
  border-bottom: 1px solid rgba(16, 39, 44, 0.1);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 2.5rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background-image: linear-gradient(rgba(11, 98, 89, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 98, 89, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 50%;
  content: "";
  transform: rotate(12deg);
}

.eyebrow,
.kicker {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

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

.hero h1 {
  max-width: none;
}

.updated {
  width: fit-content;
  margin-bottom: 1.15rem;
  padding: 0.42rem 0.72rem;
  color: var(--brand-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-copy {
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
}

.hero-copy p {
  max-width: none;
}

.jump-link {
  min-height: 48px;
  margin-top: 0.65rem;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background: var(--brand);
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.jump-link:hover {
  color: var(--white);
  background: var(--brand-dark);
}

.evidence-strip {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  list-style: none;
}

.evidence-strip li {
  min-width: 0;
  padding: 1.05rem 1.15rem;
  background: var(--white);
}

.metric-number {
  display: block;
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 0.38rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section-block {
  padding: var(--space-7) 0;
  border-top: 1px solid rgba(16, 39, 44, 0.12);
}

.section-block:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.46);
}

.section-intro {
  font-size: 1.1rem;
}

.section-note,
.disclosure,
.legal-note {
  max-width: 920px;
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.disclosure {
  margin: 1.4rem 0 2rem;
}

.source-order {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.casino-list {
  margin: 2rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.casino-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(180px, 23%) minmax(100px, 12%) minmax(300px, 43%) minmax(175px, 22%);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.casino-card > div {
  min-width: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.casino-card > div + div {
  border-left: 1px solid var(--line);
}

.brand-zone {
  align-items: center;
  text-align: center;
}

.brand-zone h3 {
  margin-bottom: 0.45rem;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-zone img {
  width: min(150px, 100%);
  height: 68px;
  object-fit: contain;
}

.status-zone {
  align-items: center;
  text-align: center;
}

.status-ring {
  width: 74px;
  height: 74px;
  display: grid;
  place-content: center;
  color: var(--brand-dark);
  background: var(--mint);
  border: 7px solid #e9f8f4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--brand);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bonus-zone {
  background: #f9fbfa;
}

.zone-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-zone p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.42;
}

.cta-zone {
  align-items: center;
  background: var(--accent-soft);
}

.casino-cta {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  background: var(--brand);
  border-radius: 10px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.casino-cta:hover {
  color: var(--white);
  background: var(--brand-dark);
}

.table-scroll {
  max-width: 100%;
  margin: 1.5rem 0 0.8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.94rem;
}

caption {
  padding: 1rem;
  color: var(--white);
  background: var(--brand-dark);
  font-weight: 800;
  text-align: left;
}

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

thead th {
  color: var(--brand-dark);
  background: var(--mint);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

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

tbody th {
  width: 19%;
  font-weight: 400;
}

.info-grid {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.info-card {
  min-width: 0;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

.info-card .card-title {
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
  font-weight: 850;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.subsection {
  margin-top: var(--space-6);
}

.editorial-list,
.steps-list {
  margin: 1.25rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.editorial-list li,
.steps-list li {
  position: relative;
  min-height: 54px;
  padding: 0.8rem 1rem 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  box-shadow: var(--shadow-small);
}

.steps-list {
  counter-reset: review-step;
}

.steps-list li {
  padding-left: 3.6rem;
  counter-increment: review-step;
}

.steps-list li::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  content: counter(review-step);
  font-size: 0.78rem;
  font-weight: 850;
  transform: translateY(-50%);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

.faq-item h3 {
  margin: 0;
  font-family: inherit;
  font-size: 1.12rem;
  line-height: 1.35;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(201, 238, 228, 0.34);
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  padding-top: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 3rem 0;
  color: #d9e8e4;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer .footer-brand {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.site-footer p {
  margin-bottom: 0.65rem;
  color: #bfd2cd;
  font-size: 0.9rem;
}

.site-footer .footer-label {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: #ffe4a3;
}

.trust-panel {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-label {
  margin-bottom: 0.8rem !important;
  color: var(--white) !important;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-logos a {
  min-height: 82px;
  padding: 0.8rem;
  display: grid;
  place-content: center;
  background: #f8faf9;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.trust-logos a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.trust-logos img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  list-style: none;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  padding: 5rem 0;
  display: grid;
  align-items: center;
}

.not-found h1 {
  font-size: clamp(3rem, 11vw, 7rem);
}

@media (min-width: 680px) {
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 255px;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.25rem);
  }

  .evidence-strip {
    grid-template-columns: 1fr;
  }

  .evidence-strip li {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 1023px) {
  .casino-card {
    grid-template-columns: minmax(150px, 1.1fr) minmax(100px, 0.7fr) minmax(260px, 2fr);
  }

  .cta-zone {
    grid-column: 1 / -1;
    min-height: 56px;
    padding-block: 0.7rem !important;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }
}

@media (max-width: 799px) {
  :root {
    --header-height: 64px;
  }

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

  .brand-link img {
    width: 186px;
    height: 36px;
  }

  .js .menu-button {
    display: flex;
  }

  .js .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .js .site-nav[data-open="false"] {
    display: none;
  }

  .site-nav ul {
    width: min(calc(100% - 2rem), var(--content));
    margin-inline: auto;
    padding: 0.75rem 0 1rem;
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    padding-inline: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .section-block {
    padding: 3.6rem 0;
  }

  .casino-card {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .casino-card > div {
    padding: 0.9rem;
  }

  .casino-card > div + div {
    border-left: 1px solid var(--line);
  }

  .brand-zone {
    align-items: flex-start;
    text-align: left;
  }

  .brand-zone img {
    width: min(145px, 100%);
    height: 58px;
  }

  .status-ring {
    width: 62px;
    height: 62px;
    border-width: 5px;
    font-size: 0.62rem;
  }

  .bonus-zone,
  .cta-zone {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .cta-zone {
    min-height: 0;
  }

  .casino-cta {
    width: auto;
    min-width: min(100%, 240px);
  }
}

@media (max-width: 379px) {
  .wrap,
  .header-inner,
  .site-nav ul {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .brand-link img {
    width: 170px;
    height: 33px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .evidence-strip li {
    padding: 0.9rem;
  }

  .metric-number {
    font-size: 1.75rem;
  }

  .metric-label {
    font-size: 0.79rem;
  }
}

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

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