:root {
  --sea-deep: #073642;
  --sea: #0a6b7c;
  --sea-mid: #1a8fa3;
  --foam: #e8f4f6;
  --mist: #f4fafb;
  --ink: #0e2a30;
  --ink-soft: #3d5a62;
  --muted: #6b858c;
  --sand: #c4a574;
  --line: rgba(10, 107, 124, 0.14);
  --surface: #ffffff;
  --radius: 16px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--mist);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--sea);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--sea-mid);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 250, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--sea-deep);
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.logo em {
  font-style: normal;
  color: var(--sea);
  font-weight: 500;
}

nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

nav a:hover {
  color: var(--sea-deep);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 4.5rem;
  background:
  linear-gradient(
  165deg,
  rgba(7, 54, 66, 0.55) 0%,
  rgba(10, 107, 124, 0.35) 45%,
  rgba(7, 54, 66, 0.7) 100%
  ),
  radial-gradient(
  ellipse 80% 60% at 70% 20%,
  rgba(26, 143, 163, 0.4),
  transparent 60%
  ),
  linear-gradient(180deg, #0a6b7c 0%, #073642 100%);
  color: #f4fafb;
  overflow: hidden;
}

.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}

.hero-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 180px;
  animation: wave-drift 18s linear infinite;
}

.hero-waves svg:nth-child(2) {
  opacity: 0.5;
  animation-duration: 24s;
  animation-direction: reverse;
  bottom: 20px;
}

@keyframes wave-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  max-width: 38rem;
  animation: hero-rise 0.9s var(--ease) both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}

.hero-brand span {
  display: block;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.55rem;
  font-family: var(--font-body);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 28ch;
  opacity: 0.95;
}

.hero-lead {
  font-size: 1.02rem;
  font-weight: 300;
  opacity: 0.88;
  max-width: 42ch;
  margin-bottom: 1.8rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.8;
  border-top: 1px solid rgba(244, 250, 251, 0.2);
  padding-top: 1.2rem;
}

.hero-facts li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-facts li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--sea-deep);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 2.6rem;
  font-weight: 300;
}

.notice {
  background: var(--foam);
  border-block: 1px solid var(--line);
  padding: 1.35rem 0;
}

.notice-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.notice strong {
  color: var(--sea-deep);
  font-weight: 600;
}

.info-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.info-block {
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 54, 66, 0.06);
}

.info-block.wide {
  grid-row: span 2;
  background:
  linear-gradient(160deg, var(--foam) 0%, var(--surface) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  margin-bottom: 0.65rem;
  color: var(--sea-deep);
}

.info-block p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.info-block.wide h3 {
  font-size: 1.7rem;
}

.platforms-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.platform {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease);
  animation: fade-up 0.6s var(--ease) both;
}

.platform:nth-child(1) {
  animation-delay: 0.05s;
}
.platform:nth-child(2) {
  animation-delay: 0.1s;
}
.platform:nth-child(3) {
  animation-delay: 0.15s;
}
.platform:nth-child(4) {
  animation-delay: 0.2s;
}
.platform:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform:hover {
  border-color: rgba(10, 107, 124, 0.35);
  transform: translateX(4px);
}

.platform-logo {
  width: 110px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--foam);
  border-radius: 10px;
  padding: 0.5rem;
}

.platform-logo img {
  max-height: 40px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.platform-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--sea-deep);
  margin-bottom: 0.35rem;
}

.platform-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.7rem;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.platform-tags span {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--foam);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.platform-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  min-width: 140px;
}

.rating {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 650;
  color: var(--sea);
  line-height: 1;
}

.rating small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--sea-deep);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--surface);
  border-color: var(--sea);
  color: var(--sea);
}

.band {
  background: var(--sea-deep);
  color: var(--foam);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
  circle,
  rgba(26, 143, 163, 0.25),
  transparent 70%
  );
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  position: relative;
}

.band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 650;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.band p {
  font-weight: 300;
  opacity: 0.88;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.band ul {
  list-style: none;
  margin-top: 0.5rem;
}

.band li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.9;
}

.band li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sand);
}

.content-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.content-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 650;
  color: var(--sea-deep);
  margin-bottom: 0.7rem;
}

.content-item p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

th {
  background: var(--foam);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

td strong {
  font-weight: 550;
  color: var(--sea-deep);
}

.table-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.table-logo img {
  width: 36px;
  height: 28px;
  object-fit: contain;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.facts-item {
  padding: 1.6rem 1.4rem;
  border-left: 3px solid var(--sea);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--sea-mid);
}

.facts-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--sea-deep);
  margin-bottom: 0.55rem;
}

.facts-item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0 0.5rem;
}

.regulator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  max-width: 140px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.regulator:hover {
  opacity: 1;
}

.regulator img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.15);
}

.regulator span {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.3;
}

.responsible-gaming-hr {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin-top: 1rem;
}

.responsible-gaming-hr p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  font-weight: 300;
}

.responsible-gaming-hr p strong {
  font-weight: 600;
  color: var(--sea-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.responsible-gaming-hr ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.responsible-gaming-hr li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.help-box {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px dashed rgba(10, 107, 124, 0.3);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.help-box a {
  font-weight: 500;
}

footer {
  background: var(--sea-deep);
  color: rgba(232, 244, 246, 0.75);
  padding: 3.5rem 0 2rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--foam);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.footer-brand em {
  font-style: normal;
  color: var(--sea-mid);
  font-weight: 500;
}

footer p {
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

footer h4 {
  color: var(--foam);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.45rem;
}

footer a {
  color: #8ec4d0;
}

footer a:hover {
  color: var(--foam);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid rgba(232, 244, 246, 0.12);
}

.footer-logos img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.1);
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(232, 244, 246, 0.55);
  line-height: 1.6;
}

.footer-bottom strong {
  color: rgba(232, 244, 246, 0.8);
  font-weight: 500;
}

.footer-disclaimer {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(232, 244, 246, 0.12);
  font-size: 0.78rem;
  color: rgba(232, 244, 246, 0.45);
}

.age-line {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(232, 244, 246, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
  opacity 0.7s var(--ease),
  transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .info-mosaic {
    grid-template-columns: 1fr;
  }

  .info-block.wide {
    grid-row: auto;
    min-height: auto;
  }

  .platform {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .platform-aside {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .band-grid,
  .content-stack,
  .facts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mist);
    padding: 1.2rem 4%;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3.5rem;
  }

  .hero-inner {
    padding-top: 4.5rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.2rem 0;
  }

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

  .platform-logo {
    width: 100%;
    height: 52px;
  }

  .regulators {
    justify-content: space-around;
  }
}

.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
  min-width: 168px;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(10, 107, 124, 0.35);
  color: var(--sea);
}

.btn-ghost:hover {
  background: var(--foam);
  border-color: var(--sea);
  color: var(--sea-deep);
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
  linear-gradient(165deg, rgba(7, 54, 66, 0.92) 0%, rgba(10, 107, 124, 0.85) 100%),
  linear-gradient(180deg, #0a6b7c, #073642);
  color: var(--foam);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--mist));
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.breadcrumb a {
  color: var(--foam);
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.5;
}

.review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.review-logo-wrap {
  width: 120px;
  height: 72px;
  background: rgba(244, 250, 251, 0.95);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
}

.review-logo-wrap img {
  max-height: 48px;
  max-width: 100px;
  object-fit: contain;
}

.review-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.review-head .sub {
  font-weight: 300;
  opacity: 0.88;
  max-width: 46ch;
  font-size: 1.02rem;
}

.review-score {
  text-align: center;
  background: rgba(244, 250, 251, 0.12);
  border: 1px solid rgba(244, 250, 251, 0.2);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  min-width: 110px;
}

.review-score strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}

.review-score span {
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  position: relative;
  z-index: 1;
}

.review-actions .btn {
  background: var(--foam);
  color: var(--sea-deep);
  border-color: transparent;
}

.review-actions .btn:hover {
  background: #fff;
  color: var(--sea);
}

.review-actions .btn-ghost {
  background: transparent;
  color: var(--foam);
  border-color: rgba(244, 250, 251, 0.35);
}

.review-actions .btn-ghost:hover {
  background: rgba(244, 250, 251, 0.12);
  color: #fff;
  border-color: rgba(244, 250, 251, 0.55);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 650;
  color: var(--sea-deep);
  margin: 2.2rem 0 0.9rem;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--sea-deep);
  margin: 1.5rem 0 0.6rem;
}

.prose p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2rem 1.15rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.prose li {
  margin-bottom: 0.45rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.pros-cons article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}

.pros-cons h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.pros-cons .pros h3 { color: var(--sea); }
.pros-cons .cons h3 { color: #8a5a3a; }

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.2rem 0 2rem;
}

.score-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.bar {
  height: 8px;
  background: var(--foam);
  border-radius: 99px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--sea), var(--sea-mid));
  border-radius: 99px;
}

.score-row strong {
  font-family: var(--font-display);
  color: var(--sea-deep);
  font-weight: 650;
  text-align: right;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--sea-deep);
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--sea);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  margin-bottom: 1.1rem;
  position: sticky;
  top: 5.5rem;
}

.sidebar-card.static {
  position: static;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sea-deep);
  margin-bottom: 0.85rem;
}

.sidebar-meta {
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.sidebar-meta li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-meta li:last-child {
  border-bottom: none;
}

.sidebar-meta span {
  color: var(--muted);
}

.sidebar-meta strong {
  font-weight: 500;
  color: var(--sea-deep);
  text-align: right;
}

.related {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.related a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: var(--foam);
  color: var(--sea-deep);
  font-size: 0.88rem;
  font-weight: 500;
}

.related a:hover {
  background: #dceef1;
}

.related img {
  width: 42px;
  height: 28px;
  object-fit: contain;
}

.notice-inline {
  background: var(--foam);
  border-left: 3px solid var(--sea-mid);
  padding: 1rem 1.15rem;
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 1.2rem 0;
  font-weight: 300;
}

@media (max-width: 900px) {
  .review-head {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .review-score {
    justify-self: start;
  }

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

  .sidebar-card {
    position: static;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .score-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.platform-body h3 a {
  color: inherit;
}

.platform-tags.tight-top {
  margin-top: 1rem;
}

.responsible-gaming-hr.spaced {
  margin-top: 1.5rem;
}

.btn-stack.spaced {
  margin-top: 1.1rem;
}

.legal-page .breadcrumb {
  opacity: 1;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal-page .breadcrumb a {
  color: var(--sea);
}

.legal-page h1.section-title {
  margin-bottom: 0.5rem;
}


.compliance-bar {
  background: var(--sea-deep);
  color: rgba(232, 244, 246, 0.92);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.55rem 0;
  text-align: center;
  position: relative;
  z-index: 120;
}

.compliance-bar strong {
  color: #fff;
  font-weight: 600;
}

.compliance-bar a {
  color: #8ec4d0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compliance-bar a:hover {
  color: #fff;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page .prose {
  max-width: 72ch;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.eeat-box {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  margin: 2rem 0;
}

.eeat-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sea-deep);
  margin-bottom: 0.7rem;
}

.eeat-box p,
.eeat-box li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.eeat-box ul {
  margin: 0.6rem 0 0 1.1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin: 1.2rem 0 0.5rem;
  font-size: 0.82rem;
}

.footer-legal a {
  color: #8ec4d0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sea);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
