:root {
  --ink: #0a1728;
  --ink-2: #213248;
  --muted: #627083;
  --muted-2: #8b98a9;
  --navy: #07111e;
  --navy-2: #0c1b2e;
  --navy-3: #12253c;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --surface-3: #edf1f5;
  --line: #dfe5eb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #f3c55f;
  --accent-strong: #e2ad37;
  --mint: #68e0c3;
  --mint-strong: #23b794;
  --positive: #0f9b67;
  --negative: #d25b62;
  --shadow-sm: 0 10px 28px rgba(8, 23, 40, 0.07);
  --shadow-md: 0 22px 60px rgba(8, 23, 40, 0.12);
  --shadow-lg: 0 32px 90px rgba(8, 23, 40, 0.2);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --article: 840px;
  --header-height: 76px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  color: var(--muted);
}

::selection {
  background: rgba(243, 197, 95, 0.45);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.announcement {
  min-height: 34px;
  background: #030a12;
  color: #b8c6d7;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement__inner .icon {
  color: var(--mint);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(7, 17, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(18px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter: drop-shadow(0 8px 18px rgba(104, 224, 195, 0.14));
}

.brand-mark--compact {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #8899ad;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav > a,
.market-menu__button {
  color: #c4cfdb;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.market-menu__button:hover {
  color: #fff;
}

.market-menu {
  position: relative;
}

.market-menu__button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.market-menu__button .icon {
  width: 0.9em;
  transition: transform 0.2s ease;
}

.market-menu__button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.market-menu__panel {
  position: absolute;
  top: calc(100% + 24px);
  right: -40px;
  width: 330px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #0c192a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.market-menu__panel::before {
  position: absolute;
  top: -8px;
  right: 62px;
  width: 14px;
  height: 14px;
  background: #0c192a;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: rotate(45deg);
}

.market-menu__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.market-menu__panel a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.market-menu__panel a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.market-menu__panel a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.market-menu__panel strong {
  color: #fff;
  font-size: 0.9rem;
}

.market-menu__panel small {
  color: #7f90a4;
  font-size: 0.73rem;
}

.country-code {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.header-cta {
  flex: 0 0 auto;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #f5d57f);
  color: #1a2027;
  box-shadow: 0 12px 28px rgba(220, 166, 48, 0.22);
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(220, 166, 48, 0.3);
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: #bcc7d2;
  box-shadow: var(--shadow-sm);
}

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

.button--ghost:hover {
  border-color: #b8c3cf;
  background: var(--surface-2);
}

.button--large {
  min-height: 56px;
  padding-inline: 25px;
  border-radius: 14px;
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.83rem;
}

.button--tiny {
  min-height: 38px;
  padding-inline: 13px;
  border-radius: 9px;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 760;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.text-link--center {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.82rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #94701f;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  content: "";
}

.eyebrow--light {
  color: #efd485;
}

.eyebrow--light::before {
  background: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(47, 143, 132, 0.15), transparent 32%),
    linear-gradient(135deg, #07111e 0%, #0a1b2e 58%, #0d2336 100%);
  color: #fff;
}

.hero--home {
  min-height: 680px;
  padding: 92px 0 102px;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--one {
  top: -270px;
  right: -170px;
  width: 680px;
  height: 680px;
  box-shadow: inset 0 0 120px rgba(104, 224, 195, 0.05);
}

.hero-orb--two {
  bottom: -460px;
  left: -260px;
  width: 800px;
  height: 800px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(380px, 0.83fr);
  align-items: center;
  gap: 80px;
}

.hero__copy h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 5.9rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero__copy h1 em {
  display: block;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero__copy > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: #aebdcd;
  font-size: 1.13rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero__actions .button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero__proof {
  display: flex;
  gap: 34px;
}

.hero__proof > div {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__proof > div:not(:last-child)::after {
  position: absolute;
  top: 4px;
  right: -18px;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.hero__proof strong {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero__proof span {
  color: #7e90a4;
  font-size: 0.75rem;
}

.hero-picks {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-picks__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 25px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-picks__header > div {
  display: flex;
  flex-direction: column;
}

.hero-picks__header span {
  color: #8295aa;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-picks__header strong {
  color: #fff;
  font-size: 1.05rem;
}

.live-dot {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(104, 224, 195, 0.09);
  color: #9aead7 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.live-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(104, 224, 195, 0.11);
}

.hero-pick {
  display: grid;
  grid-template-columns: 30px 48px 1fr auto 18px;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.hero-pick:hover {
  background: rgba(255, 255, 255, 0.055);
}

.hero-pick__rank {
  color: #697d93;
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.07em;
}

.hero-pick__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-pick__copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.93rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-pick__copy small {
  overflow: hidden;
  color: #7f92a7;
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-pick__score {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 850;
}

.hero-pick > .icon {
  color: #63778d;
}

.hero-picks__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px;
  color: #d7e0e9;
  font-size: 0.82rem;
  font-weight: 720;
  transition: background 0.2s ease;
}

.hero-picks__footer:hover {
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(8, 23, 40, 0.035);
}

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

.trust-strip__grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 13px;
  padding: 18px 25px;
}

.trust-strip__grid > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div > .icon {
  width: 23px;
  height: 23px;
  color: var(--mint-strong);
}

.trust-strip__grid span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.trust-strip__grid strong {
  font-size: 0.88rem;
}

.trust-strip__grid small {
  color: var(--muted);
  font-size: 0.72rem;
}

.section {
  padding: 104px 0;
}

.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--guides {
  background:
    radial-gradient(circle at 80% 0, rgba(104, 224, 195, 0.08), transparent 30%),
    var(--surface-2);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1rem;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center > div:first-child {
  max-width: 780px;
}

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

.market-card {
  --market-accent: var(--mint);
  position: relative;
  display: flex;
  min-height: 338px;
  overflow: hidden;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(8, 23, 40, 0.035);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.market-card::after {
  position: absolute;
  top: -74px;
  right: -74px;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--market-accent) 15%, transparent);
  content: "";
  transition: transform 0.3s ease;
}

.market-card:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--market-accent) 55%, var(--line));
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.market-card:hover::after {
  transform: scale(1.25);
}

.market-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.market-card__code {
  display: inline-flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--market-accent) 45%, var(--line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--market-accent) 10%, white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.market-card__arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: 0.2s ease;
}

.market-card:hover .market-card__arrow {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateX(2px);
}

.market-card__body {
  position: relative;
  z-index: 1;
}

.market-card__body > span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.market-card__body h3 {
  margin-bottom: 12px;
  font-size: 1.58rem;
}

.market-card__body p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.65;
}

.market-card__stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.market-card__stats span {
  display: flex;
  flex-direction: column;
  color: var(--muted-2);
  font-size: 0.61rem;
  line-height: 1.3;
}

.market-card__stats strong {
  color: var(--ink);
  font-size: 0.79rem;
}

.casino-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1.65fr) 105px minmax(185px, 1.1fr) minmax(175px, 1fr) 165px;
  grid-template-areas:
    "brand rating offer features actions"
    "brand rating offer features terms";
  align-items: center;
  gap: 18px 22px;
  padding: 27px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 7px 24px rgba(8, 23, 40, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.casino-card:hover {
  border-color: #cbd4de;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.casino-card__rank {
  position: absolute;
  top: -10px;
  left: -10px;
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--surface-2);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 850;
}

.casino-card__brand {
  grid-area: brand;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 17px;
  min-width: 0;
}

.casino-logo {
  --casino-accent: var(--mint);
  display: inline-flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--casino-accent) 50%, #dce3e9);
  border-radius: 20px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--casino-accent) 22%, white), #fff 68%);
  color: var(--ink);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.55), 0 9px 22px color-mix(in srgb, var(--casino-accent) 12%, transparent);
  font-size: 1.15rem;
  font-weight: 880;
  letter-spacing: -0.04em;
}

.casino-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.casino-logo--small {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--casino-accent) 24%, #101d2c), rgba(255, 255, 255, 0.07));
  color: #fff;
  box-shadow: none;
  font-size: 0.8rem;
}

.casino-logo--tiny {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 12px;
  font-size: 0.7rem;
}

.casino-logo--hero {
  width: 112px;
  height: 112px;
  flex-basis: 112px;
  border-radius: 28px;
  font-size: 1.75rem;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.52), 0 20px 45px color-mix(in srgb, var(--casino-accent) 16%, transparent);
}

.casino-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.badge--accent {
  background: #fff5d9;
  color: #8a6516;
}

.badge--muted {
  background: #edf1f5;
  color: #728095;
}

.casino-card__brand h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.casino-card__brand h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.casino-card__tagline {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.rating-block {
  grid-area: rating;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rating-block strong {
  color: var(--ink);
  font-size: 2.05rem;
  font-weight: 880;
  line-height: 1;
  letter-spacing: -0.06em;
}

.rating-block > span {
  margin-top: 4px;
  color: var(--positive);
  font-size: 0.7rem;
  font-weight: 750;
}

.rating-meter {
  width: 70px;
  height: 4px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf2;
}

.rating-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--mint));
}

.casino-card__offer {
  grid-area: offer;
  display: flex;
  flex-direction: column;
}

.casino-card__offer > span {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.casino-card__offer strong {
  font-size: 0.93rem;
  line-height: 1.45;
}

.feature-list {
  grid-area: features;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.78rem;
}

.feature-list .icon {
  color: var(--positive);
}

.casino-card__actions {
  grid-area: actions;
  display: grid;
  gap: 8px;
}

.casino-card__actions .button {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 0.79rem;
}

.terms-line {
  grid-area: terms;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.61rem;
  line-height: 1.35;
  text-align: center;
}

.casino-card__market {
  display: none;
}

.casino-card--compact {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 25px;
}

.casino-card--compact .casino-card__rank {
  top: 12px;
  left: auto;
  right: 12px;
  border-color: var(--surface);
}

.casino-card--compact .casino-card__brand {
  grid-template-columns: 62px 1fr;
  width: 100%;
}

.casino-card--compact .casino-logo {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
  border-radius: 17px;
}

.casino-card--compact .casino-card__tagline {
  min-height: 47px;
}

.casino-card--compact .rating-block {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-2);
  text-align: left;
}

.casino-card--compact .rating-block strong {
  font-size: 1.55rem;
}

.casino-card--compact .rating-block > span {
  margin: 0 auto 0 8px;
}

.casino-card--compact .rating-meter {
  width: 76px;
  margin: 0;
}

.casino-card--compact .casino-card__offer {
  width: 100%;
}

.casino-card--compact .casino-card__offer strong {
  font-size: 1.05rem;
}

.casino-card--compact .feature-list {
  width: 100%;
}

.casino-card--compact .casino-card__actions {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
}

.casino-card--compact .terms-line {
  width: 100%;
}

.casino-card--compact .casino-card__market {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.casino-card--compact .casino-card__market .country-code {
  width: 26px;
  height: 26px;
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--ink-2);
}

.methodology-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #081321, #0b1f33);
  color: #fff;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.methodology-copy h2 {
  margin-bottom: 22px;
  color: #fff;
}

.methodology-copy p {
  margin-bottom: 28px;
  color: #9fb0c2;
  font-size: 1.04rem;
}

.methodology-copy .button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.methodology-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
}

.methodology-step {
  display: grid;
  min-height: 218px;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 28px;
  background: #0d2034;
}

.methodology-step > span {
  color: #65798f;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.methodology-step .icon {
  width: 27px;
  height: 27px;
  margin-bottom: 22px;
  color: var(--mint);
}

.methodology-step h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.12rem;
}

.methodology-step p {
  margin: 0;
  color: #899caf;
  font-size: 0.79rem;
}

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

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

.guide-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 7px 24px rgba(8, 23, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-card:hover {
  border-color: #cad3dc;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.guide-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: 0.68rem;
  font-weight: 700;
}

.guide-card__meta span:first-child {
  color: #8e6a1c;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-card__meta span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.guide-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.guide-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.guide-card p {
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.guide-card .text-link {
  margin-top: auto;
  font-size: 0.82rem;
}

.section--cta {
  padding-top: 55px;
  background: var(--surface-2);
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 90px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(104, 224, 195, 0.18), transparent 35%),
    linear-gradient(135deg, #07111e, #0c2136);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  margin-bottom: 16px;
  color: #fff;
}

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

.cta-panel__markets {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.cta-panel__markets a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 720;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-panel__markets a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.cta-panel__markets a > span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
}

.site-footer {
  padding: 80px 0 28px;
  background: #050d17;
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 70px;
  padding-bottom: 58px;
}

.footer__brand p {
  max-width: 430px;
  margin: 22px 0 18px;
  color: #8597aa;
  font-size: 0.83rem;
}

.footer__notice {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #8798aa;
  font-size: 0.68rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__column h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__column a {
  color: #8798aa;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer__column a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64768a;
  font-size: 0.71rem;
}

.footer__bottom > div {
  display: flex;
  gap: 20px;
}

.footer__bottom a:hover {
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: #8092a7;
  font-size: 0.72rem;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs__separator {
  color: #52667c;
}

.market-hero,
.review-hero,
.page-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(104, 224, 195, 0.13), transparent 30%),
    linear-gradient(135deg, #07111e, #0c2136);
  color: #fff;
}

.market-hero::after,
.review-hero::after,
.page-hero::after,
.article-hero::after {
  position: absolute;
  top: -320px;
  right: -170px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.market-hero {
  padding: 46px 0 78px;
}

.market-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: center;
  gap: 90px;
}

.market-hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 5.2rem);
}

.market-hero__grid > div:first-child > p {
  max-width: 760px;
  margin-bottom: 28px;
  color: #a7b7c8;
  font-size: 1.08rem;
}

.market-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.market-hero__chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #c5d2de;
  font-size: 0.72rem;
}

.market-hero__chips .icon {
  color: var(--mint);
}

.market-hero__card {
  --market-accent: var(--mint);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.23);
}

.market-hero__card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--market-accent) 16%, transparent);
  content: "";
}

.market-hero__code {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 115px;
  grid-column: span 2;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 3.1rem;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.market-hero__card > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 17, 30, 0.62);
}

.market-hero__card > div span {
  color: #7f93a8;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.market-hero__card > div strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1.45rem;
}

.market-hero__card > div strong small {
  color: #75889d;
  font-size: 0.75rem;
}

.market-hero__card > small {
  position: relative;
  z-index: 1;
  grid-column: span 2;
  padding: 11px 18px;
  background: rgba(7, 17, 30, 0.78);
  color: #71859b;
  font-size: 0.65rem;
  text-align: center;
}

.market-subnav,
.review-subnav {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(8, 23, 40, 0.04);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.market-subnav::-webkit-scrollbar,
.review-subnav::-webkit-scrollbar {
  display: none;
}

.market-subnav .container,
.review-subnav .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.market-subnav a,
.review-subnav a {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.market-subnav a::after,
.review-subnav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-strong);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.market-subnav a:hover,
.review-subnav a:hover {
  color: var(--ink);
}

.market-subnav a:hover::after,
.review-subnav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -10px 0 30px;
}

.filter-bar > span {
  margin-right: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-bar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.filter-empty {
  padding: 35px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

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

.comparison-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  background: #f2f5f8;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

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

.table-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.table-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.table-brand strong {
  font-size: 0.82rem;
}

.table-brand small {
  color: var(--muted-2);
  font-size: 0.64rem;
}

.table-score {
  color: var(--positive);
  font-size: 1.05rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip-list span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 0.7rem;
  font-weight: 680;
}

.chip-list--small {
  flex-wrap: nowrap;
}

.chip-list--small span {
  min-height: 26px;
  padding-inline: 7px;
  font-size: 0.62rem;
}

.market-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 88px;
}

.market-copy {
  max-width: 780px;
}

.market-copy h2 {
  margin-bottom: 22px;
}

.market-copy h3 {
  margin: 35px 0 10px;
}

.market-copy p {
  font-size: 0.96rem;
}

.content-callout {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid #e3d39f;
  border-radius: 14px;
  background: #fff9e9;
}

.content-callout > .icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #a77e1d;
}

.content-callout strong {
  display: block;
  margin-bottom: 4px;
  color: #6f5316;
  font-size: 0.82rem;
}

.content-callout p {
  margin: 0;
  color: #806c39;
  font-size: 0.78rem;
}

.content-callout code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(125, 91, 15, 0.09);
  color: #6c5118;
  font-size: 0.9em;
}

.market-sidebar,
.review-sidebar,
.article-sidebar {
  display: grid;
  gap: 15px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.sidebar-card--sticky {
  position: sticky;
  top: calc(var(--header-height) + 75px);
}

.sidebar-card dl {
  margin: 5px 0 0;
}

.sidebar-card dl > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-card dl > div:last-child {
  border-bottom: 0;
}

.sidebar-card dt {
  color: var(--muted);
  font-size: 0.74rem;
}

.sidebar-card dd {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 750;
  text-align: right;
}

.sidebar-card > .button {
  width: 100%;
  margin-top: 18px;
}

.sidebar-link-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sidebar-link-card > .icon:first-child {
  width: 25px;
  height: 25px;
  color: var(--mint-strong);
}

.sidebar-link-card span {
  display: flex;
  flex-direction: column;
}

.sidebar-link-card strong {
  font-size: 0.78rem;
}

.sidebar-link-card small {
  color: var(--muted);
  font-size: 0.67rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 90px;
}

.faq-grid > div:first-child h2 {
  margin-bottom: 15px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 3px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  text-align: left;
}

.faq-item > button .icon {
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item.is-open > button .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 45px 23px 3px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.88rem;
}

.review-hero {
  padding: 45px 0 68px;
}

.review-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 80px;
}

.review-hero__brand {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 28px;
}

.review-hero__brand h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.review-hero__brand > div:last-child > p {
  max-width: 680px;
  margin-bottom: 17px;
  color: #a6b7c8;
  font-size: 1rem;
}

.review-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: #7e91a7;
  font-size: 0.7rem;
}

.review-meta > span,
.article-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-meta .country-code {
  width: 25px;
  height: 25px;
  margin-right: 2px;
}

.review-hero__score {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.review-hero__score > div:first-child {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.review-hero__score > div:first-child > span {
  color: #8194aa;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-hero__score > div:first-child > strong {
  grid-row: span 2;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.review-hero__score > div:first-child > strong small {
  margin-left: 4px;
  color: #7b8ea4;
  font-size: 0.9rem;
  letter-spacing: 0;
  vertical-align: baseline;
}

.review-hero__score > div:first-child > em {
  color: var(--mint);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 750;
}

.review-hero__offer {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-hero__offer span {
  color: #8094aa;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.review-hero__offer strong {
  margin-top: 3px;
  color: #fff;
  font-size: 1.05rem;
}

.review-hero__score > small {
  color: #71859b;
  font-size: 0.62rem;
  text-align: center;
}

.review-section {
  padding-top: 75px;
}

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

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

.review-verdict {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.review-verdict h2 {
  margin-bottom: 17px;
}

.review-verdict p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.03rem;
  line-height: 1.8;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 35px 0 72px;
}

.pros-cons > div {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.pros-cons__pros {
  border-top: 3px solid var(--positive) !important;
}

.pros-cons__cons {
  border-top: 3px solid var(--negative) !important;
}

.pros-cons h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.pros-cons__pros h3 .icon {
  color: var(--positive);
}

.pros-cons__cons h3 .icon {
  color: var(--negative);
}

.pros-cons ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.review-block {
  padding: 0 0 62px;
}

.review-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.review-block p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.85;
}

.score-card {
  display: grid;
  gap: 20px;
  margin-top: 27px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.score-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 7px;
}

.score-row span {
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 680;
}

.score-row strong {
  font-size: 0.84rem;
}

.score-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf2;
}

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

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

.payment-grid > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 0 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.payment-grid .icon {
  grid-row: span 2;
  width: 25px;
  height: 25px;
  color: var(--mint-strong);
}

.payment-grid strong {
  font-size: 0.82rem;
}

.payment-grid span {
  color: var(--muted);
  font-size: 0.68rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quick-facts > div {
  display: flex;
  min-height: 95px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.quick-facts > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.quick-facts span {
  color: var(--muted-2);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-facts strong {
  margin-top: 4px;
  font-size: 0.8rem;
}

.review-final {
  padding: 35px;
  border: 1px solid #dcd0a7;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf0, #fff);
}

.review-final > .button {
  margin-top: 8px;
}

.review-final > small {
  display: block;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.64rem;
}

.review-sidebar .sidebar-card nav,
.article-sidebar .sidebar-card nav {
  display: grid;
  margin: 6px 0 18px;
}

.review-sidebar .sidebar-card nav a,
.article-sidebar .sidebar-card nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.review-sidebar .sidebar-card nav a:hover,
.article-sidebar .sidebar-card nav a:hover {
  color: var(--ink);
}

.mobile-cta {
  display: none;
}

.page-hero {
  padding: 52px 0 82px;
}

.page-hero--compact {
  padding-bottom: 68px;
}

.page-hero .container,
.article-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.article-hero h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
}

.page-hero p,
.article-hero > .container > p {
  max-width: 760px;
  margin-bottom: 0;
  color: #a7b7c8;
  font-size: 1.05rem;
}

.guides-market-links {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.guides-market-links h2 {
  margin-bottom: 16px;
}

.guides-market-links > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.guides-market-links > div:last-child a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: 0.2s ease;
}

.guides-market-links > div:last-child a:hover {
  border-color: #bcc7d2;
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.guides-market-links .country-code {
  width: 32px;
  height: 32px;
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--ink-2);
}

.guides-market-links strong {
  font-size: 0.82rem;
}

.article-hero {
  padding: 50px 0 75px;
}

.article-hero .breadcrumbs {
  margin-bottom: 46px;
}

.article-hero h1 {
  max-width: 800px;
}

.article-meta {
  margin-top: 25px;
}

.article-section {
  background: var(--surface-2);
}

.article-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 80px;
}

.legal-layout {
  width: min(calc(100% - 40px), 1050px);
}

.article-content {
  min-width: 0;
  padding: 50px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.article-content--legal {
  padding-top: 40px;
}

.article-lead {
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 1.1rem !important;
  line-height: 1.85 !important;
}

.article-content section {
  padding-top: 34px;
}

.article-content section + section {
  margin-top: 15px;
  border-top: 1px solid var(--line);
}

.article-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.article-content p,
.article-content li {
  color: var(--ink-2);
  font-size: 0.93rem;
  line-height: 1.85;
}

.article-content ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 5px;
  padding-left: 21px;
}

.content-callout--wide {
  margin-top: 45px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.contact-card > .icon {
  width: 30px;
  height: 30px;
  color: var(--mint-strong);
}

.contact-card > div {
  display: flex;
  flex-direction: column;
}

.contact-card span,
.contact-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-card a {
  font-size: 1.05rem;
  font-weight: 780;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 25px;
  background:
    radial-gradient(circle at 80% 15%, rgba(104, 224, 195, 0.14), transparent 30%),
    linear-gradient(135deg, #07111e, #0c2136);
}

.redirect-card {
  display: flex;
  width: min(100%, 500px);
  flex-direction: column;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(15px);
}

.redirect-card > span:not(.brand-mark) {
  margin: 25px 0 5px;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.redirect-card h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 2.4rem;
}

.redirect-card p {
  margin-bottom: 25px;
  color: #9babbc;
  font-size: 0.85rem;
}

.redirect-card .text-link {
  margin-top: 18px;
  color: #9babbc;
}

.error-section {
  min-height: 70vh;
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(104, 224, 195, 0.13), transparent 30%),
    linear-gradient(135deg, #07111e, #0c2136);
}

.error-card {
  max-width: 730px;
  color: #fff;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: -20px;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(7rem, 20vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.error-card .eyebrow {
  justify-content: center;
}

.error-card h1 {
  margin-bottom: 17px;
  color: #fff;
}

.error-card p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: #a0b1c3;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.error-actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(104, 224, 195, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav > a,
  .market-menu__button {
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .hero__grid {
    gap: 50px;
  }

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

  .casino-card {
    grid-template-columns: minmax(250px, 1.7fr) 90px minmax(180px, 1.1fr) 155px;
    grid-template-areas:
      "brand rating offer actions"
      "brand rating features terms";
  }

  .casino-card__brand {
    grid-template-columns: 64px 1fr;
  }

  .casino-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .feature-list {
    align-self: start;
  }

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

  .methodology-grid {
    gap: 65px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle__close {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__open {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: #081321;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav__inner {
    display: grid;
    padding-top: 22px;
    padding-bottom: 60px;
  }

  .mobile-nav__inner > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    font-weight: 720;
  }

  .mobile-nav__markets {
    display: grid;
    margin-top: 28px;
  }

  .mobile-nav__markets > span {
    margin-bottom: 8px;
    color: #71859a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mobile-nav__markets a {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    color: #c7d2dd;
    font-size: 0.87rem;
    font-weight: 700;
  }

  .hero--home {
    padding: 72px 0 82px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero__copy {
    max-width: 780px;
  }

  .hero-picks {
    max-width: 700px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .market-card:last-child {
    grid-column: span 2;
    min-height: 250px;
  }

  .market-card:last-child .market-card__top {
    margin-bottom: 25px;
  }

  .casino-card {
    grid-template-columns: minmax(240px, 1.5fr) 90px minmax(180px, 1fr);
    grid-template-areas:
      "brand rating offer"
      "features features actions"
      "terms terms terms";
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 17px;
    border-top: 1px solid var(--line);
  }

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

  .methodology-copy {
    max-width: 680px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cta-panel__markets {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 45px;
  }

  .footer__column:last-child {
    grid-column: 2;
  }

  .market-hero__grid,
  .review-hero__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .market-hero__card,
  .review-hero__score {
    max-width: 600px;
  }

  .market-content-grid,
  .review-layout,
  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .market-sidebar,
  .review-sidebar,
  .article-sidebar {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-grid,
  .guides-market-links {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .review-sidebar .sidebar-card,
  .article-sidebar .sidebar-card {
    grid-column: span 2;
  }

  .article-sidebar .sidebar-card nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
}

@media (max-width: 760px) {
  .container,
  .container--article,
  .legal-layout {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement__updated {
    display: none !important;
  }

  .announcement__inner {
    justify-content: center;
  }

  .brand-copy small {
    display: none;
  }

  .hero--home {
    min-height: 0;
    padding: 62px 0 70px;
  }

  .hero__copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero__copy > p {
    font-size: 1rem;
  }

  .hero__proof {
    gap: 24px;
  }

  .hero__proof > div:not(:last-child)::after {
    right: -12px;
  }

  .hero-pick {
    grid-template-columns: 24px 43px 1fr auto;
    padding-inline: 17px;
  }

  .hero-pick > .icon {
    display: none;
  }

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

  .trust-strip__grid > div {
    min-height: 76px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .text-link--desktop {
    display: none;
  }

  .market-grid,
  .casino-grid--home,
  .casino-grid--alternatives,
  .guide-grid,
  .guide-grid--all {
    grid-template-columns: 1fr;
  }

  .market-card:last-child {
    grid-column: auto;
    min-height: 338px;
  }

  .casino-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
    padding: 23px;
  }

  .casino-card__brand {
    grid-template-columns: 62px 1fr;
    width: 100%;
  }

  .casino-logo {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 17px;
  }

  .casino-card__tagline {
    min-height: auto !important;
  }

  .rating-block {
    width: 100%;
    flex-direction: row;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--surface-2);
    text-align: left;
  }

  .rating-block strong {
    font-size: 1.55rem;
  }

  .rating-block > span {
    margin: 0 auto 0 8px;
  }

  .rating-meter {
    width: 90px;
    margin: 0;
  }

  .casino-card__offer,
  .feature-list,
  .casino-card__actions,
  .terms-line {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
  }

  .casino-card__actions,
  .casino-card--compact .casino-card__actions {
    grid-template-columns: 1fr 1fr;
  }

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

  .methodology-step {
    min-height: 180px;
  }

  .cta-panel {
    padding: 38px 25px;
  }

  .cta-panel__markets {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__column:last-child {
    grid-column: auto;
  }

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

  .market-hero,
  .review-hero,
  .page-hero,
  .article-hero {
    padding-top: 35px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .market-hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 3rem;
  }

  .market-subnav .container,
  .review-subnav .container {
    width: max-content;
    min-width: 100%;
    padding-inline: 14px;
  }

  .market-hero__card {
    width: 100%;
  }

  .market-content-grid {
    gap: 38px;
  }

  .market-sidebar,
  .review-sidebar,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .review-sidebar .sidebar-card,
  .article-sidebar .sidebar-card {
    grid-column: auto;
  }

  .faq-answer {
    padding-right: 10px;
  }

  .review-hero__brand {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }

  .casino-logo--hero {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
    border-radius: 21px;
    font-size: 1.2rem;
  }

  .review-hero__brand h1 {
    font-size: 2.8rem;
  }

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

  .payment-grid,
  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts > div:nth-child(2) {
    border-right: 0;
  }

  .quick-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .article-content {
    padding: 35px 25px;
    border-radius: var(--radius);
  }

  .article-sidebar .sidebar-card nav {
    grid-template-columns: 1fr;
  }

  .guides-market-links > div:last-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero__actions,
  .error-actions {
    display: grid;
  }

  .hero__actions .button,
  .error-actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero__proof > div:not(:last-child)::after {
    display: none;
  }

  .hero__proof strong {
    font-size: 1.05rem;
  }

  .hero__proof span {
    font-size: 0.65rem;
  }

  .hero-picks__header {
    padding-inline: 18px;
  }

  .hero-pick {
    grid-template-columns: 20px 41px 1fr auto;
    gap: 9px;
  }

  .hero-pick__score {
    font-size: 0.95rem;
  }

  .market-card {
    min-height: 320px;
  }

  .casino-card__brand {
    align-items: start;
  }

  .casino-card__actions,
  .casino-card--compact .casino-card__actions {
    grid-template-columns: 1fr;
  }

  .casino-card__actions .button {
    width: 100%;
  }

  .rating-meter {
    width: 68px;
  }

  .methodology-step {
    grid-template-columns: 28px 1fr;
    padding: 22px;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .market-hero h1,
  .page-hero h1,
  .article-hero h1,
  .review-hero__brand h1 {
    font-size: 2.55rem;
  }

  .market-hero__card > div {
    padding: 15px;
  }

  .filter-bar > span {
    width: 100%;
  }

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

  .review-hero__brand .casino-logo--hero {
    width: 76px;
    height: 76px;
  }

  .review-meta {
    gap: 9px;
  }

  .review-hero__score {
    padding: 22px;
  }

  .payment-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts > div {
    min-height: 78px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts > div:last-child {
    border-bottom: 0;
  }

  .review-final {
    padding: 25px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -12px 35px rgba(8, 23, 40, 0.13);
    backdrop-filter: blur(15px);
  }

  .mobile-cta > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-cta span {
    font-size: 0.74rem;
    font-weight: 800;
  }

  .mobile-cta strong {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.61rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-cta .button {
    min-height: 43px;
    flex: 0 0 auto;
    padding-inline: 14px;
    font-size: 0.74rem;
  }

  .review-page .site-footer {
    padding-bottom: 100px;
  }

  .redirect-card {
    padding: 38px 24px;
  }
}

@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;
  }
}
