@font-face {
  font-family: "Bodabet Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #07040e;
  --bg-deep: #040209;
  --surface: rgba(17, 11, 31, 0.78);
  --surface-strong: rgba(24, 15, 44, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text: #f7f3ff;
  --muted: #aaa0bb;
  --muted-strong: #c6bdd2;
  --accent: #8b47ff;
  --accent-bright: #b875ff;
  --accent-soft: #dcb7ff;
  --border: rgba(200, 157, 255, 0.22);
  --border-strong: rgba(200, 157, 255, 0.5);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --glow: 0 0 28px rgba(151, 76, 255, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font: "Bodabet Inter", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(119, 45, 224, 0.14), transparent 30rem),
    linear-gradient(180deg, #080510 0%, #05030b 55%, #080511 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  pointer-events: none;
}

::selection {
  background: rgba(160, 87, 255, 0.55);
  color: #fff;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #130825;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-kicker,
.hero-label {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.answer-section h2,
.method-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child,
.final-cta > p {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 20px;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-bottom: 1px solid rgba(200, 157, 255, 0.12);
  background: rgba(7, 4, 14, 0.8);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 1240px);
  min-height: 52px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: auto;
  color: #fff;
  text-decoration: none;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-symbol {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(233, 216, 255, 0.16),
    0 0 24px rgba(139, 72, 246, 0.34);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.primary-nav a {
  padding: 8px 14px;
  border-radius: 9px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 620;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover {
  background: rgba(150, 75, 255, 0.16);
  color: #fff;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  padding-left: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher a {
  min-width: 34px;
  padding-inline: 8px;
  text-align: center;
}

.language-switcher a[aria-current="page"] {
  background: rgba(150, 75, 255, 0.24);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(194, 144, 255, 0.25);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid rgba(205, 173, 255, 0.35);
  border-radius: 13px;
  background: linear-gradient(135deg, #6f2de9 0%, #a34dff 100%);
  box-shadow:
    0 12px 30px rgba(110, 39, 225, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -8px 20px rgba(87, 16, 187, 0.25);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: rgba(236, 218, 255, 0.72);
  box-shadow:
    0 16px 38px rgba(126, 52, 240, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 0.8rem;
}

.button-ghost {
  background: rgba(9, 6, 16, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
}

.button-ghost:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 1050px;
  padding: 132px 20px 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(111, 47, 225, 0.21), transparent 27rem),
    linear-gradient(to bottom, transparent 76%, var(--bg) 100%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -4;
  top: 0;
  left: 50%;
  width: min(1000px, 90vw);
  height: 600px;
  background-image:
    linear-gradient(rgba(178, 119, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 119, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 73%);
  opacity: 0.5;
  transform: translateX(-50%);
}

.hero-arc {
  position: absolute;
  z-index: -2;
  left: 50%;
  width: min(1300px, 116vw);
  aspect-ratio: 2.2 / 1;
  border: 3px solid rgba(206, 157, 255, 0.84);
  border-right-color: rgba(150, 76, 255, 0.32);
  border-bottom: 0;
  border-left-color: rgba(150, 76, 255, 0.32);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  filter: drop-shadow(0 0 9px rgba(199, 142, 255, 0.9)) drop-shadow(0 0 32px rgba(114, 48, 230, 0.7));
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-arc-primary {
  top: 188px;
}

.hero-arc-secondary {
  top: 430px;
  width: min(1120px, 104vw);
  border-width: 2px;
  opacity: 0.7;
  filter: drop-shadow(0 0 14px rgba(184, 109, 255, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(990px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(216, 179, 255, 0.2);
  border-radius: 999px;
  background: rgba(103, 45, 194, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  font-weight: 620;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero h1 span {
  color: #e4d2ff;
  text-shadow: 0 0 36px rgba(170, 99, 255, 0.32);
}

.hero h1 .hero-title-primary {
  color: inherit;
  text-shadow: none;
}

.hero-summary {
  max-width: 700px;
  margin: 23px auto 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.13rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 27px;
}

.hero-note {
  margin: 12px 0 0;
  color: #82778f;
  font-size: 0.78rem;
}

.overview-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-areas: "snapshot calculator";
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: min(1120px, 100%);
  margin: 40px auto 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 38%),
    rgba(10, 6, 20, 0.76);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 70px rgba(87, 32, 180, 0.14);
  backdrop-filter: blur(24px);
}

.overview-panel.reveal {
  opacity: 1;
  transform: none;
}

.overview-panel::before {
  position: absolute;
  top: -2px;
  left: 9%;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(224, 191, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(166, 90, 255, 0.9);
  content: "";
}

.review-snapshot,
.calculator {
  padding: 30px;
}

.review-snapshot {
  grid-area: snapshot;
  border-right: 1px solid rgba(208, 171, 255, 0.2);
}

.snapshot-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.snapshot-toggle {
  display: none;
}

.review-snapshot h2,
.calculator h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.snapshot-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.snapshot-list > div {
  display: grid;
  gap: 4px;
}

.snapshot-list dt {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #f3ecfb;
  font-size: 0.96rem;
  font-weight: 690;
}

.snapshot-list dd {
  margin: 0 0 0 51px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.icon-orbit {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(182, 112, 255, 0.55);
  border-radius: 50%;
  background: rgba(131, 60, 241, 0.08);
  box-shadow: inset 0 0 16px rgba(140, 69, 246, 0.13);
  color: var(--accent-bright);
}

.icon-orbit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-orbit-solid {
  border: 0;
  background: linear-gradient(135deg, #7340e9, #a755ff);
  box-shadow: var(--glow);
  color: #fff;
}

.external-notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid rgba(200, 157, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.026);
}

.external-notice svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.external-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.external-notice strong,
.external-notice span {
  color: var(--muted-strong);
}

.calculator {
  grid-area: calculator;
  background: radial-gradient(circle at 88% 18%, rgba(126, 61, 234, 0.13), transparent 15rem);
}

.calculator-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calculator-heading .section-kicker {
  margin-bottom: 6px;
}

.calculator-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-row label {
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 650;
}

.money-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(205, 169, 255, 0.22);
  border-radius: 12px;
  background: rgba(5, 3, 12, 0.55);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.money-input:focus-within {
  border-color: rgba(196, 138, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(139, 71, 255, 0.12);
  outline: 0;
}

.money-input span {
  padding: 0 18px;
  border-right: 1px solid rgba(205, 169, 255, 0.16);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.money-input input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
}

.stage-selector {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.stage-selector legend {
  padding: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 650;
}

.stage-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
  padding: 4px;
  border: 1px solid rgba(205, 169, 255, 0.28);
  border-radius: 12px;
  background: rgba(5, 3, 12, 0.68);
}

.stage-option {
  position: relative;
  min-width: 0;
}

.calculator-form[data-enhanced="true"] .stage-option input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.stage-option span {
  display: grid;
  min-height: 44px;
  padding: 10px 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.stage-option input:checked + span {
  background: linear-gradient(135deg, #a958ff, #6522cf);
  box-shadow: 0 8px 22px rgba(125, 50, 232, 0.4);
  color: #fff;
}

.stage-option input:focus-visible + span {
  outline: 3px solid #e6c7ff;
  outline-offset: 2px;
}

[data-stage-selector][aria-invalid="true"] .stage-options {
  border-color: #ff829d;
}

.form-error {
  min-height: 0;
  margin: -7px 0 0;
  color: #ff9db0;
  font-size: 0.76rem;
}

.form-error:empty {
  display: none;
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.calculator-results .result-row {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(205, 169, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 3, 12, 0.28);
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.result-turnover span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.result-turnover small {
  color: var(--accent-soft);
  font-size: 0.78em;
  font-weight: 760;
}

.calculator-results .result-row strong {
  color: var(--accent-bright);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.025em;
}

.calculator-results .result-turnover,
.calculator-results .turnover-formula {
  grid-column: 1 / -1;
}

.calculator-results .result-turnover {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-color: rgba(183, 112, 255, 0.28);
  background: linear-gradient(110deg, rgba(102, 40, 190, 0.15), rgba(5, 3, 12, 0.28));
}

.calculator-results .result-turnover strong {
  color: var(--accent-bright);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.calculator-results [data-turnover-multiplier] {
  color: var(--accent-soft);
  font: inherit;
}

.turnover-formula {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: right;
}

.result-total {
  padding-top: 18px;
  border-top: 1px solid rgba(205, 169, 255, 0.18);
}

.result-total strong {
  color: #dbc2ff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.calculate-button {
  width: 100%;
  border: 0;
}

.calculator-help {
  margin: -2px 0 0;
  color: #7e738c;
  font-size: 0.7rem;
  line-height: 1.45;
}

@media (min-width: 981px) {
  .review-snapshot,
  .calculator {
    padding: 17px;
  }

  .calculator-heading {
    gap: 10px;
  }

  .calculator h2 {
    font-size: 1.45rem;
  }

  .calculator-form {
    gap: 8px;
    margin-top: 14px;
  }

  .stage-option span {
    padding-block: 4px;
  }

  .calculator-results {
    gap: 6px;
  }

  .calculator-results .result-row {
    padding: 6px 8px;
  }

  .calculate-button {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .stage-option span {
    font-size: 1rem;
  }
}

.facts-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), 1120px);
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 15px;
  background: rgba(10, 6, 18, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.fact {
  padding: 18px 22px;
  text-align: center;
}

.fact + .fact {
  border-left: 1px solid rgba(200, 157, 255, 0.14);
}

.fact span,
.fact strong {
  display: block;
}

.fact span {
  color: #786e85;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact strong {
  margin-top: 3px;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.answer-section {
  padding-top: 150px;
  padding-bottom: 100px;
  text-align: center;
}

.answer-section h2 {
  position: relative;
  display: inline-block;
}

.answer-section h2::after,
.section-heading h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin: 17px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  box-shadow: 0 0 12px rgba(168, 89, 255, 0.8);
  content: "";
}

.answer-lead {
  width: min(830px, 100%);
  margin: 34px auto 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.answer-lead strong {
  color: #f3eafd;
}

.answer-meta {
  margin: 22px auto 0;
  color: #776d84;
  font-size: 0.75rem;
}

.review-section {
  padding-top: 70px;
  padding-bottom: 140px;
}

.review-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 54px;
}

.review-map::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(189, 125, 255, 0.55) 12%, rgba(189, 125, 255, 0.55) 88%, transparent);
  content: "";
}

.review-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  min-height: 180px;
  padding: 22px 48px 28px;
}

.review-item::after {
  position: absolute;
  top: 47px;
  width: 10px;
  height: 10px;
  border: 2px solid #d6b3ff;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 14px rgba(171, 95, 255, 0.95);
  content: "";
}

.review-item-left {
  border-bottom: 1px solid rgba(195, 140, 255, 0.2);
}

.review-item-left::after {
  right: -6px;
}

.review-item-right {
  margin-top: 55px;
  border-bottom: 1px solid rgba(195, 140, 255, 0.2);
}

.review-item-right::after {
  left: -5px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(180, 105, 255, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(130, 59, 235, 0.21), transparent 62%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 24px rgba(133, 60, 234, 0.12), 0 0 30px rgba(93, 34, 182, 0.15);
  color: var(--accent-bright);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.review-item h3 {
  margin: 5px 0 10px;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.review-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bonus-section {
  position: relative;
  padding: 80px 60px 70px;
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.19);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(13, 8, 24, 0.7);
  box-shadow: var(--shadow);
}

.bonus-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 900px;
  height: 400px;
  border: 2px solid rgba(194, 132, 255, 0.75);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  filter: blur(1px) drop-shadow(0 0 22px rgba(142, 62, 241, 0.7));
  opacity: 0.55;
  transform: translateX(-50%);
  pointer-events: none;
}

.bonus-section .section-heading {
  position: relative;
  margin-bottom: 52px;
}

.bonus-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-steps::before {
  position: absolute;
  top: 22px;
  right: 16.6%;
  left: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 141, 255, 0.5), transparent);
  content: "";
}

.bonus-steps li {
  position: relative;
  padding: 0 34px 32px;
  text-align: center;
}

.bonus-steps li + li {
  border-left: 1px solid rgba(200, 157, 255, 0.13);
}

.bonus-steps li > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 23px;
  border: 1px solid rgba(216, 182, 255, 0.5);
  border-radius: 50%;
  background: #28104b;
  box-shadow: 0 0 23px rgba(139, 71, 255, 0.36);
  color: #e2ccff;
  font-size: 0.74rem;
  font-weight: 780;
}

.bonus-steps h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.bonus-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.terms-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px 60px;
  align-items: start;
  margin-top: 26px;
  padding: 38px;
  border: 1px solid rgba(200, 157, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.terms-panel h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.terms-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.terms-panel li span {
  color: var(--accent-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.text-link:hover {
  color: #fff;
}

.method-section {
  padding-top: 140px;
  padding-bottom: 115px;
  text-align: center;
}

.method-section h2 {
  max-width: 760px;
  margin-inline: auto;
}

.method-section > p:last-child {
  width: min(820px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.entity-section,
.verified-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.entity-section .comparison-shell {
  margin-top: 30px;
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.verified-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 132px;
  padding: 24px;
  background: rgba(15, 10, 29, 0.96);
}

.verified-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verified-grid strong {
  color: var(--text);
  line-height: 1.55;
}

.source-list {
  display: grid;
  gap: 10px;
  width: min(860px, 100%);
  margin: 22px auto 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(124, 77, 255, 0.07);
  text-align: left;
}

.source-list p {
  margin: 0;
  color: var(--muted);
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.editorial-meta span,
.editorial-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.editorial-meta a {
  color: var(--accent-soft);
  font-weight: 800;
}

.provider-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.45;
}

.faq-section {
  padding-top: 50px;
  padding-bottom: 100px;
}

.faq-section .section-heading {
  margin-bottom: 42px;
}

.faq-list {
  width: min(980px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(13, 8, 24, 0.64);
}

.faq-list details + details {
  border-top: 1px solid rgba(200, 157, 255, 0.15);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 25px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 630;
  cursor: pointer;
  list-style: none;
  transition: background 160ms ease, color 160ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover,
.faq-list details[open] summary {
  background: rgba(145, 70, 244, 0.08);
  color: #fff;
}

.faq-list summary:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px rgba(198, 141, 255, 0.58);
}

.faq-list summary span {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--accent-soft);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 16px 56px 25px 25px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.78;
}

.faq-answer p + p,
.faq-answer p + ul {
  margin-top: 13px;
}

.faq-answer strong {
  color: var(--muted-strong);
  font-weight: 750;
}

.faq-answer ul {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  padding-left: 21px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.faq-answer .text-link {
  display: inline;
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-color: rgba(220, 183, 255, 0.4);
  text-underline-offset: 3px;
}

.responsible-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 32px 36px;
  border: 1px solid rgba(200, 157, 255, 0.19);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.age-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(226, 204, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 720;
}

.responsible-note h2 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.responsible-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.final-cta {
  position: relative;
  margin-top: 110px;
  margin-bottom: 60px;
  padding: 70px 30px 62px;
  overflow: hidden;
  border: 1px solid rgba(209, 171, 255, 0.43);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 125%, rgba(153, 70, 255, 0.5), transparent 42%),
    linear-gradient(135deg, rgba(108, 42, 195, 0.22), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
}

.final-arc {
  position: absolute;
  bottom: -250px;
  left: 50%;
  width: min(900px, 120%);
  height: 360px;
  border: 3px solid rgba(222, 175, 255, 0.82);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 18px rgba(171, 82, 255, 0.9));
  transform: translateX(-50%);
}

.final-cta > *:not(.final-arc) {
  position: relative;
  z-index: 1;
}

.final-cta > p:not(.section-kicker) {
  max-width: 570px;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 30px 0 42px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 25px;
}

.footer-main nav {
  display: flex;
  gap: 25px;
}

.footer-main nav a,
.footer-main > span {
  color: #7c7188;
  font-size: 0.73rem;
  transition: color 160ms ease;
}

.footer-main nav a:hover {
  color: #fff;
}

.footer-main > span {
  justify-self: end;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 157, 255, 0.12);
  color: #655c70;
  font-size: 0.7rem;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:first-child {
  max-width: 710px;
}

.noscript-message {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #170d25;
  color: var(--muted-strong);
  font-size: 0.78rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: grid;
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border-color: var(--border);
    background: rgba(13, 8, 24, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 14px;
  }

  .language-switcher {
    justify-content: center;
    margin: 5px 0 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .language-switcher a {
    padding: 9px 16px;
  }

  .overview-panel {
    grid-template-areas:
      "snapshot"
      "calculator";
    grid-template-columns: 1fr;
  }

  .review-snapshot {
    border-right: 0;
    border-bottom: 1px solid rgba(208, 171, 255, 0.2);
  }

  .review-map {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-map::before,
  .review-item::after {
    display: none;
  }

  .review-item {
    min-height: 0;
    padding: 30px 0;
  }

  .review-item-right {
    margin-top: 0;
  }

  .bonus-section {
    padding-inline: 32px;
  }

  .bonus-steps {
    grid-template-columns: 1fr;
  }

  .bonus-steps::before {
    display: none;
  }

  .bonus-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 24px 0;
    text-align: left;
  }

  .bonus-steps li + li {
    border-top: 1px solid rgba(200, 157, 255, 0.13);
    border-left: 0;
  }

  .bonus-steps li > span {
    margin: 0;
  }

  .terms-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .primary-nav {
    right: 16px;
  }

  .brand-wordmark {
    gap: 8px;
    font-size: 1.16rem;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .section-shell,
  .facts-strip,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: auto;
    padding: 122px 14px 82px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .hero-label {
    max-width: 100%;
    min-height: 38px;
    padding-block: 7px;
    justify-content: center;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .hero-grid {
    height: 440px;
    background-size: 34px 34px;
  }

  .hero-arc-primary {
    top: 205px;
    width: 178vw;
  }

  .hero-arc-secondary {
    top: 530px;
    width: 150vw;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.01;
    overflow-wrap: anywhere;
  }

  .hero h1 br {
    display: block;
  }

  .hero h1 span {
    display: block;
  }

  .hero-summary {
    max-width: 100%;
    margin-top: 22px;
    font-size: 0.93rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button {
    min-height: 50px;
  }

  .overview-panel {
    grid-template-areas:
      "calculator"
      "snapshot";
    grid-template-columns: 1fr;
    margin-top: 48px;
    border-radius: 19px;
  }

  .review-snapshot,
  .calculator {
    padding: 14px;
  }

  .snapshot-list dd {
    margin-left: 0;
    padding-left: 51px;
  }

  .calculator-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .calculator-heading .icon-orbit {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .calculator h2 {
    font-size: 1.45rem;
  }

  .stage-option {
    min-height: 44px;
  }

  .stage-option span {
    padding-block: 0;
    padding-inline: 6px;
    font-size: 0.78rem;
  }

  .calculator-form {
    gap: 10px;
    margin-top: 16px;
  }

  .money-input input {
    min-height: 44px;
    font-size: 16px;
  }

  .calculator-results {
    gap: 6px;
  }

  .calculator-results .result-row {
    align-items: initial;
    padding: 7px;
  }

  .calculator-results .result-row strong {
    font-size: 1.08rem;
  }

  .calculator-results .result-turnover {
    align-items: center;
    flex-direction: row;
  }

  .calculator-results .result-turnover strong {
    font-size: 1.55rem;
  }

  .calculate-button {
    min-height: 44px;
  }

  .calculator-help {
    line-height: 1.35;
  }

  .turnover-formula {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .snapshot-heading {
    min-height: 44px;
  }

  .review-snapshot[data-enhanced="true"] .snapshot-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(205, 169, 255, 0.24);
    border-radius: 12px;
    background: rgba(124, 57, 226, 0.08);
    color: var(--accent-bright);
  }

  .snapshot-toggle:focus-visible {
    outline: 3px solid #e6c7ff;
    outline-offset: 2px;
  }

  .snapshot-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform 160ms ease;
  }

  .review-snapshot[data-collapsed="false"] .snapshot-toggle svg {
    transform: rotate(180deg);
  }

  .review-snapshot[data-collapsed="true"] {
    border-bottom: 0;
  }

  .review-snapshot[data-collapsed="true"] .snapshot-heading .section-kicker {
    display: none;
  }

  .facts-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .fact:nth-child(3) {
    border-left: 0;
  }

  .fact:nth-child(n + 3) {
    border-top: 1px solid rgba(200, 157, 255, 0.14);
  }

  .answer-section {
    padding-top: 105px;
    padding-bottom: 70px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .answer-section h2,
  .method-section h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .answer-lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .review-section {
    padding-bottom: 95px;
  }

  .review-item {
    grid-template-columns: auto 1fr;
    gap: 17px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .feature-icon svg {
    width: 27px;
    height: 27px;
  }

  .review-item h3 {
    margin-top: 0;
  }

  .bonus-section {
    width: calc(100% - 20px);
    padding: 65px 22px 35px;
  }

  .bonus-steps li {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .bonus-steps li > span {
    margin: 0 auto 15px;
  }

  .terms-panel {
    padding: 25px 20px;
  }

  .method-section {
    padding-top: 105px;
    padding-bottom: 80px;
  }

  .faq-section {
    padding-bottom: 70px;
  }

  .faq-list summary {
    padding: 19px 18px;
    font-size: 0.86rem;
  }

  .faq-answer {
    padding: 4px 44px 22px 18px;
  }

  .responsible-note {
    grid-template-columns: 1fr;
    padding: 27px 24px;
    text-align: center;
  }

  .age-mark {
    margin-inline: auto;
  }

  .final-cta {
    width: calc(100% - 20px);
    margin-top: 80px;
    padding: 58px 20px 54px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main nav {
    display: none;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .hero-label {
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .facts-strip {
    grid-template-columns: 1fr;
  }

  .fact + .fact {
    border-top: 1px solid rgba(200, 157, 255, 0.14);
    border-left: 0;
  }

  .review-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-icon {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .snapshot-toggle svg {
    transition: none;
  }
}

/* Editorial trust layer — version 1.2.9 */
.eeat-review-strip {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 40px), var(--container));
  min-height: 66px;
  margin: 98px auto -116px;
  padding: 10px 14px;
  border: 1px solid rgba(200, 157, 255, 0.2);
  border-radius: 18px;
  background: rgba(10, 6, 18, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.guide-page-main > .eeat-review-strip,
.trust-page-main > .eeat-review-strip {
  margin-top: 0;
  margin-bottom: -54px;
}

.eeat-reviewer,
.eeat-reviewed-date {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eeat-reviewer {
  width: fit-content;
}

.eeat-reviewer:hover strong,
.eeat-method-link:hover {
  color: #fff;
}

.eeat-avatar {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(202, 157, 255, 0.45);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(151, 72, 255, 0.34), rgba(34, 18, 57, 0.72));
  object-fit: cover;
  object-position: 50% 34%;
  overflow: hidden;
}

.eeat-reviewer small,
.eeat-reviewed-date small {
  display: block;
  color: #81758e;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eeat-reviewer strong,
.eeat-reviewed-date time {
  display: block;
  margin-top: 3px;
  color: #d7cee2;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1.3;
  transition: color 180ms ease;
}

.eeat-reviewed-date {
  padding-left: 22px;
  border-left: 1px solid rgba(200, 157, 255, 0.14);
}

.eeat-method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 11px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.eeat-method-link:hover {
  border-color: rgba(200, 157, 255, 0.42);
  background: rgba(151, 72, 255, 0.11);
}

.editorial-record {
  margin-top: 118px;
  margin-bottom: 118px;
  padding: 48px;
  border: 1px solid rgba(200, 157, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 5%, rgba(143, 64, 255, 0.15), transparent 24rem),
    rgba(12, 7, 22, 0.82);
  box-shadow: var(--shadow);
}

.editorial-record-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.editorial-record-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 680;
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.editorial-record-heading > a {
  display: inline-flex;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.editorial-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.14);
  border-radius: 18px;
}

.editorial-ledger article {
  min-height: 220px;
  padding: 28px;
  background: rgba(5, 3, 10, 0.42);
}

.editorial-ledger article + article {
  border-left: 1px solid rgba(200, 157, 255, 0.14);
}

.ledger-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger-status-checked {
  background: rgba(70, 205, 163, 0.11);
  color: #8fe0c6;
}

.ledger-status-limited {
  background: rgba(233, 166, 92, 0.11);
  color: #e8bd8a;
}

.ledger-status-updated {
  background: rgba(167, 97, 255, 0.14);
  color: #d9b4ff;
}

.editorial-ledger h3 {
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.3;
}

.editorial-ledger p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.editorial-record-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 25px;
  color: #a99ab9;
  font-size: 0.74rem;
  font-weight: 680;
}

.editorial-record-links a:hover {
  color: var(--accent-soft);
}

.footer-trust-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 157, 255, 0.12);
  color: #8f839b;
  font-size: 0.72rem;
}

.footer-trust-nav span {
  color: #c9b5dc;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-trust-nav a:hover {
  color: var(--accent-soft);
}

.nav-trust-group .nav-dropdown {
  min-width: 188px;
}

/* Trust centre pages */
.trust-page-main {
  padding-top: 104px;
  overflow: hidden;
}

.trust-hero {
  position: relative;
  margin-top: 34px;
  padding: 68px 64px;
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 22%, rgba(138, 62, 247, 0.19), transparent 26rem),
    linear-gradient(135deg, rgba(22, 13, 39, 0.96), rgba(7, 4, 14, 0.95));
}

.trust-hero::after {
  position: absolute;
  right: -160px;
  bottom: -330px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(196, 137, 255, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 110px rgba(135, 58, 255, 0.11);
  content: "";
  pointer-events: none;
}

.trust-hero .breadcrumbs,
.trust-hero-grid {
  position: relative;
  z-index: 1;
}

.trust-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.trust-hero h1,
.author-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 680;
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.trust-hero h1 span,
.author-hero h1 span {
  color: #dec6ff;
}

.trust-hero-lead {
  max-width: 730px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.78;
}

.trust-seal,
.method-summary-card,
.policy-principles,
.correction-summary-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(202, 158, 255, 0.28);
  border-radius: 24px;
  background: rgba(7, 4, 14, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.trust-seal-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(209, 174, 255, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 80, 255, 0.28), rgba(31, 16, 51, 0.58));
  color: #eadbff;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.trust-seal > p,
.method-summary-card > p,
.policy-principles > p,
.correction-summary-card > p {
  margin: 24px 0 0;
  color: #8f829b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-seal > strong,
.method-summary-card > strong,
.correction-summary-card > strong {
  display: block;
  margin-top: 7px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.trust-seal dl,
.correction-summary-card dl {
  margin: 24px 0 0;
}

.trust-seal dl div,
.correction-summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(200, 157, 255, 0.12);
  font-size: 0.74rem;
}

.trust-seal dt,
.correction-summary-card dt {
  color: #83778e;
}

.trust-seal dd,
.correction-summary-card dd {
  margin: 0;
  color: #d4c8df;
  font-weight: 700;
  text-align: right;
}

.trust-content,
.trust-split,
.trust-index,
.author-facts,
.method-ledger,
.source-hierarchy,
.review-trigger-table,
.policy-grid,
.policy-disclosure,
.correction-process,
.correction-types,
.correction-request {
  margin-top: 112px;
}

.trust-content-heading {
  max-width: 720px;
}

.trust-content-heading h2,
.trust-index > h2,
.source-hierarchy h2,
.review-trigger-table h2,
.correction-types > h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 660;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.trust-statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid rgba(200, 157, 255, 0.18);
  border-bottom: 1px solid rgba(200, 157, 255, 0.18);
}

.trust-statement-grid article {
  min-height: 290px;
  padding: 38px 34px;
}

.trust-statement-grid article + article {
  border-left: 1px solid rgba(200, 157, 255, 0.18);
}

.trust-statement-grid article > span,
.policy-grid article > span {
  color: var(--accent-soft);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-statement-grid h3 {
  margin: 62px 0 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.trust-statement-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.trust-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.trust-panel {
  padding: 46px;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 24px;
  background: rgba(14, 8, 25, 0.72);
}

.trust-panel-accent {
  background:
    radial-gradient(circle at 90% 5%, rgba(147, 68, 255, 0.16), transparent 19rem),
    rgba(14, 8, 25, 0.78);
}

.trust-panel h2,
.policy-disclosure h2,
.correction-request h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.trust-panel p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 760;
}

.trust-index {
  margin-bottom: 120px;
}

.trust-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.trust-index-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-index-grid > a {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 18px;
  background: rgba(13, 8, 23, 0.7);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-index-grid > a:hover {
  border-color: rgba(200, 157, 255, 0.43);
  background: rgba(27, 15, 45, 0.84);
  transform: translateY(-4px);
}

.trust-index-grid span {
  color: var(--accent-soft);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-index-grid strong {
  display: block;
  margin-top: 36px;
  font-size: 1.1rem;
}

.trust-index-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Reviewer profile */
.author-hero {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding: 66px 0;
}

.author-hero-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.author-photo-frame {
  position: relative;
  display: block;
  width: 250px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(204, 164, 255, 0.36);
  border-radius: 34px;
  background:
    radial-gradient(circle, rgba(152, 75, 255, 0.25), transparent 55%),
    rgba(13, 8, 23, 0.72);
  box-shadow: 0 0 70px rgba(134, 56, 243, 0.18);
}

.author-photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 -80px 80px rgba(8, 5, 15, 0.16);
  content: "";
  pointer-events: none;
}

.author-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.author-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(200, 157, 255, 0.17);
  border-radius: 999px;
  color: #b8a9c7;
  font-size: 0.7rem;
}

.author-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(200, 157, 255, 0.16);
  border-radius: 20px;
}

.author-facts > div {
  padding: 26px;
}

.author-facts > div + div {
  border-left: 1px solid rgba(200, 157, 255, 0.16);
}

.author-facts span,
.author-facts strong {
  display: block;
}

.author-facts span {
  color: #82758f;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-facts strong {
  margin-top: 6px;
  font-size: 0.93rem;
}

.trust-check-list,
.trust-limit-list,
.method-summary-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-check-list li,
.trust-limit-list li,
.method-summary-card li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-top: 1px solid rgba(200, 157, 255, 0.11);
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-check-list li::before,
.trust-limit-list li::before,
.method-summary-card li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  color: #8edfc4;
  content: "✓";
  font-weight: 850;
}

.trust-limit-list li::before {
  color: #dfb17a;
  content: "—";
}

/* Methodology and policies */
.method-steps,
.correction-process ol {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(200, 157, 255, 0.18);
  list-style: none;
}

.method-steps li,
.correction-process li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(200, 157, 255, 0.18);
}

.method-steps li > span,
.correction-process li > span {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.method-steps h3,
.correction-process h3 {
  margin: 0;
  font-size: 1.35rem;
}

.method-steps p,
.correction-process p {
  max-width: 820px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.source-hierarchy {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 100px);
}

.source-hierarchy > div:first-child > p:last-child {
  color: var(--muted);
}

.source-levels {
  border-top: 1px solid rgba(200, 157, 255, 0.18);
}

.source-levels article {
  display: grid;
  grid-template-columns: 54px 0.75fr 1.25fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 157, 255, 0.18);
}

.source-levels article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 157, 255, 0.3);
  border-radius: 50%;
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 850;
}

.source-levels h3,
.source-levels p {
  margin: 0;
}

.source-levels h3 {
  font-size: 0.95rem;
}

.source-levels p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.review-trigger-table .guide-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
}

.policy-principles ol {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: policy;
}

.policy-principles li {
  padding: 12px 0;
  border-top: 1px solid rgba(200, 157, 255, 0.12);
  color: #c9bdd4;
  counter-increment: policy;
}

.policy-principles li::before {
  margin-right: 12px;
  color: var(--accent-soft);
  content: "0" counter(policy);
  font-size: 0.65rem;
  font-weight: 850;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.policy-grid article {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(200, 157, 255, 0.17);
  border-radius: 20px;
  background: rgba(12, 7, 22, 0.68);
}

.policy-grid h2 {
  margin: 46px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.policy-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.78;
}

.policy-disclosure {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  margin-bottom: 120px;
  padding: 42px;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 22px;
  background: rgba(13, 8, 23, 0.72);
}

.policy-disclosure > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

/* Corrections */
.correction-types .trust-statement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.correction-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: start;
  padding: 52px;
  border: 1px solid rgba(200, 157, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(145, 65, 252, 0.13), transparent 25rem),
    rgba(11, 7, 20, 0.8);
}

.correction-request-copy > p:not(.section-kicker),
.correction-request-copy li {
  color: var(--muted);
}

.correction-request-copy ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.correction-form {
  padding: 28px;
  border: 1px solid rgba(200, 157, 255, 0.17);
  border-radius: 20px;
  background: rgba(5, 3, 10, 0.55);
}

.correction-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.correction-form label span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #cbbfd6;
  font-size: 0.72rem;
  font-weight: 720;
}

.correction-form label em {
  color: #7d7188;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.correction-form input,
.correction-form textarea {
  width: 100%;
  border: 1px solid rgba(200, 157, 255, 0.18);
  border-radius: 12px;
  background: rgba(13, 8, 23, 0.92);
  color: var(--text);
}

.correction-form input {
  height: 46px;
  padding: 0 13px;
}

.correction-form textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}

.correction-form input::placeholder,
.correction-form textarea::placeholder {
  color: #665c70;
}

.correction-form-wide {
  grid-column: 1 / -1;
}

.correction-form .button {
  margin-top: 22px;
}

.correction-privacy {
  margin: 16px 0 0;
  color: #766b80;
  font-size: 0.69rem;
  line-height: 1.65;
}

.correction-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.correction-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 0.78rem;
}

.correction-notice.is-success {
  border-color: rgba(84, 205, 166, 0.34);
  background: rgba(58, 165, 131, 0.11);
  color: #a9e5d2;
}

.correction-notice.is-error {
  border-color: rgba(232, 157, 92, 0.34);
  background: rgba(197, 117, 54, 0.1);
  color: #e7c39f;
}

@media (max-width: 1080px) {
  .eeat-review-strip {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .eeat-method-link {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .trust-index-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-index-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .editorial-ledger,
  .trust-statement-grid,
  .trust-split,
  .trust-hero-grid,
  .author-hero-grid,
  .source-hierarchy,
  .policy-disclosure,
  .correction-request {
    grid-template-columns: 1fr;
  }

  .editorial-ledger article + article,
  .trust-statement-grid article + article {
    border-top: 1px solid rgba(200, 157, 255, 0.14);
    border-left: 0;
  }

  .trust-hero,
  .correction-request {
    padding: 48px 36px;
  }

  .trust-seal,
  .method-summary-card,
  .policy-principles,
  .correction-summary-card {
    max-width: 420px;
  }

  .author-hero-grid {
    align-items: start;
  }

  .author-photo-frame {
    width: 210px;
  }

  .author-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .author-facts > div:nth-child(3) {
    border-top: 1px solid rgba(200, 157, 255, 0.16);
    border-left: 0;
  }

  .author-facts > div:nth-child(4) {
    border-top: 1px solid rgba(200, 157, 255, 0.16);
  }

  .source-levels article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .source-levels p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .eeat-review-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(calc(100% - 28px), var(--container));
    margin-top: 88px;
    margin-bottom: -106px;
    padding: 12px;
  }

  .guide-page-main > .eeat-review-strip,
  .trust-page-main > .eeat-review-strip {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .eeat-reviewed-date {
    padding: 10px 0 0;
    border-top: 1px solid rgba(200, 157, 255, 0.12);
    border-left: 0;
  }

  .eeat-method-link {
    grid-column: auto;
  }

  .editorial-record {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 26px 18px;
    border-radius: 22px;
  }

  .editorial-record-heading {
    display: block;
  }

  .editorial-record-heading > a {
    margin-top: 18px;
  }

  .editorial-ledger article {
    min-height: 0;
    padding: 23px 20px;
  }

  .footer-trust-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-trust-nav span {
    grid-column: 1 / -1;
  }

  .trust-page-main {
    padding-top: 90px;
  }

  .trust-hero,
  .correction-request {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 20px;
    padding: 38px 22px;
    border-radius: 24px;
  }

  .trust-hero h1,
  .author-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .trust-content,
  .trust-split,
  .trust-index,
  .author-facts,
  .method-ledger,
  .source-hierarchy,
  .review-trigger-table,
  .policy-grid,
  .policy-disclosure,
  .correction-process,
  .correction-types,
  .correction-request {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 80px;
  }

  .trust-statement-grid,
  .trust-index-grid,
  .trust-index-grid-three,
  .policy-grid,
  .author-facts,
  .correction-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-statement-grid article {
    min-height: 0;
    padding: 30px 22px;
  }

  .trust-statement-grid h3,
  .policy-grid h2 {
    margin-top: 32px;
  }

  .trust-panel {
    padding: 30px 24px;
  }

  .author-hero {
    width: min(calc(100% - 28px), var(--container));
    padding: 38px 0;
  }

  .author-photo-frame {
    width: 170px;
  }

  .author-facts > div,
  .author-facts > div + div {
    border-top: 1px solid rgba(200, 157, 255, 0.16);
    border-left: 0;
  }

  .author-facts > div:first-child {
    border-top: 0;
  }

  .method-steps li,
  .correction-process li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .source-levels article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .policy-disclosure {
    padding: 30px 24px;
  }

  .correction-form {
    padding: 20px 16px;
  }

  .correction-form-wide {
    grid-column: auto;
  }
}

/* v1.9.3 homepage News carousel */
.news-home-carousel {
  min-width: 0;
}

.news-home-carousel-heading-aside {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
}

.news-home-carousel-heading-aside > p {
  margin: 0;
  color: #a99eb8;
  line-height: 1.7;
}

.news-card-grid.news-home-carousel-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.4rem) / 3);
  gap: 1.2rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(200, 145, 255, 0.42) transparent;
  scrollbar-width: thin;
}

.news-home-carousel-track::-webkit-scrollbar {
  height: 7px;
}

.news-home-carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(200, 145, 255, 0.42);
}

.news-home-carousel-track .news-card {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.news-home-carousel-controls {
  display: flex;
  gap: 0.65rem;
}

.news-home-carousel-controls[hidden] {
  display: none;
}

.news-home-carousel-controls button {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(204, 150, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(50, 25, 80, 0.96), rgba(21, 12, 34, 0.98));
  box-shadow: 0 8px 24px rgba(69, 21, 126, 0.22);
  color: #f4e9ff;
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.news-home-carousel-controls button:not(:disabled):hover {
  border-color: rgba(218, 169, 255, 0.72);
  background: linear-gradient(145deg, rgba(87, 39, 139, 0.98), rgba(35, 17, 56, 0.98));
  transform: translateY(-1px);
}

.news-home-carousel-controls button:focus-visible {
  outline: 3px solid #c982ff;
  outline-offset: 3px;
}

.news-home-carousel-controls button:disabled {
  opacity: 0.36;
  cursor: default;
}

.news-home-module .news-section-heading h2,
.faq-section .section-heading h2 {
  white-space: nowrap;
}

.news-home-module .news-section-heading h2 {
  font-size: clamp(2rem, 2.8vw, 2.65rem);
}

.faq-section .section-heading {
  width: min(1280px, 100%);
}

.faq-section .section-heading h2 {
  font-size: clamp(2.25rem, 4.35vw, 3.9rem);
}

@media (max-width: 980px) {
  .news-card-grid.news-home-carousel-track {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 1.2rem) / 2);
  }
}

@media (max-width: 680px) {
  .news-home-module .news-section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-home-carousel-heading-aside {
    gap: 0.8rem;
  }

  .news-card-grid.news-home-carousel-track {
    grid-template-columns: none;
    grid-auto-columns: 86%;
  }

  .news-home-module .news-section-heading h2 {
    font-size: clamp(1.05rem, 5.1vw, 1.35rem);
  }

  .faq-section .section-heading h2 {
    font-size: clamp(1rem, 4.65vw, 1.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-home-carousel-track {
    scroll-behavior: auto;
  }

  .news-home-carousel-controls button {
    transition: none;
  }
}

@media (max-width: 700px) {
  .verified-grid {
    grid-template-columns: 1fr;
  }

  .verified-grid > div {
    min-height: 0;
  }

  .editorial-meta {
    justify-content: flex-start;
    width: min(100% - 30px, 1180px);
  }
}

/* Games information architecture */
.nav-group {
  position: relative;
}

.nav-group summary {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 620;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary:hover,
.nav-group[open] summary,
.nav-group.is-active summary {
  background: rgba(150, 75, 255, 0.16);
  color: #fff;
}

.nav-group summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.nav-group[open] summary svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 230px;
  padding: 9px;
  border: 1px solid rgba(205, 169, 255, 0.2);
  border-radius: 14px;
  background: rgba(12, 7, 23, 0.98);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48), 0 0 45px rgba(111, 45, 233, 0.12);
  transform: translateX(-50%);
}

.nav-dropdown::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(205, 169, 255, 0.2);
  border-left: 1px solid rgba(205, 169, 255, 0.2);
  background: #0c0717;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown a {
  position: relative;
  z-index: 1;
  padding: 11px 13px;
}

.internal-link {
  margin-top: 17px;
}

.game-page main {
  overflow: hidden;
}

.game-hero {
  position: relative;
  min-height: 740px;
  padding: 154px 20px 100px;
  overflow: hidden;
  isolation: isolate;
}

.game-hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 73% 38%, rgba(133, 59, 236, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(13, 7, 24, 0.1), var(--bg));
  content: "";
}

.game-hero::after {
  position: absolute;
  z-index: -2;
  top: 105px;
  left: 50%;
  width: min(1120px, 120vw);
  height: 490px;
  border: 1px solid rgba(202, 154, 255, 0.31);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -12px 38px rgba(124, 46, 236, 0.28), inset 0 13px 35px rgba(122, 47, 228, 0.08);
  content: "";
  filter: drop-shadow(0 0 12px rgba(166, 87, 255, 0.26));
  transform: translateX(-50%);
}

.game-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  width: min(100%, var(--container));
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: #83758f;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.breadcrumbs a {
  color: #bba6cc;
}

.breadcrumbs a:hover {
  color: var(--accent-bright);
}

.game-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 6.8vw, 6.2rem);
  font-weight: 640;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.game-hero h1 span {
  color: #b77bff;
  text-shadow: 0 0 34px rgba(152, 73, 255, 0.32);
}

.game-hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.game-hero-lead strong {
  color: #f3eaff;
}

.game-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 31px;
}

.game-hero-note {
  margin: 16px 0 0;
  color: #796d86;
  font-size: 0.72rem;
}

.game-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  perspective: 900px;
}

.game-stage::before,
.game-stage::after {
  position: absolute;
  border: 1px solid rgba(194, 133, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.game-stage::before {
  width: 380px;
  height: 380px;
  box-shadow: 0 0 70px rgba(111, 45, 233, 0.2), inset 0 0 60px rgba(139, 59, 247, 0.12);
}

.game-stage::after {
  width: 280px;
  height: 280px;
  border-style: dashed;
  opacity: 0.7;
}

.game-stage-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 188px;
  aspect-ratio: 1;
  border: 1px solid rgba(218, 184, 255, 0.5);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 36%, rgba(210, 165, 255, 0.42), transparent 44%),
    linear-gradient(145deg, rgba(123, 45, 231, 0.75), rgba(31, 12, 58, 0.96));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42), 0 0 55px rgba(136, 54, 242, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: rotate(-7deg);
}

.game-stage-core svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: #f1e4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
  transform: rotate(7deg);
}

.stage-chip {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  padding: 13px 16px;
  border: 1px solid rgba(203, 160, 255, 0.25);
  border-radius: 13px;
  background: rgba(13, 8, 24, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.stage-chip span,
.stage-chip strong {
  display: block;
}

.stage-chip span {
  color: #85778f;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-chip strong {
  margin-top: 3px;
  color: #efe4ff;
  font-size: 0.86rem;
}

.stage-chip-one { top: 62px; right: -8px; }
.stage-chip-two { bottom: 60px; left: -6px; }
.stage-chip-three { right: 12px; bottom: 36px; }

.game-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), 1000px);
  margin: -42px auto 0;
  border: 1px solid rgba(203, 161, 255, 0.18);
  border-radius: 17px;
  background: rgba(10, 6, 18, 0.88);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.game-fact {
  padding: 22px 25px;
  text-align: center;
}

.game-fact + .game-fact {
  border-left: 1px solid rgba(203, 161, 255, 0.14);
}

.game-fact span,
.game-fact strong {
  display: block;
}

.game-fact span {
  color: #80748b;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-fact strong {
  margin-top: 5px;
  color: #e8d9f8;
  font-size: 0.9rem;
}

.page-section {
  padding-top: 125px;
  padding-bottom: 125px;
}

.page-section-compact {
  padding-top: 35px;
}

.answer-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid rgba(201, 154, 255, 0.18);
  border-bottom: 1px solid rgba(201, 154, 255, 0.18);
}

.answer-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.answer-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.answer-panel-copy p + p {
  margin-top: 18px;
}

.answer-panel-copy strong {
  color: #f0e5fb;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 410px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(202, 155, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(145, 75, 235, 0.1), transparent 40%),
    rgba(10, 6, 18, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  color: #fff;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.category-card:hover {
  border-color: rgba(196, 140, 255, 0.42);
  background:
    linear-gradient(155deg, rgba(155, 82, 249, 0.15), transparent 44%),
    rgba(12, 7, 21, 0.86);
  box-shadow:
    0 18px 40px rgba(64, 22, 111, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: translateY(-4px);
}

.category-card:focus-visible {
  outline: 2px solid #c98cff;
  outline-offset: 4px;
}

.category-card::after {
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(190, 123, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(118, 42, 226, 0.14);
  content: "";
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(189, 126, 255, 0.4);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(136, 54, 242, 0.27), rgba(255, 255, 255, 0.02));
  color: #c48cff;
}

.category-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.category-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.25rem, 1.5vw, 1.48rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.category-card p {
  margin: 0;
  max-width: 29ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

.category-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 28px;
  margin-top: auto;
  padding-top: 32px;
}

.category-logo-strip {
  display: flex;
  width: 100%;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.category-logo {
  display: grid;
  width: 64px;
  height: 40px;
  flex: 0 0 64px;
  place-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(198, 151, 255, 0.17);
  border-radius: 11px;
  background: rgba(15, 9, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-logo img {
  display: block;
  width: 100%;
  max-height: 25px;
  object-fit: contain;
}

.category-card .text-link {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(202, 155, 255, 0.22);
  border-radius: 12px;
  background: rgba(128, 61, 220, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #ead8ff;
  font-size: 0.84rem;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.category-card:hover .text-link {
  border-color: rgba(207, 159, 255, 0.42);
  background: rgba(146, 74, 238, 0.2);
  color: #fff;
}

.category-card .text-link svg {
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.category-card:hover .text-link svg {
  transform: translateX(4px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(35px, 8vw, 100px);
  align-items: end;
  margin-bottom: 58px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.provider-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
}

.provider-search-wrap {
  position: relative;
  width: min(460px, 100%);
}

.provider-search-wrap svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #9c8ba9;
  stroke-linecap: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.provider-search {
  width: 100%;
  min-height: 50px;
  padding: 0 17px 0 48px;
  border: 1px solid rgba(200, 154, 255, 0.22);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
}

.provider-search:focus {
  border-color: rgba(197, 132, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(142, 65, 241, 0.13);
}

.provider-count {
  color: #85788f;
  font-size: 0.77rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 157, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.provider-card:hover {
  border-color: rgba(194, 126, 255, 0.43);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), 0 0 32px rgba(111, 45, 233, 0.11);
  transform: translateY(-5px);
}

.provider-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 155px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--provider-color, #9a4dff) 52%, transparent), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(89, 27, 158, 0.11));
}

.provider-art::before,
.provider-art::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--provider-color, #9a4dff) 42%, transparent);
  border-radius: 50%;
  content: "";
}

.provider-art::before {
  width: 170px;
  height: 170px;
}

.provider-art::after {
  width: 105px;
  height: 105px;
  border-style: dashed;
}

.provider-monogram {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 820;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px color-mix(in srgb, var(--provider-color, #9a4dff) 74%, transparent);
}

.provider-card--logo {
  border-color: color-mix(in srgb, var(--provider-color) 28%, rgba(201, 157, 255, 0.16));
}

.provider-art--logo {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 44%, color-mix(in srgb, var(--provider-color) 22%, transparent), transparent 47%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(96, 51, 15, 0.08) 58%, rgba(89, 27, 158, 0.09));
}

.provider-art--logo::before {
  width: 230px;
  height: 112px;
  border-color: color-mix(in srgb, var(--provider-color) 31%, transparent);
  border-radius: 42%;
  filter: blur(0.2px);
  transform: rotate(-4deg);
}

.provider-art--logo::after {
  width: 184px;
  height: 82px;
  border-color: color-mix(in srgb, var(--provider-color) 30%, transparent);
  border-radius: 28px;
  border-style: solid;
  transform: rotate(4deg);
}

.provider-logo-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(68%, 230px);
  min-height: 96px;
  place-items: center;
  padding: 15px 20px;
  border: 1px solid color-mix(in srgb, var(--provider-color) 34%, rgba(255, 255, 255, 0.1));
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 178, 46, 0.025) 48%, rgba(12, 7, 19, 0.44)),
    rgba(12, 8, 18, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 38px rgba(0, 0, 0, 0.26),
    0 0 34px color-mix(in srgb, var(--provider-color) 18%, transparent);
  backdrop-filter: blur(8px);
}

.provider-logo-shell--light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.9)),
    #fff;
  box-shadow:
    inset 0 1px 0 #fff,
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 34px color-mix(in srgb, var(--provider-color) 16%, transparent);
}

.provider-logo {
  display: block;
  width: 100%;
  max-width: 184px;
  height: 72px;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 7px rgba(48, 21, 0, 0.5))
    drop-shadow(0 0 10px color-mix(in srgb, var(--provider-color) 24%, transparent));
}

.provider-logo-shell--light .provider-logo {
  filter: drop-shadow(0 5px 8px rgba(14, 9, 23, 0.16));
}

.provider-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 22px 22px;
}

.provider-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
}

.provider-body p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;
}

.provider-body .text-link {
  margin-top: auto;
}

.provider-empty {
  margin: 22px 0 0;
  padding: 32px;
  border: 1px dashed rgba(198, 150, 255, 0.24);
  border-radius: 15px;
  color: var(--muted);
  text-align: center;
}

.provider-card[hidden],
.provider-empty[hidden] {
  display: none;
}

.comparison-shell {
  overflow: hidden;
  border: 1px solid rgba(200, 154, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.comparison-shell table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-shell th,
.comparison-shell td {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(200, 154, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-shell th {
  color: #f0e4fc;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-shell td {
  color: var(--muted);
  font-size: 0.86rem;
}

.comparison-shell tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-shell td strong {
  color: #e9dcf7;
  font-weight: 650;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.article-nav {
  position: sticky;
  top: 102px;
  padding: 24px 0;
  border-top: 1px solid rgba(200, 154, 255, 0.2);
  border-bottom: 1px solid rgba(200, 154, 255, 0.2);
}

.article-nav span {
  color: #8d7b9c;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-nav a {
  display: block;
  margin-top: 14px;
  color: #b9a8c8;
  font-size: 0.84rem;
}

.article-nav a:hover {
  color: var(--accent-bright);
}

.article-prose {
  max-width: 790px;
}

.article-prose section {
  scroll-margin-top: 115px;
}

.article-prose section + section {
  margin-top: 72px;
  padding-top: 70px;
  border-top: 1px solid rgba(200, 154, 255, 0.15);
}

.article-prose h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.article-prose h3 {
  margin: 32px 0 10px;
  color: #eee2fb;
  font-size: 1.18rem;
  font-weight: 650;
}

.article-prose p,
.article-prose li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.article-prose p {
  margin: 0 0 18px;
}

.article-prose strong {
  color: #f1e7fb;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 19px 17px 49px;
  border: 1px solid rgba(200, 154, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(188, 126, 255, 0.54);
  border-radius: 50%;
  color: #c78fff;
  content: "✓";
  font-size: 0.7rem;
  line-height: 1;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-link {
  padding: 22px;
  border: 1px solid rgba(200, 154, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-link:hover {
  border-color: rgba(198, 133, 255, 0.5);
  transform: translateY(-3px);
}

.related-link strong,
.related-link span {
  display: block;
}

.related-link strong {
  color: #f0e5fb;
  font-size: 0.95rem;
}

.related-link span {
  margin-top: 6px;
  color: #8c7e97;
  font-size: 0.77rem;
}

.game-disclosure {
  margin: 32px 0 0;
  padding: 18px 20px;
  border-left: 2px solid #9a4dff;
  background: rgba(122, 49, 226, 0.07);
  color: #8e8199;
  font-size: 0.75rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: 390px;
  }
}

@media (max-width: 980px) {
  .nav-group summary {
    padding: 12px 14px;
  }

  .nav-dropdown {
    position: static;
    width: auto;
    margin: 3px 7px 7px;
    padding: 4px 4px 4px 14px;
    border: 0;
    border-left: 1px solid rgba(195, 130, 255, 0.3);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding-block: 10px;
    color: #9d8daa;
  }

  .game-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .game-hero-copy {
    text-align: center;
  }

  .breadcrumbs,
  .game-hero .hero-actions {
    justify-content: center;
  }

  .game-hero-lead {
    margin-inline: auto;
  }

  .game-stage {
    min-height: 350px;
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .article-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .article-nav span {
    width: 100%;
  }

  .article-nav a {
    margin-top: 6px;
  }
}

@media (max-width: 700px) {
  .game-hero {
    min-height: auto;
    padding: 112px 14px 68px;
  }

  .game-hero::after {
    top: 142px;
    width: 145vw;
    height: 340px;
  }

  .game-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .game-hero-lead {
    font-size: 0.93rem;
  }

  .game-stage {
    width: 100%;
    min-height: 330px;
    margin-inline: 0;
    transform: none;
  }

  .game-stage::before {
    width: min(290px, 80vw);
    height: min(290px, 80vw);
  }

  .game-stage::after {
    width: min(220px, 61vw);
    height: min(220px, 61vw);
  }

  .game-stage-core {
    width: 142px;
    border-radius: 30px;
  }

  .game-stage-core svg {
    width: 62px;
    height: 62px;
  }

  .stage-chip {
    width: min(142px, 41vw);
    min-width: 0;
    padding: 10px 12px;
    overflow-wrap: anywhere;
  }

  .stage-chip span {
    font-size: 0.56rem;
  }

  .stage-chip strong {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .stage-chip-one {
    top: 29px;
    right: 2px;
  }

  .stage-chip-two {
    bottom: 21px;
    left: 2px;
  }

  .stage-chip-three {
    right: 2px;
    bottom: 21px;
  }

  .game-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -24px;
  }

  .game-fact + .game-fact {
    border-top: 1px solid rgba(203, 161, 255, 0.14);
    border-left: 0;
  }

  .page-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-section.page-section-compact {
    padding-top: 48px;
  }

  .answer-panel,
  .section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .category-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-rail .category-card,
  .category-rail .category-card + .category-card,
  .category-rail .category-card:nth-child(3) {
    min-height: 0;
    padding: 22px 20px 20px;
    border: 1px solid rgba(202, 155, 255, 0.18);
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(125, 50, 230, 0.09), rgba(255, 255, 255, 0.015) 54%),
      rgba(10, 6, 18, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .category-card::after {
    right: -62px;
    bottom: -72px;
    width: 170px;
    height: 170px;
  }

  .category-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .category-icon svg {
    width: 27px;
    height: 27px;
  }

  .category-card h3 {
    margin: 22px 0 10px;
    font-size: 1.5rem;
  }

  .category-card p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .category-logo-strip {
    gap: 8px;
  }

  .category-card-footer {
    gap: 22px;
    margin-top: 0;
    padding-top: 24px;
  }

  .category-card .text-link {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 0 14px;
  }

  .provider-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .provider-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-shell {
    overflow-x: auto;
  }

  .comparison-shell table {
    min-width: 660px;
  }

  .article-prose h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 430px) {
  .game-stage {
    min-height: 308px;
    margin-inline: 0;
    transform: none;
  }

  .game-stage::before {
    width: min(272px, 78vw);
    height: min(272px, 78vw);
  }

  .stage-chip {
    width: min(132px, 40vw);
    min-width: 0;
    padding: 9px 10px;
  }
}

/* Cross-device typography: use the same bundled face and standard weights everywhere. */
h1,
h2,
.section-heading h2,
.answer-section h2,
.answer-panel h2,
.method-section h2,
.section-intro h2,
.article-prose h2,
.final-cta h2,
.hero h1,
.game-hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-synthesis: none;
}

h3,
.category-card h3,
.provider-body h3,
.article-prose h3 {
  font-family: var(--font);
  font-weight: 700;
  font-synthesis: none;
}

.brand-wordmark,
.button,
.text-link,
.section-kicker,
.hero-label {
  font-weight: 800;
  font-synthesis: none;
}

.provider-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.provider-card:focus-visible {
  border-color: rgba(218, 174, 255, 0.78);
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 38px rgba(143, 68, 242, 0.22);
}

.review-destination-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(194, 133, 255, 0.72);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.review-destination-link:hover {
  color: var(--accent-soft);
}

/* Conversion proof module */
.player-proof-section {
  position: relative;
  padding-block: 118px;
}

.player-proof-section::before {
  position: absolute;
  z-index: -1;
  inset: 22px -70px;
  border: 1px solid rgba(173, 112, 255, 0.12);
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 6%, rgba(132, 45, 255, 0.17), transparent 32%),
    linear-gradient(135deg, rgba(15, 9, 29, 0.96), rgba(6, 4, 13, 0.88));
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.32);
  content: "";
}

.player-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.player-proof-heading h2,
.provider-guides-heading h2,
.guide-directory h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.player-proof-heading > p,
.provider-guides-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.player-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.player-proof-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(190, 129, 255, 0.42);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(25, 15, 46, 0.95), rgba(8, 5, 17, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px rgba(0, 0, 0, 0.3);
}

.player-proof-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(139, 71, 255, 0.18);
  filter: blur(36px);
  content: "";
}

.player-proof-topline,
.player-proof-result,
.proof-receipt > div,
.player-proof-footer,
.proof-trust-strip {
  display: flex;
  align-items: center;
}

.player-proof-topline {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.player-proof-topline > span:first-child {
  padding: 6px 10px;
  border: 1px solid rgba(202, 154, 255, 0.34);
  border-radius: 8px;
  background: rgba(126, 47, 225, 0.2);
  color: #dfc0ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-check {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.7);
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #6ee7a0;
  font-weight: 900;
}

.player-proof-card h3 {
  position: relative;
  z-index: 1;
  margin: 25px 0 3px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.player-proof-result {
  justify-content: space-between;
  margin: 0 0 20px;
  color: var(--muted-strong);
}

.player-proof-result strong {
  color: var(--accent-bright);
}

.player-proof-result span {
  font-weight: 800;
}

.proof-receipt {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(245, 239, 255, 0.48);
  border-radius: 13px;
  background:
    repeating-linear-gradient(0deg, rgba(18, 10, 32, 0.025) 0 1px, transparent 1px 4px),
    #eee9f4;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  color: #1b1227;
}

.proof-receipt > div {
  justify-content: space-between;
  gap: 16px;
}

.proof-receipt > div + div {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(40, 23, 63, 0.18);
}

.proof-receipt span {
  color: #675b72;
  font-size: 0.72rem;
}

.proof-receipt strong {
  font-size: 0.76rem;
  text-align: right;
}

.proof-status {
  margin: 16px 0 0;
  color: #9aefb9;
  font-size: 0.82rem;
  font-weight: 700;
}

.player-proof-footer {
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
}

.proof-trust-strip {
  flex: 1;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid rgba(188, 130, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.proof-trust-strip span:not(:last-child)::after {
  margin-left: 26px;
  color: rgba(220, 183, 255, 0.48);
  content: "•";
}

/* Homepage SEO guide directory */
.guide-directory {
  padding-block: 120px;
}

.guide-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-directory-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(199, 151, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(148, 71, 255, 0.13), transparent 45%),
    rgba(18, 11, 32, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-directory-card:hover {
  border-color: rgba(199, 151, 255, 0.48);
  background-color: rgba(25, 15, 43, 0.86);
  transform: translateY(-4px);
}

.guide-directory-card > span {
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-directory-card h3 {
  margin: 36px 0 12px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.guide-directory-card p {
  margin: 0 0 28px;
  color: var(--muted);
}

.guide-directory-card strong {
  color: #dfb8ff;
  font-size: 0.86rem;
}

/* Slots editorial provider links */
.provider-guides-section {
  padding-block: 70px 92px;
}

.provider-guides-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.provider-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.provider-guide-card {
  display: grid;
  min-height: 290px;
  padding: 18px;
  border: 1px solid rgba(196, 143, 255, 0.22);
  border-radius: 22px;
  background: rgba(15, 9, 27, 0.86);
  transition: transform 180ms ease, border-color 180ms ease;
}

.provider-guide-card:hover {
  border-color: rgba(196, 143, 255, 0.58);
  transform: translateY(-4px);
}

.provider-guide-logo {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 20px;
  border-radius: 15px;
  background:
    radial-gradient(circle, rgba(139, 71, 255, 0.19), transparent 62%),
    rgba(255, 255, 255, 0.025);
}

.provider-guide-logo img {
  width: min(180px, 85%);
  max-height: 72px;
  object-fit: contain;
}

.provider-guide-copy {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px 8px 6px;
}

.provider-guide-copy small {
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-guide-copy strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.provider-guide-copy > span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Search-intent guide pages */
.guide-page-main {
  padding-top: 104px;
}

.guide-hero {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  margin: 36px auto 0;
  padding: 70px 60px 64px;
  overflow: hidden;
  border: 1px solid rgba(200, 151, 255, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 15%, rgba(133, 55, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(23, 14, 42, 0.96), rgba(7, 4, 14, 0.94));
}

.guide-hero::after {
  position: absolute;
  right: -140px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(196, 137, 255, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(135, 58, 255, 0.12);
  content: "";
}

.guide-hero .breadcrumbs,
.guide-hero-copy {
  position: relative;
  z-index: 1;
}

.guide-hero-copy {
  width: min(760px, 100%);
}

.guide-hero h1 {
  margin: 24px 0;
  font-size: clamp(2.7rem, 6.2vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.guide-hero h1 span {
  color: var(--accent-soft);
}

.guide-hero-lead {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.guide-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), 1000px);
  margin: 24px auto 0;
  border: 1px solid rgba(199, 153, 255, 0.16);
  border-radius: 18px;
  background: rgba(14, 8, 25, 0.84);
}

.guide-facts > div {
  padding: 22px 28px;
}

.guide-facts > div + div {
  border-left: 1px solid rgba(199, 153, 255, 0.14);
}

.guide-facts span,
.guide-facts strong {
  display: block;
}

.guide-facts span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-facts strong {
  margin-top: 5px;
  font-size: 0.98rem;
}

.guide-content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 52px;
  width: min(calc(100% - 40px), 1080px);
  margin: 92px auto 0;
  align-items: start;
}

.guide-article {
  min-width: 0;
}

.guide-content-section + .guide-content-section {
  margin-top: 76px;
  padding-top: 72px;
  border-top: 1px solid rgba(199, 153, 255, 0.14);
}

.guide-content-section h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.guide-content-section h3 {
  margin: 34px 0 10px;
  font-size: 1.18rem;
}

.guide-content-section p,
.guide-content-section li {
  color: var(--muted-strong);
}

.guide-content-section ul,
.guide-content-section ol {
  display: grid;
  gap: 13px;
  padding-left: 22px;
}

.guide-answer {
  padding: 28px;
  border-left: 3px solid var(--accent-bright);
  border-radius: 0 18px 18px 0;
  background: rgba(139, 71, 255, 0.09);
}

.guide-answer p {
  margin: 0;
  color: var(--text);
}

.guide-side-card {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid rgba(197, 143, 255, 0.2);
  border-radius: 20px;
  background: rgba(16, 10, 29, 0.92);
}

.guide-side-card h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.guide-side-card ol,
.guide-side-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.guide-table {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  padding: 16px;
  border: 1px solid rgba(196, 148, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  background: rgba(139, 71, 255, 0.1);
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-table td {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  -webkit-overflow-scrolling: touch;
}

.evidence-panel {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(196, 148, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(139, 71, 255, 0.1), rgba(11, 7, 20, 0.88));
}

.evidence-panel > :first-child {
  margin-top: 0;
}

.evidence-panel > :last-child {
  margin-bottom: 0;
}

.evidence-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.observed-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(196, 148, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 3, 11, 0.7);
}

.observed-form-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(0, 1.4fr);
  gap: 16px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.observed-form-row span {
  color: var(--text);
  font-weight: 750;
}

.observed-form-row small {
  color: var(--muted);
}

.change-log {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border: 1px solid rgba(196, 148, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
}

.change-log > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 20px;
}

.change-log > div + div {
  border-top: 1px solid rgba(196, 148, 255, 0.12);
}

.change-log time {
  color: var(--accent-soft);
  font-weight: 750;
}

.change-log p {
  margin: 0;
}

.related-guides {
  padding-block: 110px 30px;
}

.related-guides h2 {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-guide-link {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(197, 143, 255, 0.18);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-guide-link:hover {
  border-color: rgba(197, 143, 255, 0.5);
  transform: translateY(-3px);
}

.related-guide-link span {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-guide-link strong {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .player-proof-heading,
  .provider-guides-heading,
  .guide-content-shell {
    grid-template-columns: 1fr;
  }

  .player-proof-grid,
  .guide-directory-grid,
  .provider-guides-grid,
  .related-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .player-proof-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .player-proof-section,
  .guide-directory {
    padding-block: 82px;
  }

  .player-proof-section::before {
    inset-inline: 0;
    border-radius: 28px;
  }

  .player-proof-heading,
  .provider-guides-heading {
    gap: 18px;
  }

  .player-proof-grid,
  .guide-directory-grid,
  .provider-guides-grid,
  .related-guides-grid {
    grid-template-columns: 1fr;
  }

  .proof-trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .proof-trust-strip span:not(:last-child)::after {
    display: none;
  }

  .guide-directory-card {
    min-height: 220px;
  }

  .guide-hero {
    width: calc(100% - 24px);
    margin-top: 20px;
    padding: 46px 24px 44px;
    border-radius: 24px;
  }

  .guide-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.3rem);
  }

  .guide-hero-actions,
  .guide-hero-actions .button {
    width: 100%;
  }

  .guide-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .guide-facts > div + div {
    border-top: 1px solid rgba(199, 153, 255, 0.14);
    border-left: 0;
  }

  .guide-content-shell {
    width: calc(100% - 32px);
    margin-top: 68px;
  }

  .guide-content-section + .guide-content-section {
    margin-top: 56px;
    padding-top: 52px;
  }

  .guide-table {
    display: block;
    overflow-x: auto;
  }

  .evidence-panel {
    padding: 20px 16px;
  }

  .observed-form {
    padding: 14px;
  }

  .observed-form-row,
  .change-log > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Homepage provider marquee */
.provider-marquee {
  position: relative;
  width: min(960px, 100%);
  margin: 30px auto 0;
  padding: 13px 0 15px;
  overflow: hidden;
  border: 1px solid rgba(199, 164, 236, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.025), transparent 38%),
    rgba(9, 7, 15, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 55px rgba(0, 0, 0, 0.22);
}

.provider-marquee-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 18px 11px;
  color: #8f8799;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.provider-marquee-label span {
  width: 22px;
  height: 1px;
  background: rgba(190, 139, 245, 0.58);
  box-shadow: 0 0 10px rgba(151, 77, 232, 0.46);
}

.provider-marquee-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.provider-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: bodabet-provider-slide 34s linear infinite;
}

.provider-marquee:hover .provider-marquee-track {
  animation-play-state: paused;
}

.provider-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(30px, 4.5vw, 62px);
  padding-inline: clamp(24px, 4vw, 54px);
}

.provider-marquee-logo {
  display: grid;
  flex: 0 0 116px;
  width: 116px;
  height: 46px;
  place-items: center;
  opacity: 0.76;
}

.provider-marquee-logo img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(1.28);
}

@keyframes bodabet-provider-slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Editorial player feedback */
.player-feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(184, 151, 220, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(127, 65, 197, 0.1), transparent 36%),
    rgba(11, 8, 18, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 26px 70px rgba(0, 0, 0, 0.3);
}

.player-feedback-media {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
  background: #0b0a0f;
}

.player-feedback-media picture {
  display: block;
  height: 100%;
  min-height: inherit;
}

.player-feedback-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.02) brightness(0.87);
}

.player-feedback-copy {
  padding: 14px clamp(4px, 1vw, 16px) 14px 0;
}

.player-feedback-copy h3 {
  max-width: 520px;
  margin: 0;
  color: #f6f2fb;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.player-feedback-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.player-feedback-meta {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(195, 156, 235, 0.14);
}

.player-feedback-meta strong {
  color: #e6dcef;
  font-size: 0.84rem;
}

.player-feedback-meta span {
  color: #81788c;
  font-size: 0.74rem;
}

.player-feedback-copy .text-link {
  margin-top: 24px;
}

.button:active,
.player-feedback-copy .text-link:active {
  transform: translateY(0) scale(0.98);
}

@media (max-width: 900px) {
  .player-feedback-panel {
    grid-template-columns: 1fr;
  }

  .player-feedback-copy {
    padding: 4px 4px 10px;
  }
}

@media (max-width: 640px) {
  .provider-marquee {
    width: min(100%, 420px);
    margin-top: 24px;
    border-radius: 15px;
  }

  .provider-marquee-label {
    margin-inline: 14px;
    font-size: 0.56rem;
    letter-spacing: 0.09em;
  }

  .provider-marquee-group {
    gap: 28px;
    padding-inline: 24px;
  }

  .provider-marquee-logo {
    flex-basis: 94px;
    width: 94px;
    height: 40px;
  }

  .provider-marquee-logo img {
    max-height: 36px;
  }

  .player-feedback-panel {
    gap: 26px;
    margin-top: 34px;
    padding: 14px;
    border-radius: 20px;
  }

  .player-feedback-media,
  .player-feedback-media img {
    min-height: 260px;
  }

  .player-feedback-media {
    border-radius: 14px;
  }

  .player-feedback-copy {
    padding: 5px 6px 12px;
  }

  .player-feedback-copy h3 {
    font-size: clamp(1.9rem, 9.2vw, 2.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .provider-marquee-track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .provider-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .provider-marquee-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }
}

/* Bodabet Insights & Updates v1 */
.news-page {
  background: #07040d;
  color: var(--text, #f8f4ff);
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(9rem, 15vw, 12rem) 0 clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(198, 143, 255, .16);
  background:
    radial-gradient(circle at 75% 25%, rgba(122, 50, 255, .2), transparent 34%),
    linear-gradient(180deg, rgba(20, 9, 39, .96), rgba(7, 4, 13, 1));
}

.news-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -20rem;
  width: 44rem;
  height: 44rem;
  border: 1px solid rgba(190, 119, 255, .22);
  border-radius: 50%;
  pointer-events: none;
}

.news-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
  color: #a99eb8;
  font-size: .84rem;
}

.news-breadcrumbs a { color: #d8c8ef; text-decoration: none; }
.news-breadcrumbs a:hover { color: #fff; }

.news-hero h1,
.news-article-header h1 {
  max-width: 980px;
  margin: .75rem 0 1.5rem;
  font-size: clamp(3rem, 6.7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.news-hero-summary,
.news-article-deck {
  max-width: 820px;
  margin: 0;
  color: #c8bed4;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.news-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  width: fit-content;
  margin-top: 2.25rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(190, 119, 255, .24);
  border-radius: 14px;
  background: rgba(15, 9, 25, .72);
}
.news-hero-meta span { color: #998ca8; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.news-hero-meta strong { color: #fff; }
.news-hero-meta a, .news-back-link { color: #d9a7ff; text-decoration: none; font-weight: 700; }
.news-back-link { display: inline-flex; margin-top: 2rem; }

.news-section { padding-top: clamp(4.5rem, 8vw, 7rem); padding-bottom: clamp(4.5rem, 8vw, 7rem); }
.news-section + .news-section { border-top: 1px solid rgba(198, 143, 255, .12); }
.news-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 430px); align-items: end; gap: 2rem; margin-bottom: 2.25rem; }
.news-section-heading h2, .news-section > h2 { margin: .5rem 0 0; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.045em; }
.news-section-heading > p { margin: 0; color: #a99eb8; line-height: 1.7; }

.news-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.news-card { overflow: hidden; border: 1px solid rgba(197, 148, 255, .18); border-radius: 22px; background: linear-gradient(145deg, rgba(23, 14, 36, .96), rgba(11, 7, 19, .98)); transition: transform .25s ease, border-color .25s ease; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(201, 140, 255, .45); }
.news-card-media { display: block; aspect-ratio: 1200 / 630; overflow: hidden; border-bottom: 1px solid rgba(197, 148, 255, .14); background: #120920; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card-media img { transform: scale(1.025); }
.news-card-body { padding: 1.45rem; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin: 0 0 1rem; color: #9b8da9; font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.news-card-meta span { color: #d4a1ff; }
.news-card h2 { margin: 0; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.news-card h2 a { color: #fff; text-decoration: none; }
.news-card-body > p:not(.news-card-meta) { min-height: 5.4em; margin: .9rem 0 1.2rem; color: #aea3ba; line-height: 1.65; }
.news-read-link { color: #daa9ff; font-weight: 800; text-decoration: none; }

.news-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.news-category-card { min-height: 260px; padding: 1.7rem; border: 1px solid rgba(197, 148, 255, .17); border-radius: 20px; background: rgba(16, 9, 26, .86); color: inherit; text-decoration: none; }
.news-category-card:hover { border-color: rgba(207, 157, 255, .45); background: rgba(26, 13, 44, .92); }
.news-category-status { display: inline-flex; margin-bottom: 2.2rem; color: #c791f7; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.news-category-card h3 { margin: 0 0 .8rem; font-size: 1.45rem; }
.news-category-card p { color: #aa9fb5; line-height: 1.6; }
.news-category-card strong { display: inline-flex; margin-top: .6rem; color: #e0b5ff; }
.news-category-guide { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.news-category-guide h2 { margin: .5rem 0 1.25rem; font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.045em; }
.news-category-guide-copy > p:not(.section-kicker) { max-width: 760px; color: #b9afc4; line-height: 1.78; }
.news-category-guide-checks { padding: clamp(1.35rem, 3vw, 2rem); border: 1px solid rgba(197, 148, 255, .2); border-radius: 22px; background: rgba(16, 9, 26, .9); }
.news-category-guide-checks h3 { margin: 0 0 1rem; font-size: 1.3rem; }
.news-category-guide-checks ul { display: grid; gap: .75rem; margin: 0 0 1.35rem; padding-left: 1.2rem; color: #b9afc4; line-height: 1.6; }
.news-category-guide-checks nav { display: grid; gap: .7rem; }
.news-category-guide-checks a { color: #d9a8ff; font-weight: 750; text-decoration: none; }
.news-category-guide-checks a:hover { color: #f1d8ff; }
.news-empty-state { padding: 3rem; border: 1px solid rgba(197, 148, 255, .17); border-radius: 22px; background: rgba(16, 9, 26, .72); }
.news-empty-state p { max-width: 720px; color: #b3a8bd; line-height: 1.7; }
.news-empty-state a { color: #daa9ff; font-weight: 750; }

.news-article-header { padding: clamp(8.5rem, 14vw, 11rem) 0 3rem; background: radial-gradient(circle at 70% 0, rgba(126, 57, 255, .18), transparent 34%); }
.news-article-header h1 { font-size: clamp(2.8rem, 6.2vw, 5.8rem); }
.news-byline { display: grid; grid-template-columns: 64px minmax(250px, 1fr) auto auto; align-items: center; gap: 1rem 1.4rem; margin-top: 2.2rem; padding: 1.1rem 1.25rem; border: 1px solid rgba(211, 171, 255, .2); border-radius: 18px; background: rgba(10, 5, 17, .74); }
.news-byline img { display: block; width: 64px; height: 64px; aspect-ratio: 1; border: 2px solid rgba(221, 184, 255, .72); border-radius: 50%; object-fit: cover; object-position: 50% 18%; background: #1d0d31; box-shadow: 0 0 0 4px rgba(148, 71, 255, .1), 0 8px 26px rgba(0, 0, 0, .3); }
.news-byline div { min-width: 0; display: grid; align-content: center; gap: .32rem; }
.news-byline span { color: #cdbadd; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.news-byline a { color: #fff; font-size: 1rem; line-height: 1.35; text-decoration: none; }
.news-byline a strong { color: #fff; font-weight: 850; }
.news-byline time { color: #fff; font-weight: 750; text-decoration: none; }
.news-featured-image { overflow: hidden; margin: 2.5rem 0 0; border: 1px solid rgba(197, 148, 255, .18); border-radius: 26px; aspect-ratio: 1200 / 630; background: #120920; }
.news-featured-image img { width: 100%; height: 100%; object-fit: cover; }

.news-article-layout { display: grid; grid-template-columns: minmax(0, 790px) minmax(240px, 320px); justify-content: space-between; gap: clamp(2.5rem, 6vw, 6rem); padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(5rem, 9vw, 8rem); }
.news-article-content { min-width: 0; color: #c5bacf; font-size: 1.04rem; line-height: 1.82; }
.news-article-content > p:first-child { font-size: 1.18rem; color: #eee7f7; }
.news-article-content h2 { scroll-margin-top: 7rem; margin: 3.2rem 0 1rem; color: #fff; font-size: clamp(1.85rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; }
.news-article-content h3 { margin: 2rem 0 .6rem; color: #f5effb; font-size: 1.2rem; }
.news-article-content a { color: #d7a1ff; text-underline-offset: .2em; }
.news-article-content li + li { margin-top: .65rem; }
.article-answer, .article-note { padding: 1.2rem 1.3rem; border-left: 3px solid #a84dff; border-radius: 0 14px 14px 0; background: rgba(92, 32, 150, .12); }
.article-toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .4rem 1rem; margin: 2rem 0 3rem; padding: 1.3rem; border: 1px solid rgba(197, 148, 255, .18); border-radius: 18px; background: rgba(15, 9, 24, .78); }
.article-toc strong { grid-column: 1 / -1; margin-bottom: .45rem; color: #fff; }
.article-toc a { text-decoration: none; }
.article-table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid rgba(197, 148, 255, .18); border-radius: 18px; }
.article-table-wrap table { width: 100%; min-width: 720px; border-collapse: collapse; }
.article-table-wrap th, .article-table-wrap td { padding: 1rem; border-bottom: 1px solid rgba(197, 148, 255, .13); text-align: left; vertical-align: top; }
.article-table-wrap th { color: #f4e9ff; background: rgba(95, 39, 148, .18); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.article-checklist { padding-left: 1.25rem; }
.article-evidence { margin: 3.5rem 0; padding: clamp(1.4rem, 4vw, 2.2rem); border: 1px solid rgba(205, 152, 255, .24); border-radius: 22px; background: linear-gradient(135deg, rgba(65, 25, 104, .24), rgba(15, 8, 25, .88)); }
.article-evidence h2 { margin-top: .4rem; }
.article-evidence-grid, .article-problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.article-evidence-grid > div, .article-problem-grid section { padding: 1.15rem; border: 1px solid rgba(197, 148, 255, .13); border-radius: 16px; background: rgba(7, 4, 13, .38); }
.article-evidence-grid h3, .article-problem-grid h3 { margin-top: 0; }
.article-faq { margin-top: 4rem; padding-top: 1rem; border-top: 1px solid rgba(197, 148, 255, .17); }
.article-faq h3 { margin-top: 1.6rem; }
.article-sources { margin-top: 3rem; padding: 1.4rem; border: 1px solid rgba(197, 148, 255, .15); border-radius: 18px; }
.article-sources h2 { margin-top: .3rem; font-size: 1.7rem; }
.news-article-cta { margin-top: 4rem; padding: clamp(1.5rem, 5vw, 2.6rem); border: 1px solid rgba(202, 146, 255, .32); border-radius: 24px; background: radial-gradient(circle at 80% 0, rgba(157, 67, 255, .26), transparent 45%), #160b24; }
.news-article-cta h2 { margin-top: .4rem; }
.news-article-aside { align-self: start; position: sticky; top: 7rem; display: grid; gap: 1rem; }
.news-aside-card { padding: 1.35rem; border: 1px solid rgba(197, 148, 255, .17); border-radius: 18px; background: rgba(15, 9, 24, .88); }
.news-aside-card h2 { margin: .45rem 0 .8rem; font-size: 1.2rem; }
.news-aside-card p { color: #a99fb3; line-height: 1.6; }
.news-aside-card a { color: #d9a8ff; text-decoration: none; font-weight: 700; }
.news-aside-card nav { display: grid; gap: .8rem; }

/* Pilot article components stay contained inside the two approved content roots. */
.news-article-content .table-wrap,
.news-article-content .nonbrand-safety__table-wrap,
.nonbrand-guide .nonbrand-safety__table-wrap,
.nonbrand-guide .table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1px solid rgba(197, 148, 255, .18);
  border-radius: 18px;
  background: rgba(12, 7, 21, .72);
  scrollbar-color: rgba(196, 139, 255, .65) rgba(255, 255, 255, .04);
  overscroll-behavior-inline: contain;
}

.news-article-content .table-wrap table,
.news-article-content .nonbrand-safety__table-wrap table,
.nonbrand-guide .nonbrand-safety__table-wrap table,
.nonbrand-guide .table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.news-article-content .table-wrap th,
.news-article-content .table-wrap td,
.news-article-content .nonbrand-safety__table-wrap th,
.news-article-content .nonbrand-safety__table-wrap td,
.nonbrand-guide .nonbrand-safety__table-wrap th,
.nonbrand-guide .nonbrand-safety__table-wrap td,
.nonbrand-guide .table-wrap th,
.nonbrand-guide .table-wrap td {
  padding: .9rem 1rem;
  border-right: 1px solid rgba(197, 148, 255, .1);
  border-bottom: 1px solid rgba(197, 148, 255, .13);
  text-align: left;
  vertical-align: top;
}

.news-article-content .table-wrap th,
.news-article-content .nonbrand-safety__table-wrap th,
.nonbrand-guide .nonbrand-safety__table-wrap th,
.nonbrand-guide .table-wrap th {
  color: #f4e9ff;
  background: rgba(95, 39, 148, .18);
}

.news-article-content .nonbrand-wagering__variables,
.nonbrand-guide .nonbrand-wagering__variables {
  display: grid;
  grid-template-columns: minmax(38px, auto) minmax(0, 1fr);
  gap: .65rem 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(197, 148, 255, .17);
  border-radius: 18px;
  background: rgba(18, 9, 31, .72);
}

.news-article-content .nonbrand-wagering__variables dt,
.nonbrand-guide .nonbrand-wagering__variables dt { color: #e0b5ff; font-weight: 850; }
.news-article-content .nonbrand-wagering__variables dd,
.nonbrand-guide .nonbrand-wagering__variables dd { min-width: 0; margin: 0; }

.news-article-content [data-wagering-example],
.news-article-content [data-wagering-check],
.news-article-content [data-withdrawal-cause],
.nonbrand-guide [data-wagering-example],
.nonbrand-guide [data-wagering-check],
.nonbrand-guide [data-withdrawal-cause] {
  min-width: 0;
  margin: 1rem 0;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(197, 148, 255, .15);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(72, 29, 116, .16), rgba(11, 6, 19, .78));
}

.news-article-content .nonbrand-safety__checklist,
.news-article-content .nonbrand-withdrawal__evidence,
.nonbrand-guide .nonbrand-safety__checklist,
.nonbrand-guide .nonbrand-withdrawal__evidence {
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.news-article-content .nonbrand-safety__checklist li,
.news-article-content .nonbrand-withdrawal__evidence li,
.nonbrand-guide .nonbrand-safety__checklist li,
.nonbrand-guide .nonbrand-withdrawal__evidence li {
  margin: 0;
  padding: .9rem 1rem .9rem 2.5rem;
  border: 1px solid rgba(197, 148, 255, .13);
  border-radius: 14px;
  background: rgba(15, 9, 25, .7);
}

.news-article-content .nonbrand-safety__checklist li::before,
.news-article-content .nonbrand-withdrawal__evidence li::before,
.nonbrand-guide .nonbrand-safety__checklist li::before,
.nonbrand-guide .nonbrand-withdrawal__evidence li::before {
  float: left;
  margin-left: -1.55rem;
  color: #d5a3ff;
  content: "\2713";
}

.news-article-content .nonbrand-withdrawal__workflow,
.news-article-content .nonbrand-wagering__workflow,
.nonbrand-guide .nonbrand-withdrawal__workflow,
.nonbrand-guide .nonbrand-wagering__workflow {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.news-article-content .nonbrand-withdrawal__workflow li,
.news-article-content .nonbrand-wagering__workflow li,
.nonbrand-guide .nonbrand-withdrawal__workflow li,
.nonbrand-guide .nonbrand-wagering__workflow li {
  margin: 0;
  padding: .75rem .9rem;
  border-left: 2px solid rgba(201, 143, 255, .55);
  background: rgba(78, 31, 126, .09);
}

.news-article-content .nonbrand-guide__source-note,
.nonbrand-guide .nonbrand-guide__source-note {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.news-article-content .nonbrand-guide__directory,
.nonbrand-guide .nonbrand-guide__directory {
  display: grid;
  gap: .7rem;
  max-width: 100%;
}

.news-article-content .nonbrand-guide__directory a,
.nonbrand-guide .nonbrand-guide__directory a {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: .75rem .85rem;
  border: 1px solid rgba(197, 148, 255, .14);
  border-radius: 12px;
  background: rgba(20, 10, 34, .74);
  overflow-wrap: anywhere;
  text-decoration: none;
}

@media (max-width: 980px) {
  .news-card-grid, .news-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-article-layout { grid-template-columns: minmax(0, 1fr); }
  .news-article-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-byline { grid-template-columns: 64px minmax(220px, 1fr) auto; }
  .news-byline > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .news-hero { padding-top: 8rem; }
  .news-hero h1, .news-article-header h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .news-category-guide { grid-template-columns: 1fr; }
  .news-section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .news-card-grid, .news-category-grid, .article-evidence-grid, .article-problem-grid, .news-article-aside { grid-template-columns: 1fr; }
  .news-category-card { min-height: auto; }
  .news-card-body > p:not(.news-card-meta) { min-height: 0; }
  .news-byline { grid-template-columns: 64px minmax(0, 1fr); align-items: start; gap: 1rem; padding: 1rem; }
  .news-byline > div:nth-of-type(2), .news-byline > div:last-child { grid-column: 2; padding-top: .85rem; border-top: 1px solid rgba(211, 171, 255, .15); }
  .article-toc { grid-template-columns: 1fr; }
  .news-featured-image { border-radius: 18px; }
  .news-article-content { font-size: 1rem; }
}

@media (max-width: 640px) {
  .news-article-content,
  .nonbrand-guide { overflow-wrap: anywhere; }

  .news-article-content .table-wrap,
  .news-article-content .nonbrand-safety__table-wrap,
  .nonbrand-guide .nonbrand-safety__table-wrap,
  .nonbrand-guide .table-wrap {
    max-width: 100%;
    border-radius: 14px;
  }

  .news-article-content .table-wrap table,
  .news-article-content .nonbrand-safety__table-wrap table,
  .nonbrand-guide .nonbrand-safety__table-wrap table,
  .nonbrand-guide .table-wrap table { min-width: 720px; }

  .news-article-content .table-wrap :is(th, td):first-child,
  .news-article-content .nonbrand-safety__table-wrap :is(th, td):first-child,
  .nonbrand-guide .table-wrap :is(th, td):first-child,
  .nonbrand-guide .nonbrand-safety__table-wrap :is(th, td):first-child { min-width: 160px; }

  .news-article-content .article-toc a,
  .news-article-content .nonbrand-guide__directory a,
  .news-article-content .nonbrand-guide__source-note a,
  .nonbrand-guide .nonbrand-guide__directory a,
  .nonbrand-guide .nonbrand-guide__source-note a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .news-article-content [data-wagering-example],
  .news-article-content [data-wagering-check],
  .news-article-content [data-withdrawal-cause],
  .nonbrand-guide [data-wagering-example],
  .nonbrand-guide [data-wagering-check],
  .nonbrand-guide [data-withdrawal-cause],
  .news-article-content .nonbrand-guide__source-note,
  .news-article-content .nonbrand-guide__directory,
  .nonbrand-guide .nonbrand-guide__source-note,
  .nonbrand-guide .nonbrand-guide__directory { padding: 1rem; }
}

/* Non-brand Malaysia comparison pillars */
.nonbrand-guide {
  overflow-x: clip;
}

.nonbrand-guide .nonbrand-guide__hero .guide-hero-copy {
  max-width: 980px;
}

.nonbrand-guide .nonbrand-guide__hero h1 {
  max-width: 1000px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

.nonbrand-guide .nonbrand-guide__hero-image {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 2.25rem 0 0;
}

.nonbrand-guide .nonbrand-guide__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border: 1px solid rgba(215, 177, 255, 0.25);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.nonbrand-guide .nonbrand-guide__hero-image figcaption {
  margin-top: 0.75rem;
  color: #b9adbf;
  font-size: 0.82rem;
  line-height: 1.55;
}

.nonbrand-guide .nonbrand-guide__layout {
  grid-template-columns: minmax(0, 820px) minmax(240px, 300px);
}

.nonbrand-guide .nonbrand-guide__matrix {
  position: relative;
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid rgba(199, 151, 255, 0.2);
  border-radius: 20px;
  background: rgba(12, 7, 21, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  scrollbar-color: rgba(196, 139, 255, 0.65) rgba(255, 255, 255, 0.04);
}

.nonbrand-guide .nonbrand-guide__matrix:focus-visible {
  outline: 3px solid rgba(209, 166, 255, 0.7);
  outline-offset: 4px;
}

.nonbrand-guide .nonbrand-guide__matrix table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.nonbrand-guide .nonbrand-guide__matrix th,
.nonbrand-guide .nonbrand-guide__matrix td {
  padding: 1rem;
  border-right: 1px solid rgba(199, 151, 255, 0.11);
  border-bottom: 1px solid rgba(199, 151, 255, 0.13);
  text-align: left;
  vertical-align: top;
}

.nonbrand-guide .nonbrand-guide__matrix thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #211231;
  color: #f5eaff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nonbrand-guide .nonbrand-guide__matrix tbody th {
  width: 120px;
  background: rgba(118, 53, 180, 0.13);
  color: #e1b9ff;
  font-size: 0.88rem;
}

.nonbrand-guide .nonbrand-guide__matrix td {
  min-width: 225px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.65;
}

.nonbrand-guide .nonbrand-guide__evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.nonbrand-guide .nonbrand-guide__evidence section {
  padding: 1.4rem;
  border: 1px solid rgba(199, 151, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(102, 42, 163, 0.15), rgba(12, 7, 21, 0.82));
}

.nonbrand-guide .nonbrand-guide__evidence h3 {
  margin-top: 0;
}

.nonbrand-guide .nonbrand-guide__evidence p {
  margin-bottom: 0;
}

.nonbrand-guide .nonbrand-guide__workflow {
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: nonbrand-step;
  list-style: none;
}

.nonbrand-guide .nonbrand-guide__workflow li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  counter-increment: nonbrand-step;
}

.nonbrand-guide .nonbrand-guide__workflow li::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(208, 157, 255, 0.45);
  border-radius: 14px;
  background: rgba(133, 55, 218, 0.15);
  color: #e2baff;
  font-weight: 850;
  content: counter(nonbrand-step, decimal-leading-zero);
}

.nonbrand-guide .nonbrand-guide__workflow li + li {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(199, 151, 255, 0.12);
}

.nonbrand-guide .nonbrand-guide__workflow strong {
  color: #f6effc;
  font-size: 1.05rem;
}

.nonbrand-guide .nonbrand-guide__workflow p {
  margin: 0.45rem 0 0;
}

.nonbrand-guide .nonbrand-guide__guide-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 2.25rem;
}

.nonbrand-guide .nonbrand-guide__guide-map article {
  padding: 1.25rem;
  border: 1px solid rgba(199, 151, 255, 0.16);
  border-radius: 17px;
  background: rgba(15, 9, 26, 0.74);
}

.nonbrand-guide .nonbrand-guide__guide-map h3 {
  margin-top: 0;
}

.nonbrand-guide .nonbrand-guide__directory {
  min-height: 220px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px dashed rgba(205, 154, 255, 0.35);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0, rgba(137, 55, 224, 0.17), transparent 42%), rgba(13, 8, 23, 0.76);
}

.nonbrand-guide .nonbrand-guide__directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.nonbrand-guide .nonbrand-guide__directory a {
  color: #dcaeff;
}

.nonbrand-guide .nonbrand-guide__limitations {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(244, 185, 93, 0.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(111, 66, 18, 0.14), rgba(13, 8, 22, 0.9));
}

.nonbrand-guide .nonbrand-guide__limitations h2 {
  margin-top: 0.45rem;
}

.nonbrand-guide .nonbrand-guide__source-note {
  padding: 1.4rem;
  border-left: 3px solid rgba(197, 143, 255, 0.68);
  border-radius: 0 16px 16px 0;
  background: rgba(86, 34, 137, 0.1);
  font-size: 0.92rem;
}

.nonbrand-guide .nonbrand-guide__source-note h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

@media (max-width: 980px) {
  .nonbrand-guide .nonbrand-guide__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .nonbrand-guide .nonbrand-guide__guide-map,
  .nonbrand-guide .nonbrand-guide__directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-article-aside .news-aside-card a {
    display: flex;
    min-height: 44px;
    padding: 0.6rem 0;
    align-items: center;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .news-article-aside .news-aside-card a:focus-visible {
    outline: 3px solid rgba(209, 166, 255, 0.8);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .nonbrand-guide .nonbrand-guide__hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.9rem);
  }

  .nonbrand-guide .nonbrand-guide__hero-image {
    margin-top: 1.5rem;
  }

  .nonbrand-guide .nonbrand-guide__hero-image img {
    border-radius: 14px;
  }

  .nonbrand-guide .nonbrand-guide__matrix {
    width: 100%;
    max-width: calc(100vw - 32px);
    padding-top: 2.35rem;
    border-radius: 16px;
  }

  .nonbrand-guide .nonbrand-guide__matrix::before {
    position: absolute;
    top: 0.7rem;
    left: 0.85rem;
    color: #cba1eb;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    content: attr(data-scroll-label);
  }

  .nonbrand-guide .nonbrand-guide__matrix table {
    min-width: 780px;
  }

  .nonbrand-guide .nonbrand-guide__evidence,
  .nonbrand-guide .nonbrand-guide__guide-map,
  .nonbrand-guide .nonbrand-guide__directory-grid {
    grid-template-columns: 1fr;
  }

  .nonbrand-guide .nonbrand-guide__workflow li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .nonbrand-guide .nonbrand-guide__workflow li::before {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .nonbrand-guide .nonbrand-guide__limitations,
  .nonbrand-guide .nonbrand-guide__source-note,
  .nonbrand-guide .nonbrand-guide__directory {
    padding: 1.2rem;
  }
}
