:root {
  --color-bg: #06101d;
  --color-bg-alt: #0d1728;
  --color-surface: #101d32;
  --color-surface-soft: #13233b;
  --color-panel: #f5f7fb;
  --color-panel-border: #dfe5ee;
  --color-text: #edf3ff;
  --color-text-dark: #1c2436;
  --color-text-muted: #97a7c5;
  --color-text-soft: #5a6580;
  --color-accent: #ffff00;
  --color-accent-strong: #d9ff3d;
  --color-accent-contrast: #07101c;
  --color-kicker-light: #ffff00;
  --color-kicker-dark: #4f5700;
  --color-outline: rgba(255, 255, 255, 0.12);
  --color-shadow: rgba(2, 7, 16, 0.48);
  --container-width: 1596px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 32%, #f0f4fb 32%, #f7f9fd 100%);
  color: var(--color-text);
}

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

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

p,
ul,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(95%, var(--container-width));
  margin: 0 auto;
}

.site-main {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--color-bg) 90%, black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  min-height: 84px;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.site-brand__logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.site-brand__name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-brand__tag {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
  margin-left: auto;
}

.site-header__menu .primary-nav {
  margin-left: 0;
}

.site-header__menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--header-text, var(--color-text));
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.site-header__menu-toggle-line {
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header__menu-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.site-header__menu-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.site-header--menu-open .site-header__menu-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header--menu-open .site-header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .site-header__menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.3rem);
  margin: 0;
  padding: 0;
}

.primary-nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(237, 243, 255, 0.92);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: var(--color-accent);
}

.site-header__actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-header__actions .button--header-registration,
.site-header__actions .button--header-login {
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0;
}

.site-header__actions .button--header-registration {
  min-width: 190px;
  background: #2aa84a;
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 16px 36px rgba(42, 168, 74, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.site-header__actions .button--header-login {
  min-width: 128px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--ghost {
  border: 1px solid var(--color-outline);
  background: transparent;
  color: var(--color-text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button--outline {
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-kicker-light);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
}

.button--solid {
  border: 1px solid transparent;
  background: var(--cta-bg, linear-gradient(135deg, var(--color-accent), var(--color-accent-strong)));
  color: var(--cta-text, var(--color-accent-contrast));
  box-shadow: 0 18px 42px var(--color-shadow);
}

.button--disabled,
.button--disabled:hover,
.button--disabled:focus-visible,
.sports-pill--disabled,
.seo-cta-button--disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button--disabled,
.sports-pill--disabled,
.seo-cta-button--disabled {
  pointer-events: none;
}

.button--solid.button--disabled {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(237, 243, 255, 0.62);
  box-shadow: none;
}

.design-button-rounded .button {
  border-radius: var(--radius-md);
}

.design-button-sharp .button {
  border-radius: 6px;
}

.design-card-flat .hero-banner,
.design-card-flat .seo-topic,
.design-card-flat .faq-item {
  box-shadow: none;
}

.design-mode-light {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-panel) 92%, white) 0%, color-mix(in srgb, var(--color-surface-soft) 18%, white) 34%, #f4f7fb 34%, #fbfcff 100%);
  color: var(--color-text-dark);
}

.design-mode-light .site-header {
  background: color-mix(in srgb, var(--color-panel) 92%, white);
  border-bottom-color: color-mix(in srgb, var(--color-outline) 24%, transparent);
}

.design-mode-light .primary-nav__link,
.design-mode-light .site-brand__name {
  color: var(--color-text-dark);
}

.design-mode-light .button--ghost {
  border-color: color-mix(in srgb, var(--color-outline) 60%, transparent);
  color: var(--color-text-dark);
}

.design-mode-light .button--ghost:hover,
.design-mode-light .button--ghost:focus-visible {
  background: color-mix(in srgb, var(--color-accent) 9%, white);
}

.design-style-casino {
  --design-section-gap: 1.35rem;
  --design-card-border: color-mix(in srgb, var(--color-accent) 22%, var(--color-panel-border));
}

.design-style-premium {
  --design-section-gap: 1.6rem;
  --design-card-border: color-mix(in srgb, var(--color-outline) 36%, var(--color-panel-border));
}

.design-style-mobile {
  --design-section-gap: 1rem;
  --design-card-border: color-mix(in srgb, var(--color-accent) 18%, var(--color-panel-border));
}

.design-style-minimal {
  --design-section-gap: 0.9rem;
  --design-card-border: color-mix(in srgb, var(--color-panel-border) 82%, transparent);
}

.design-density-compact {
  --density-section-y: 3.2rem;
  --density-card-pad: clamp(1.1rem, 2vw, 1.65rem);
  --density-hero-min: min(590px, calc(100vh - 112px));
}

.design-density-balanced {
  --density-section-y: 5rem;
  --density-card-pad: clamp(1.35rem, 2.6vw, 2.25rem);
  --density-hero-min: min(680px, calc(100vh - 112px));
}

.design-density-spacious {
  --density-section-y: 6.4rem;
  --density-card-pad: clamp(1.6rem, 3.2vw, 2.8rem);
  --density-hero-min: min(760px, calc(100vh - 96px));
}

.button--full {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: clamp(2rem, 3.4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 4.25rem);
}

.hero-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  min-height: var(--density-hero-min, min(680px, calc(100vh - 112px)));
  padding: 0;
}

.hero-section__inner--visual {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.hero-copy,
.hero-visual,
.hero-banner__shell {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1120px;
  padding: clamp(1rem, 2vw, 1.75rem) 0;
}

.hero-section__inner--visual .hero-copy {
  max-width: 880px;
}

.design-style-casino .hero-section {
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--color-accent) 10%, transparent) 0%, transparent 34%),
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--color-bg-alt) 42%, transparent) 100%);
}

.design-style-premium .hero-section {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--color-panel) 5%, transparent) 0%, transparent 48%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-bg) 96%, black) 0%, var(--color-bg-alt) 100%);
}

.design-style-mobile .hero-section__inner {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3.1rem);
}

.design-style-minimal .hero-section {
  padding-top: clamp(1.4rem, 2.4vw, 2.6rem);
}

.design-style-minimal .hero-trust,
.design-style-minimal .sports-strip {
  max-width: 680px;
}

.design-hero-split-compact .hero-section__inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: min(590px, calc(100vh - 112px));
  gap: clamp(1.8rem, 3.2vw, 3.4rem);
}

.design-hero-split-compact .hero-copy__title {
  max-width: 760px;
  font-size: clamp(2.9rem, 4vw, 4.45rem);
}

.design-hero-split-compact .hero-copy__summary {
  max-width: 660px;
}

.design-hero-split-compact .hero-banner {
  width: min(100%, 760px);
}

.design-hero-split-compact .hero-banner__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  gap: 1rem 1.2rem;
  align-items: start;
}

.design-hero-split-compact .hero-banner__label,
.design-hero-split-compact .hero-banner__title,
.design-hero-split-compact .hero-banner__copy,
.design-hero-split-compact .hero-metrics {
  grid-column: 1;
}

.design-hero-split-compact .hero-banner__points,
.design-hero-split-compact .hero-banner .button {
  grid-column: 2;
}

.design-hero-split-compact .hero-metrics {
  grid-template-columns: 1fr;
}

.design-hero-editorial .hero-section__inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  gap: 1.45rem;
  padding-bottom: 1.1rem;
}

.design-hero-editorial .hero-copy {
  max-width: 1180px;
  padding-top: clamp(1.25rem, 3vw, 2.6rem);
}

.design-hero-editorial .hero-copy__title {
  max-width: 1120px;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.design-hero-editorial .hero-copy__summary {
  max-width: 840px;
}

.design-hero-editorial .hero-banner {
  justify-self: stretch;
  width: 100%;
}

.design-hero-editorial .hero-banner__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0.95rem 1.2rem;
  align-items: center;
  padding: clamp(1.15rem, 2vw, 1.65rem);
}

.design-hero-editorial .hero-banner__label,
.design-hero-editorial .hero-banner__title,
.design-hero-editorial .hero-banner__copy,
.design-hero-editorial .hero-banner__media {
  grid-column: 1;
}

.design-hero-editorial .hero-metrics,
.design-hero-editorial .hero-banner__points,
.design-hero-editorial .hero-banner .button {
  grid-column: 2;
}

.design-style-mobile .hero-section__inner--visual,
.design-hero-split-compact .hero-section__inner--visual,
.design-hero-editorial .hero-section__inner--visual {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-kicker-light);
}

.hero-copy__title {
  max-width: 860px;
  margin: 0.9rem 0 1.1rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 4.6vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy__summary,
.section-lead,
.story-block__text,
.site-footer__description,
.site-footer__notice p,
.hero-banner__copy,
.story-card__copy,
.rail-card__copy {
  font-size: 1rem;
  line-height: 1.78;
}

.hero-copy__summary {
  max-width: 720px;
  color: rgba(237, 243, 255, 0.82);
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.button--hero-primary {
  min-height: 58px;
  padding: 1rem 1.7rem;
  min-width: min(100%, 245px);
  font-size: 1.02rem;
}

.hero-cta__warning {
  max-width: 420px;
  color: #ffd6d6;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.button--secondary-hero {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  font-size: 0.86rem;
  opacity: 0.78;
}

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 760px;
  margin: 0;
  padding: 0;
}

.hero-trust li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.85rem 0.75rem 2rem;
  position: relative;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(237, 243, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.32;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--color-accent) 14%, transparent);
}

.sports-strip {
  margin-top: clamp(1.2rem, 1.8vw, 1.7rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.sports-strip__label {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.sports-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sports-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 34%, transparent);
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  color: var(--color-kicker-light);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sports-pill:hover,
.sports-pill:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--color-accent) 62%, transparent);
  background: color-mix(in srgb, var(--color-accent) 22%, transparent);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-content: center;
  align-self: start;
  justify-self: stretch;
  margin-top: clamp(4.6rem, 7vw, 7.2rem);
  width: min(100%, 780px);
}

.hero-visual__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 52% 8%, color-mix(in srgb, var(--color-accent) 28%, transparent) 0%, transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid color-mix(in srgb, var(--color-accent) 36%, rgba(255, 255, 255, 0.1));
  box-shadow:
    0 30px 72px color-mix(in srgb, var(--color-shadow) 78%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 0 46px color-mix(in srgb, var(--color-accent) 20%, transparent);
}

.hero-visual__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-visual__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__actions {
  display: flex;
  justify-content: center;
}

.button--hero-register {
  width: min(74%, 640px);
  min-height: 62px;
  padding: 1.05rem 2rem;
  font-size: 1.06rem;
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--color-accent) 22%, transparent),
    0 0 0 1px color-mix(in srgb, var(--color-accent) 36%, transparent) inset;
}

body.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  background: transparent;
  border-bottom: 0;
}

body.home .site-header.site-header--menu-open {
  background: color-mix(in srgb, var(--hero-bg) 90%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-section.hero-section--promo {
  --hero-header-offset: 84px;
  --hero-section-y: clamp(0.65rem, 1.8vh, 1.25rem);
  --hero-section-y: clamp(0.65rem, 1.8svh, 1.25rem);
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: var(--hero-section-y) 0;
  background:
    radial-gradient(circle at 68% 18%, color-mix(in srgb, var(--color-accent) 24%, transparent) 0%, transparent 32%),
    linear-gradient(115deg, color-mix(in srgb, var(--hero-bg) 86%, #000 14%) 0%, color-mix(in srgb, var(--hero-bg) 72%, #000 28%) 58%, color-mix(in srgb, var(--hero-bg) 54%, #000 46%) 100%);
}

.hero-section--promo::before,
.hero-section--promo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section--promo::before {
  z-index: -2;
  background-image: var(--hero-promo-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.hero-section--promo::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.9) 0%, rgba(3, 10, 18, 0.74) 38%, rgba(3, 10, 18, 0.32) 66%, rgba(3, 10, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.16) 0%, rgba(3, 10, 18, 0.38) 100%),
    radial-gradient(circle at 21% 49%, color-mix(in srgb, var(--color-accent) 18%, transparent) 0%, transparent 34%);
}

.hero-section__inner--promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  min-height: calc(100vh - var(--hero-section-y) - var(--hero-section-y));
  min-height: calc(100svh - var(--hero-section-y) - var(--hero-section-y));
  padding-top: var(--hero-header-offset);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.design-hero-split-compact .hero-section__inner--promo,
.design-hero-editorial .hero-section__inner--promo {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  min-height: calc(100vh - var(--hero-section-y) - var(--hero-section-y));
  min-height: calc(100svh - var(--hero-section-y) - var(--hero-section-y));
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.hero-left {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy.hero-copy--promo {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: min(880px, 100%);
}

.hero-section--promo .hero-copy__title {
  max-width: 760px;
  margin: 0 0 clamp(0.85rem, 2svh, 1.35rem);
  font-size: clamp(2.85rem, 4.55vw, 5.35rem);
  font-size: clamp(2.85rem, min(4.55vw, 8.2svh), 5.35rem);
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-copy__summary--promo {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.94rem, 1.08vw, 1.12rem);
  font-size: clamp(0.94rem, min(1.08vw, 2svh), 1.12rem);
  line-height: 1.52;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.hero-inline-cta-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.6rem, 1vw, 0.95rem);
  width: min(100%, 880px);
  margin-top: clamp(1.35rem, 3.4svh, 2.6rem);
}

.hero-inline-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: clamp(54px, 6.2svh, 76px);
  padding: 0 clamp(0.7rem, 1vw, 1.3rem);
  border: 2px solid color-mix(in srgb, var(--color-accent) 62%, transparent);
  border-radius: 10px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 12%, rgba(9, 13, 20, 0.72)) 0%, color-mix(in srgb, var(--hero-bg) 84%, #000 16%) 100%);
  color: var(--hero-text);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-size: clamp(0.8rem, 1.02vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero-inline-cta-button__label {
  min-width: 0;
}

.hero-inline-cta-button__chevron {
  flex: 0 0 auto;
  display: block;
  width: clamp(14px, 1.1vw, 18px);
  height: clamp(14px, 1.1vw, 18px);
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.hero-inline-cta-button:hover,
.hero-inline-cta-button:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--color-accent) 82%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 18%, rgba(9, 13, 20, 0.7)) 0%, color-mix(in srgb, var(--hero-bg) 80%, #000 20%) 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 22px color-mix(in srgb, var(--color-accent) 26%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-inline-cta-button:hover .hero-inline-cta-button__chevron,
.hero-inline-cta-button:focus-visible .hero-inline-cta-button__chevron {
  transform: translateX(3px);
}

.hero-inline-cta-button--disabled,
.hero-inline-cta-button--disabled:hover,
.hero-inline-cta-button--disabled:focus-visible {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}

.hero-bonus {
  justify-self: center;
  align-self: center;
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2svh, 1.6rem);
  padding: clamp(1.7rem, 3.2svh, 2.7rem) clamp(1.4rem, 2.2vw, 2.3rem);
  border: 1px solid color-mix(in srgb, var(--color-accent) 48%, rgba(255, 255, 255, 0.14));
  border-radius: 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--hero-bg) 72%, transparent) 0%, color-mix(in srgb, var(--hero-bg) 86%, transparent) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 36px color-mix(in srgb, var(--color-accent) 14%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
}

.hero-bonus--disabled {
  opacity: 0.72;
}

.hero-bonus__gift {
  width: clamp(72px, 7vw, 92px);
  aspect-ratio: 1;
  line-height: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.hero-bonus__gift-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-bonus__title {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.hero-bonus__title span {
  color: var(--color-accent);
}

.hero-bonus__arrow {
  width: clamp(42px, 4vw, 56px);
  color: var(--color-accent);
  animation: heroBonusBounce 1.6s ease-in-out infinite;
}

.hero-bonus__arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes heroBonusBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bonus__arrow {
    animation: none;
  }
}

.hero-bonus__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  min-height: clamp(52px, 6.4svh, 66px);
  padding: 0.85rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--color-accent-contrast) 24%, transparent);
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 16px 34px color-mix(in srgb, var(--color-accent) 40%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-bonus__button:hover,
.hero-bonus__button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 20px 42px color-mix(in srgb, var(--color-accent) 50%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.hero-bonus__button--disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.hero-bonus__warning {
  margin: 0;
  color: var(--hero-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (min-width: 781px) and (max-height: 850px) {
  .site-header__inner {
    min-height: 72px;
    padding: 0.5rem 0;
  }

  .site-brand__logo {
    width: 44px;
    height: 44px;
  }

  .site-header__actions .button--header-registration,
  .site-header__actions .button--header-login {
    min-height: 46px;
    padding: 0.72rem 1.2rem;
  }

  .site-header__actions .button--header-registration {
    min-width: 160px;
  }

  .site-header__actions .button--header-login {
    min-width: 112px;
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 72px;
    --hero-section-y: 0.6rem;
  }

  .hero-section__inner--promo {
    min-height: calc(100vh - 1.2rem);
    min-height: calc(100svh - 1.2rem);
    gap: clamp(1.4rem, 3vw, 3.5rem);
  }

  .hero-section--promo .hero-copy__title {
    font-size: clamp(2.55rem, min(4.15vw, 7.35svh), 4.55rem);
    margin-bottom: clamp(0.78rem, 1.8svh, 1.15rem);
  }

  .hero-copy__summary--promo {
    max-width: 560px;
    margin-bottom: 0;
    font-size: clamp(0.88rem, min(1vw, 1.85svh), 1.02rem);
    line-height: 1.42;
  }

  .hero-inline-cta-row {
    margin-top: clamp(1rem, 3.2svh, 2rem);
  }

  .hero-inline-cta-button {
    min-height: clamp(42px, 5.2svh, 54px);
    font-size: 0.9rem;
  }

  .hero-bonus {
    width: min(100%, 410px);
    gap: clamp(0.7rem, 1.5svh, 1.1rem);
    padding: clamp(1.15rem, 2.2svh, 1.8rem) clamp(1rem, 1.65vw, 1.6rem);
  }

  .hero-bonus__gift {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
  }

  .hero-bonus__title {
    font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  }

  .hero-bonus__button {
    min-height: clamp(44px, 5.6svh, 54px);
    font-size: 0.96rem;
  }
}

@media (min-width: 781px) and (max-height: 760px) {
  .site-header__inner {
    min-height: 66px;
    padding: 0.42rem 0;
  }

  .site-brand__logo {
    width: 40px;
    height: 40px;
  }

  .site-brand__name {
    font-size: 1rem;
  }

  .primary-nav__list {
    gap: clamp(0.85rem, 1.7vw, 1.65rem);
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 66px;
    --hero-section-y: 0.5rem;
  }

  .hero-section--promo .hero-copy__title {
    max-width: 690px;
    font-size: clamp(2.35rem, min(3.85vw, 6.9svh), 3.95rem);
    line-height: 1.01;
    margin-bottom: clamp(0.68rem, 1.55svh, 1rem);
  }

  .hero-copy__summary--promo {
    max-width: 520px;
    font-size: clamp(0.84rem, min(0.94vw, 1.7svh), 0.96rem);
    line-height: 1.36;
  }

  .hero-inline-cta-row {
    margin-top: clamp(0.8rem, 2.6svh, 1.5rem);
  }

  .hero-inline-cta-button {
    min-height: clamp(38px, 5svh, 48px);
    padding-block: 0.58rem;
    font-size: 0.84rem;
  }

  .hero-bonus {
    width: min(100%, 380px);
    gap: 0.65rem;
    padding: 1rem 1.2rem;
  }

  .hero-bonus__title {
    font-size: clamp(1rem, 1.35vw, 1.3rem);
  }

  .hero-bonus__arrow {
    width: 38px;
  }
}

@media (min-width: 781px) and (max-height: 680px) {
  .site-header__inner {
    min-height: 60px;
    padding: 0.35rem 0;
  }

  .site-header__actions .button--header-registration,
  .site-header__actions .button--header-login {
    min-height: 40px;
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 60px;
    --hero-section-y: 0.4rem;
  }

  .hero-section--promo .hero-copy__title {
    max-width: 640px;
    font-size: clamp(2.05rem, min(3.45vw, 6.2svh), 3.35rem);
    margin-bottom: clamp(0.55rem, 1.35svh, 0.85rem);
  }

  .hero-copy__summary--promo {
    max-width: 480px;
    margin-bottom: 0;
    font-size: clamp(0.8rem, min(0.9vw, 1.55svh), 0.9rem);
    line-height: 1.32;
  }

  .hero-inline-cta-row {
    margin-top: clamp(0.65rem, 2svh, 1.1rem);
  }

  .hero-inline-cta-button {
    min-height: 36px;
    padding: 0.46rem 0.65rem;
    font-size: 0.78rem;
  }

  .hero-bonus {
    width: min(100%, 340px);
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .hero-bonus__gift {
    font-size: 1.8rem;
  }

  .hero-bonus__title {
    font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  }

  .hero-bonus__arrow {
    width: 32px;
  }

  .hero-bonus__button {
    width: min(100%, 240px);
    min-height: 38px;
    font-size: 0.8rem;
  }
}

.hero-banner {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 660px);
}

.hero-banner__shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 2.15vw, 2rem);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 7%, transparent), transparent),
    linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px var(--color-shadow);
}

.hero-banner__shell::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 16%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner__label,
.story-card__label {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  color: var(--color-kicker-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-banner__title {
  max-width: none;
  margin: 0.75rem 0 0.75rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 2.1vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-banner__copy {
  max-width: 58ch;
  margin-bottom: 1rem;
  color: rgba(237, 243, 255, 0.78);
  line-height: 1.62;
}

.hero-banner__media {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-banner__media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.promo-code {
  display: grid;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.promo-code__caption {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.promo-code__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed color-mix(in srgb, var(--color-accent) 52%, transparent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  color: var(--color-kicker-light);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-metric {
  padding: 0.74rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-metric__label {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 0.28rem;
}

.hero-metric__value {
  font-size: 0.98rem;
  color: var(--color-text);
}

.hero-banner__points,
.story-card__stats,
.benefit-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hero-banner__points li,
.story-card__stats li,
.benefit-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(237, 243, 255, 0.88);
  line-height: 1.55;
}

.hero-banner__points li::before,
.story-card__stats li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.overview-section,
.content-section {
  color: var(--color-text-dark);
}

.overview-section {
  padding: 0 0 4rem;
}

.section-heading,
.story-block__content--full,
.card-rail__intro {
  max-width: 860px;
}

.section-title {
  margin: 0.8rem 0 1rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--color-text-dark);
}

.section-lead,
.story-block__text {
  color: var(--color-text-soft);
}

.overview-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.overview-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.info-table-card,
.story-block,
.card-rail,
.rail-card {
  border-radius: var(--radius-lg);
}

.info-table-card {
  padding: 1.55rem;
  background: var(--color-panel);
  border: 1px solid var(--color-panel-border);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.highlight-card {
  padding: 1.25rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 7%, transparent), transparent),
    var(--color-panel);
  border: 1px solid rgba(17, 26, 44, 0.08);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.06);
}

.highlight-card__title {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.highlight-card__copy {
  margin-bottom: 0;
  color: var(--color-text-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

.info-table-card__title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr + tr {
  border-top: 1px solid rgba(17, 26, 44, 0.08);
}

.info-table th,
.info-table td {
  padding: 0.95rem 0;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.info-table th {
  width: 42%;
  font-size: 0.95rem;
  color: #52617d;
  font-weight: 700;
}

.info-table td {
  font-size: 0.98rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.content-section {
  padding: 0 0 var(--density-section-y, 5rem);
}

.seo-section {
  padding: 0 0 var(--density-section-y, 5rem);
  color: var(--color-text-dark);
}

.seo-topic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(1rem, 2.4vw, 1.9rem);
  align-items: stretch;
  min-height: 360px;
  margin-bottom: var(--design-section-gap, 1.05rem);
  padding: var(--density-card-pad, clamp(1.35rem, 2.6vw, 2.25rem));
  border: 1px solid var(--design-card-border, rgba(17, 26, 44, 0.08));
  border-radius: 8px;
  background: var(--color-panel);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.seo-topic__main,
.seo-topic__support {
  min-width: 0;
}

.seo-topic__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-topic .section-title {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.seo-topic .section-kicker {
  color: var(--color-kicker-dark);
}

.seo-topic__text p {
  margin-bottom: 0.9rem;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.seo-topic__text p:last-child {
  margin-bottom: 0;
}

.custom-text-block {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  min-height: 0;
  align-items: center;
}

.custom-text-block--no-image {
  display: block;
}

.custom-text-block--image-left .custom-text-block__media {
  order: 1;
}

.custom-text-block--image-left .custom-text-block__content {
  order: 2;
}

.custom-text-block__content,
.custom-text-block__media {
  min-width: 0;
}

.custom-text-block__body {
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.custom-text-block__body > *:last-child {
  margin-bottom: 0;
}

.custom-text-block__body p,
.custom-text-block__body ul,
.custom-text-block__body ol,
.custom-text-block__body blockquote {
  margin: 0 0 0.9rem;
}

.custom-text-block__body ul,
.custom-text-block__body ol {
  padding-left: 1.35rem;
}

.custom-text-block__body li + li {
  margin-top: 0.35rem;
}

.custom-text-block__body a {
  color: var(--color-accent);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.custom-text-block__body blockquote {
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

.custom-text-block__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--design-card-border, rgba(17, 26, 44, 0.08));
  border-radius: 8px;
  background: var(--color-surface-soft);
}

.custom-text-block__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-topic__support {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.seo-topic--facts_table {
  display: block;
  min-height: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent),
    var(--color-surface);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.seo-topic--facts_table .section-title {
  margin-bottom: 1.15rem;
  color: var(--color-text);
}

.seo-topic__facts-table {
  width: 100%;
  margin-top: 1.35rem;
}

.seo-topic__facts-text {
  margin-top: 0;
}

.seo-topic--facts_table .section-kicker {
  color: var(--color-kicker-light);
}

.seo-topic--facts_table .seo-topic__text p {
  color: rgba(237, 243, 255, 0.72);
}

.seo-topic--payment_table {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.seo-topic--payment_table .seo-topic__support,
.seo-topic--media .seo-topic__support,
.seo-topic--steps .seo-topic__support,
.seo-topic--pros_cons .seo-topic__support {
  align-content: stretch;
}

.seo-topic--slug-bonuses .seo-topic__support,
.seo-topic--slug-mobile .seo-topic__support {
  order: 1;
}

.seo-topic--slug-bonuses .seo-topic__main,
.seo-topic--slug-mobile .seo-topic__main {
  order: 2;
}

.seo-topic--payment_table .seo-topic__main {
  order: 1;
}

.seo-topic--payment_table .seo-topic__support {
  order: 2;
}

.seo-topic--payment_table .seo-topic__main,
.seo-topic--payment_table .seo-topic__support,
.seo-topic--slug-bonuses .seo-topic__main,
.seo-topic--slug-mobile .seo-topic__main {
  justify-content: start;
  align-content: start;
}

.seo-table {
  width: 100%;
  min-width: 100%;
  height: auto;
  border-collapse: collapse;
  table-layout: fixed;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  color: #111827;
}

.seo-table tr {
  background: #f8fafc;
}

.seo-table tr:nth-child(even) {
  background: #f2f5f9;
}

.seo-table tr + tr {
  border-top: 1px solid rgba(17, 26, 44, 0.08);
}

.seo-table th,
.seo-table td {
  padding: 0.82rem 0.95rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.42;
}

.seo-table th {
  width: 40%;
  color: #52617d;
  font-weight: 800;
}

.seo-table td {
  color: #111827;
  font-weight: 700;
}

.seo-table--facts {
  border: 1px solid #745422;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.seo-table--facts tr,
.seo-table--facts tr:nth-child(even) {
  background: #fff;
}

.seo-table--facts tr + tr {
  border-top: 1px solid #745422;
}

.seo-table--facts th,
.seo-table--facts td {
  padding: 0.95rem 1.25rem;
  border-right: 1px solid #745422;
  vertical-align: middle;
}

.seo-table--facts th {
  width: 24%;
  color: #2d261e;
  font-size: 1.02rem;
  font-weight: 900;
}

.seo-table--facts td,
.seo-topic--payment_table .seo-table td {
  color: #111827;
}

.seo-topic--payment_table .seo-table th {
  width: 36%;
}

.seo-topic--payment_table .seo-table th,
.seo-topic--payment_table .seo-table td {
  padding: 0.78rem 0.9rem;
}

.seo-payment-tables {
  display: grid;
  gap: 1rem;
}

.seo-payment-table {
  display: grid;
  gap: 0.45rem;
}

.seo-payment-table__title {
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.seo-table--matrix {
  table-layout: fixed;
}

.seo-topic--payment_table .seo-table--matrix th,
.seo-topic--payment_table .seo-table--matrix td {
  width: auto;
  padding: 0.72rem 0.78rem;
  vertical-align: middle;
}

.seo-topic--payment_table .seo-table--matrix thead th {
  color: #334155;
  background: #eef3f8;
  font-weight: 900;
}

.seo-topic--payment_table .seo-table--matrix tbody td {
  color: #111827;
  font-weight: 700;
}

.seo-topic--payment_table .seo-table--matrix th:first-child,
.seo-topic--payment_table .seo-table--matrix td:first-child {
  width: 40%;
}

.seo-list,
.seo-steps,
.seo-pros-cons ul,
.seo-mini-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.seo-list--inline {
  margin-top: 1rem;
}

.seo-list li,
.seo-steps li,
.seo-pros-cons li,
.seo-mini-card li {
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 2.2rem;
  border-radius: 8px;
  background: rgba(17, 26, 44, 0.045);
  color: var(--color-text-dark);
  line-height: 1.5;
}

.seo-list li::before,
.seo-pros-cons li::before,
.seo-mini-card li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.23rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-accent) 18%, transparent);
}

.seo-steps {
  counter-reset: seo-step;
  display: grid;
  align-content: center;
  gap: 0.95rem;
  height: 100%;
}

.seo-steps li {
  counter-increment: seo-step;
  display: flex;
  align-items: flex-start;
  min-height: 72px;
  padding: 1.08rem 1.25rem 1.08rem 4.45rem;
  border: 1px solid rgba(17, 26, 44, 0.06);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-panel) 76%, white), color-mix(in srgb, var(--color-panel) 36%, white)),
    rgba(17, 26, 44, 0.045);
  box-shadow:
    0 10px 26px rgba(17, 26, 44, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: var(--color-text-dark);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.48;
}

.seo-steps li::before {
  content: counter(seo-step);
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: var(--color-kicker-light);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--color-accent) 16%, transparent),
    0 8px 18px rgba(17, 26, 44, 0.16);
}

.seo-media {
  margin: 0;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  border: 1px solid rgba(17, 26, 44, 0.08);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent),
    var(--color-surface);
}

.seo-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.seo-topic--slug-mobile .seo-media img {
  aspect-ratio: 9 / 10;
}

.seo-visual-banner {
  --seo-visual-blur: 18px;
  --seo-visual-darkness: 0.58;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(150px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.4rem);
  min-height: 330px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: clamp(1.2rem, 2.1vw, 2.15rem);
  border: 1px solid color-mix(in srgb, var(--color-accent) 32%, rgba(255, 255, 255, 0.12));
  border-radius: 8px;
  background: #050b14;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 80px color-mix(in srgb, var(--color-shadow) 70%, transparent);
}

.seo-visual-banner::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -2;
  background-image: var(--seo-visual-bg);
  background-size: cover;
  background-position: left top;
  filter: blur(var(--seo-visual-blur)) saturate(1.15) contrast(1.02);
  opacity: 1;
  transform: scale(1.12);
}

.seo-visual-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / var(--seo-visual-darkness)), rgb(0 0 0 / calc(var(--seo-visual-darkness) * 0.58)) 48%, rgb(0 0 0 / calc(var(--seo-visual-darkness) * 0.34)) 74%, rgb(0 0 0 / calc(var(--seo-visual-darkness) * 0.72))),
    linear-gradient(180deg, rgb(0 0 0 / calc(var(--seo-visual-darkness) * 0.2)), rgb(0 0 0 / calc(var(--seo-visual-darkness) * 0.56)));
}

.seo-visual-banner__label {
  color: #ffffff;
  font-size: clamp(2.05rem, 4.2vw, 4.85rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.62);
}

.seo-visual-banner--bonuses .seo-visual-banner__label {
  color: #ffffff;
}

.seo-visual-banner--bonuses .seo-visual-banner__label::first-line {
  color: #ffffff;
}

.seo-visual-banner__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}

.seo-visual-banner__media > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.56));
}

.seo-visual-banner--overview .seo-visual-banner__media > img {
  width: 126%;
  max-width: 126%;
  max-height: 470px;
  transform: translateX(6%);
}

.seo-visual-banner--bonuses .seo-visual-banner__media > img {
  max-height: 330px;
}

.seo-visual-banner--bonuses .seo-bonus-cutout {
  width: min(100%, 520px);
  max-width: 110%;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateX(2%);
  filter:
    drop-shadow(0 30px 44px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 28px color-mix(in srgb, var(--color-accent) 26%, transparent));
}

.seo-visual-banner--mobile .seo-visual-banner__media > img {
  width: auto;
  max-width: 128%;
  max-height: 540px;
}

.seo-visual-banner--mobile .seo-visual-banner__label {
  font-size: clamp(2.25rem, 4.6vw, 5rem);
}

.seo-phone-mockup {
  --phone-screen-ratio: 390 / 844;
  width: min(76%, 330px);
  min-width: 210px;
  margin-left: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.64));
}

.seo-phone-mockup__body {
  position: relative;
  padding: 54px 17px 28px;
  border: 3px solid color-mix(in srgb, var(--color-accent) 76%, #ffffff 12%);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #111821, #03070d);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.035),
    inset -10px 0 18px rgba(255, 255, 255, 0.055),
    inset 9px 0 18px rgba(0, 0, 0, 0.38);
}

.seo-phone-mockup__screen {
  aspect-ratio: var(--phone-screen-ratio);
  overflow: hidden;
  border: 6px solid #05080f;
  border-radius: 24px;
  background: #05080f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.seo-phone-mockup__screen img,
.seo-laptop-mockup__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-phone-mockup__speaker {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: #333d50;
  transform: translateX(-50%);
}

.seo-phone-mockup__camera {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  background: #00040a;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.seo-laptop-mockup {
  --laptop-screen-ratio: 1440 / 900;
  position: relative;
  isolation: isolate;
  width: min(126%, 860px);
  margin-left: auto;
  transform: translateX(3%);
  filter: drop-shadow(0 30px 52px rgba(3, 7, 18, 0.46));
}

.seo-laptop-mockup__lid {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: var(--laptop-screen-ratio);
  padding: 2.4%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--color-accent) 42%, #232a37 58%);
  border-radius: 26px 26px 13px 13px;
  background: linear-gradient(145deg, #05070b, #141a25 70%, #05070b);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -14px 20px rgba(0, 0, 0, 0.28);
}

.seo-laptop-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: #05070b;
}

.seo-laptop-mockup__camera {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #273141;
  transform: translateX(-50%);
  z-index: 2;
}

.seo-laptop-mockup__hinge {
  position: relative;
  z-index: 4;
  display: block;
  width: 86%;
  height: 8px;
  margin: -3px auto 0;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.16) 45% 55%, transparent 93%),
    linear-gradient(180deg, #1b2230, #06080d 74%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.seo-laptop-mockup__base {
  position: relative;
  z-index: 2;
  width: 110%;
  height: clamp(20px, 3vw, 30px);
  margin: -3px 0 0 -5%;
  border-radius: 9px 9px 16px 16px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.34), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(145deg, #3a4353, #151b26 72%);
  box-shadow:
    0 16px 30px rgba(3, 7, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.seo-laptop-mockup__base::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.seo-laptop-mockup__keyboard {
  position: absolute;
  top: 7px;
  left: 12%;
  right: 12%;
  height: 6px;
  border-radius: 12px;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 24px 6px,
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 100% 6px,
    rgba(5, 8, 13, 0.22);
}

.seo-laptop-mockup__trackpad {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 22%;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 8, 13, 0.32);
  transform: translateX(-50%);
}

.seo-laptop-mockup__front-lip {
  position: relative;
  z-index: 1;
  display: block;
  width: 88%;
  height: 4px;
  margin: -2px auto 0;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #dce2ea, #aeb8c8 72%, #8793a5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.seo-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.seo-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 44, 0.12);
  background: var(--color-text-dark);
  color: var(--color-panel);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.seo-cta-button:hover,
.seo-cta-button:focus-visible {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--color-text-dark) 86%, var(--color-accent));
}

.seo-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 0.85rem;
  height: 100%;
}

.seo-topic--pros_cons {
  grid-template-columns: 1fr;
  align-items: start;
}

.seo-topic--pros_cons .seo-topic__main,
.seo-topic--pros_cons .seo-topic__support {
  grid-column: 1 / -1;
}

.seo-topic--pros_cons .seo-topic__main {
  display: block;
  max-width: 980px;
}

.seo-pros-cons__column {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-panel) 92%, white);
  border: 1px solid rgba(17, 26, 44, 0.06);
}

.seo-pros-cons__title,
.seo-mini-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--color-text-dark);
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 800;
}

.seo-pros-cons__column ul,
.seo-mini-card ul {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  flex: 1;
}

.seo-pros-cons__column--pros li::before {
  background: #23b26d;
  box-shadow: 0 0 0 6px rgba(35, 178, 109, 0.14);
}

.seo-pros-cons__column--cons li::before {
  background: #e45858;
  box-shadow: 0 0 0 6px rgba(228, 88, 88, 0.14);
}

.seo-mini-card {
  padding: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent),
    var(--color-surface);
  color: var(--color-text);
}

.seo-mini-card h3 {
  color: var(--color-text);
}

.seo-mini-card li {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(237, 243, 255, 0.88);
}

.design-content-dense-review .seo-topic {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  min-height: 320px;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.design-content-dense-review .seo-topic .section-title {
  font-size: clamp(1.45rem, 2.2vw, 2.08rem);
}

.design-content-dense-review .seo-topic__text p {
  margin-bottom: 0.72rem;
  line-height: 1.68;
}

.design-content-dense-review .seo-table th,
.design-content-dense-review .seo-table td {
  padding: 0.66rem 0.78rem;
}

.design-content-dense-review .seo-list li,
.design-content-dense-review .seo-pros-cons li,
.design-content-dense-review .seo-steps li {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.design-content-magazine .seo-section {
  padding-top: 0.75rem;
}

.design-content-magazine .seo-topic {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  border: 0;
  border-top: 5px solid color-mix(in srgb, var(--color-accent) 62%, var(--color-panel-border));
  box-shadow: 0 24px 74px rgba(19, 35, 59, 0.1);
}

.design-content-magazine .seo-topic .section-title {
  max-width: 820px;
}

.design-style-premium .seo-topic,
.design-style-premium .faq-item,
.design-style-premium .page-card {
  border-width: 1px;
  border-color: color-mix(in srgb, var(--color-outline) 36%, var(--color-panel-border));
  box-shadow: 0 26px 80px rgba(7, 16, 28, 0.12);
}

.design-style-premium .seo-topic .section-kicker,
.design-style-premium .faq-section .section-kicker {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid color-mix(in srgb, var(--color-accent) 52%, transparent);
}

.design-style-casino .seo-topic {
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px color-mix(in srgb, var(--color-shadow) 70%, transparent);
}

.design-style-casino .seo-topic:nth-child(3n + 1) {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-accent) 8%, transparent), transparent 42%),
    var(--color-panel);
}

.design-style-mobile .seo-topic {
  border-radius: var(--radius-xl);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.design-style-mobile .seo-media,
.design-style-mobile .seo-table,
.design-style-mobile .seo-pros-cons__column,
.design-style-mobile .faq-item {
  border-radius: var(--radius-lg);
}

.design-style-mobile .seo-topic--slug-mobile {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.design-style-minimal .seo-topic,
.design-style-minimal .faq-item,
.design-style-minimal .page-card {
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.design-style-minimal .seo-topic {
  background: color-mix(in srgb, var(--color-panel) 88%, white);
}

.design-card-contrast .seo-topic,
.design-card-contrast .faq-item,
.design-card-contrast .hero-banner__shell {
  border-color: color-mix(in srgb, var(--color-accent) 32%, var(--color-outline));
}

.design-card-glass .hero-banner__shell,
.design-card-glass .seo-topic--facts_table,
.design-card-glass .seo-mini-card,
.design-card-glass .story-card {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface) 84%, white), color-mix(in srgb, var(--color-bg-alt) 82%, black));
  backdrop-filter: blur(12px);
}

.design-content-dense-review .seo-topic--pros_cons,
.design-content-magazine .seo-topic--pros_cons,
.design-style-mobile .seo-topic--pros_cons,
.seo-topic--pros_cons {
  grid-template-columns: 1fr;
}

.design-content-dense-review .seo-topic--pros_cons .seo-topic__main,
.design-content-dense-review .seo-topic--pros_cons .seo-topic__support,
.design-content-magazine .seo-topic--pros_cons .seo-topic__main,
.design-content-magazine .seo-topic--pros_cons .seo-topic__support,
.design-style-mobile .seo-topic--pros_cons .seo-topic__main,
.design-style-mobile .seo-topic--pros_cons .seo-topic__support,
.seo-topic--pros_cons .seo-topic__main,
.seo-topic--pros_cons .seo-topic__support {
  grid-column: 1 / -1;
}

.faq-section {
  padding: 0 0 var(--density-section-y, 5rem);
  color: var(--color-text);
}

.faq-section .section-heading {
  max-width: 980px;
}

.faq-section .section-title {
  color: var(--color-text);
}

.faq-section .section-kicker {
  color: var(--label-on-dark);
}

.home-faq-block {
  margin-bottom: var(--design-section-gap, 1.05rem);
  padding: var(--density-card-pad, clamp(1.35rem, 2.6vw, 2.25rem));
  border: 1px solid var(--design-card-border, rgba(17, 26, 44, 0.08));
  border-radius: 8px;
  background: var(--color-panel);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.home-faq-block .section-title {
  color: var(--color-text-dark);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: var(--card-bg);
  color: var(--card-text);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
  overflow: hidden;
}

.faq-item__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 3.7rem 1.2rem 1.35rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--card-text);
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 22%, white);
  color: var(--color-accent-contrast);
  font-size: 1.35rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.faq-item[open] .faq-item__question::after {
  content: "-";
}

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

.faq-item__answer {
  padding: 0 1.35rem 1.25rem;
}

.faq-item__answer p {
  margin-bottom: 0;
  color: var(--card-muted);
  line-height: 1.75;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}

.story-block--left .story-block__content {
  order: 2;
}

.story-block--left .story-card {
  order: 1;
}

.story-block__content,
.story-card,
.story-block--full,
.card-rail {
  padding: clamp(1.5rem, 2.8vw, 2.3rem);
  background: var(--color-panel);
  border: 1px solid rgba(17, 26, 44, 0.08);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.story-card {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 8%, transparent), transparent),
    linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.story-card__title,
.rail-card__title {
  margin: 1rem 0 0.85rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.story-card__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.story-card__copy {
  color: rgba(237, 243, 255, 0.78);
}

.card-rail {
  margin-bottom: 1.35rem;
}

.card-rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scrollbar-width: thin;
}

.card-rail__track::-webkit-scrollbar {
  height: 10px;
}

.card-rail__track::-webkit-scrollbar-thumb {
  background: rgba(17, 26, 44, 0.18);
  border-radius: 999px;
}

.rail-card {
  min-height: 220px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 9%, transparent), transparent),
    var(--color-surface);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rail-card__title {
  font-size: 1.45rem;
  color: var(--color-text);
}

.rail-card__copy {
  color: rgba(237, 243, 255, 0.8);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.2rem;
  margin-bottom: 0;
}

.benefit-list li {
  padding: 1rem 1rem 1rem 2.6rem;
  background: rgba(17, 26, 44, 0.04);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
}

.benefit-list li::before {
  left: 1rem;
  top: 1.45rem;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--color-accent) 18%, transparent);
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  color: var(--color-text);
}

.page-shell {
  padding: 2.25rem 0 5rem;
  color: var(--color-text-dark);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--color-accent);
}

.page-hero {
  margin-bottom: 1.4rem;
}

.page-title {
  margin: 0.8rem 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--color-text-dark);
}

.page-shell--app {
  padding-top: 1.4rem;
}

.app-page-hero {
  --app-page-hero-bg: none;
  --app-page-hero-blur: 0px;
  --app-page-hero-darkness: 0.62;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 1.5rem;
  min-height: clamp(420px, 47vw, 590px);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, rgba(255, 255, 255, 0.22));
  background:
    radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--color-accent) 26%, transparent), transparent 30%),
    linear-gradient(135deg, var(--hero-bg), var(--color-bg));
  color: #fff;
  box-shadow: 0 24px 74px rgba(3, 10, 18, 0.22);
}

.app-page-hero::before,
.app-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-page-hero::before {
  z-index: -2;
  background-image: var(--app-page-hero-bg);
  background-position: center;
  background-size: cover;
  opacity: 0.92;
  filter: blur(var(--app-page-hero-blur)) saturate(1.08);
  transform: scale(1.045);
}

.app-page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, var(--app-page-hero-darkness)) 0%, rgba(3, 10, 18, var(--app-page-hero-darkness)) 44%, rgba(3, 10, 18, var(--app-page-hero-darkness)) 100%),
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--color-accent) 26%, transparent), transparent 28%);
}

.app-page-hero__content {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.25rem);
  max-width: min(1040px, 100%);
}

.app-page-hero__title {
  max-width: 1180px;
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.app-page-hero__meta {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(260px, 1fr);
  gap: clamp(1.25rem, 3.5vw, 4.5rem);
  align-items: center;
}

.app-page-hero__brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 150px;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  border: 2px solid color-mix(in srgb, var(--color-accent) 76%, #fff);
  border-radius: var(--radius-lg);
  background: rgba(3, 10, 18, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
}

.app-page-hero__brand-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 86px);
  height: clamp(58px, 7vw, 86px);
  object-fit: contain;
  border-radius: 12px;
}

.app-page-hero__brand-name {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.app-page-hero__rating-card {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.app-page-hero__stars {
  color: #ffd433;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.app-page-hero__updated {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.46);
}

.app-page-hero__downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 410px));
  gap: clamp(0.95rem, 2vw, 1.4rem);
}

.app-page-hero__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(56px, 6vw, 72px);
  padding: 0.95rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--color-accent) 62%, transparent);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: var(--color-accent-contrast);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--color-accent) 28%, transparent);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.app-page-hero__download:hover,
.app-page-hero__download:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 22px 54px color-mix(in srgb, var(--color-accent) 34%, transparent);
}

.app-page-hero__download--disabled,
.app-page-hero__download--disabled:hover,
.app-page-hero__download--disabled:focus-visible {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  filter: none;
}

.page-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: var(--color-panel);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.page-featured-image {
  margin: 0 0 1.3rem;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: var(--color-panel);
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.page-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-content {
  color: var(--color-text-soft);
}

.entry-content h2,
.entry-content h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--color-text-dark);
  letter-spacing: 0;
}

.entry-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.entry-content h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

.entry-content p,
.entry-content li {
  line-height: 1.8;
  font-size: 1rem;
}

.entry-content ul {
  padding-left: 1.25rem;
}

.entry-content .internal-faq__grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.9rem;
}

.entry-content .internal-faq__item {
  margin: 0;
}

.entry-content .faq-item__question {
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.entry-content .faq-item__answer p {
  margin: 0;
}

.entry-content dl {
  margin: 1rem 0 1.9rem;
  padding: 0;
}

.entry-content dt {
  position: relative;
  margin: 1rem 0 0;
  padding: 1.1rem 3.5rem 0.35rem 1.25rem;
  border: 1px solid var(--card-border);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--card-bg);
  color: var(--card-text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.entry-content dt:first-child {
  margin-top: 0;
}

.entry-content dt::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.entry-content dd {
  margin: 0;
  padding: 0.35rem 1.25rem 1.15rem;
  border: 1px solid var(--card-border);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--card-bg);
  color: var(--card-muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
  box-shadow: 0 18px 54px rgba(19, 35, 59, 0.08);
}

.page-callout {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
}

.page-callout p:last-child {
  margin-bottom: 0;
}

.page-callout a {
  color: #0d1728;
  font-weight: 800;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-brand--footer {
  margin-bottom: 1rem;
}

.site-footer__description {
  max-width: 48ch;
  color: rgba(237, 243, 255, 0.72);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-column__title {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
}

.footer-column__list,
.legal-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column__list {
  display: grid;
  gap: 0.75rem;
}

.footer-column__list a,
.legal-nav__list a {
  color: rgba(237, 243, 255, 0.72);
}

.footer-column__list a:hover,
.footer-column__list a:focus-visible,
.legal-nav__list a:hover,
.legal-nav__list a:focus-visible {
  color: var(--color-accent);
}

.site-footer__notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 36%, transparent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.site-footer__notice p {
  margin-bottom: 0;
  color: rgba(237, 243, 255, 0.75);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  flex-wrap: wrap;
}

.legal-nav__list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(237, 243, 255, 0.52);
  font-size: 0.92rem;
}

/* Readability guard: semantic roles from the generated design profile. */
body,
.design-mode-light {
  background: linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg) 32%, var(--site-bg) 32%, var(--site-bg-alt) 100%);
  color: var(--hero-text);
}

.site-header,
.design-mode-light .site-header {
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom-color: color-mix(in srgb, var(--header-text) 12%, transparent);
}

.site-brand__name,
.design-mode-light .site-brand__name,
.primary-nav__link,
.design-mode-light .primary-nav__link,
.site-header .button--ghost,
.design-mode-light .site-header .button--ghost {
  color: var(--header-text);
}

.site-brand__tag {
  color: var(--header-muted);
}

.site-header .button--outline,
.design-mode-light .site-header .button--outline {
  color: var(--header-text);
  border-color: color-mix(in srgb, var(--header-text) 38%, transparent);
}

.hero-section {
  background: var(--hero-bg);
  color: var(--hero-text);
}

.hero-copy__title,
.hero-banner__title {
  color: var(--hero-text);
}

.hero-copy .section-kicker,
.hero-banner__label,
.section-kicker {
  color: var(--label-on-dark);
}

.hero-copy__summary,
.hero-trust li,
.sports-strip__label,
.hero-banner__copy,
.hero-banner__points li,
.hero-metric__label,
.hero-metric__value,
.promo-code__caption {
  color: var(--hero-muted);
}

.sports-pill,
.promo-code__value {
  color: var(--label-on-dark);
}

.hero-section .button--ghost {
  color: var(--hero-text);
  border-color: color-mix(in srgb, var(--hero-text) 28%, transparent);
}

.hero-section .button--outline {
  color: var(--label-on-dark);
  border-color: color-mix(in srgb, var(--label-on-dark) 42%, transparent);
}

.hero-banner__shell {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--cta-bg) 8%, transparent), transparent),
    var(--hero-bg);
  color: var(--hero-text);
  border-color: color-mix(in srgb, var(--hero-text) 12%, transparent);
}

.button--solid,
.button--hero-primary,
.button--hero-register,
.hero-banner .button--solid,
.faq-item__question::after {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.seo-section,
.page-shell {
  color: var(--card-text);
}

.seo-topic,
.faq-item,
.page-card {
  background: var(--card-bg);
  color: var(--card-text);
  border-color: var(--card-border);
}

.seo-topic .section-title,
.faq-item__question,
.page-title,
.entry-content h2,
.entry-content h3 {
  color: var(--card-text);
}

.seo-topic .section-kicker {
  color: var(--label-on-light);
}

.seo-topic__text p,
.faq-item__answer p,
.entry-content,
.breadcrumbs {
  color: var(--card-muted);
}

.seo-topic--facts_table {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--cta-bg) 10%, transparent), transparent),
    var(--dark-block-bg);
  color: var(--dark-block-text);
  border-color: color-mix(in srgb, var(--dark-block-text) 12%, transparent);
}

.seo-topic--facts_table .section-title,
.seo-topic--facts_table .seo-topic__text p {
  color: var(--dark-block-text);
}

.seo-topic--facts_table .seo-topic__text p {
  color: var(--dark-block-muted);
}

.seo-topic--facts_table .section-kicker {
  color: var(--label-on-dark);
}

.site-footer {
  background: var(--dark-block-bg);
  color: var(--dark-block-text);
}

.site-footer__description,
.footer-column__list a,
.legal-nav__list a,
.site-footer__notice p,
.site-footer__copyright {
  color: var(--dark-block-muted);
}

.footer-column__title,
.site-footer .site-brand__name {
  color: var(--dark-block-text);
}

.site-footer__badge,
.footer-column__list a:hover,
.footer-column__list a:focus-visible,
.legal-nav__list a:hover,
.legal-nav__list a:focus-visible {
  color: var(--label-on-dark);
}

@media (max-width: 1100px) {
  .site-header__menu {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-header__actions--persistent {
    order: 2;
    width: 100%;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .hero-section__inner,
  .site-footer__top,
  .story-block,
  .seo-topic,
  .overview-highlights {
    grid-template-columns: 1fr;
  }

  .hero-section__inner--promo {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
  }

  .design-hero-split-compact .hero-section__inner--promo,
  .design-hero-editorial .hero-section__inner--promo {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
  }

  .hero-banner {
    justify-self: stretch;
    width: 100%;
  }

  .hero-visual {
    justify-self: center;
    margin-top: 0;
    width: min(100%, 760px);
  }

  .button--hero-register {
    width: 100%;
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 220px;
    min-height: auto;
    padding: clamp(1rem, 2.6svh, 1.7rem) 0 clamp(1.4rem, 3.5svh, 2.4rem);
  }

  .hero-section__inner--promo {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: var(--hero-header-offset);
    gap: clamp(1.2rem, 4svh, 2.2rem);
  }

  .hero-left {
    display: contents;
  }

  .hero-copy.hero-copy--promo {
    order: 1;
    display: block;
    max-width: min(720px, 100%);
    padding: 0;
  }

  .hero-section--promo .hero-copy__title {
    margin-bottom: clamp(1rem, 2.8svh, 1.6rem);
  }

  .hero-inline-cta-row {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 560px);
    margin-top: 0;
  }

  .hero-bonus {
    order: 2;
    align-self: center;
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .hero-section--promo::before {
    background-position: 62% center;
    opacity: 0.72;
  }

  .hero-section--promo::after {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(3, 10, 18, 0.72) 62%, rgba(3, 10, 18, 0.24) 100%),
      linear-gradient(180deg, rgba(3, 10, 18, 0.08) 0%, rgba(3, 10, 18, 0.42) 100%);
  }

  .design-hero-split-compact .hero-banner__shell,
  .design-hero-editorial .hero-banner__shell {
    display: block;
  }

  .design-style-mobile .hero-section__inner,
  .design-hero-split-compact .hero-section__inner,
  .design-hero-editorial .hero-section__inner,
  .design-content-dense-review .seo-topic,
  .design-content-magazine .seo-topic,
  .design-style-mobile .seo-topic,
  .design-style-mobile .seo-topic--slug-mobile {
    grid-template-columns: 1fr;
  }

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

  .seo-topic--payment_table .seo-topic__main,
  .seo-topic--payment_table .seo-topic__support,
  .seo-topic--slug-bonuses .seo-topic__main,
  .seo-topic--slug-bonuses .seo-topic__support,
  .seo-topic--slug-mobile .seo-topic__main,
  .seo-topic--slug-mobile .seo-topic__support,
  .seo-topic--slug-pros-cons .seo-topic__main,
  .seo-topic--slug-pros-cons .seo-topic__support {
    order: initial;
  }

  .seo-visual-banner {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .seo-visual-banner__label {
    text-align: center;
  }

  .app-page-hero {
    min-height: auto;
  }

  .app-page-hero__meta,
  .app-page-hero__downloads {
    grid-template-columns: 1fr;
  }

  .app-page-hero__rating-card {
    justify-items: start;
  }

  .story-block--left .story-block__content,
  .story-block--left .story-card {
    order: initial;
  }
}

@media (max-width: 780px) {
  body {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 24%, #f0f4fb 24%, #f7f9fd 100%);
  }

  body.design-mode-light {
    background: linear-gradient(180deg, color-mix(in srgb, var(--color-panel) 92%, white) 0%, color-mix(in srgb, var(--color-surface-soft) 18%, white) 24%, #f4f7fb 24%, #fbfcff 100%);
  }

  .site-header__inner {
    align-items: center;
    justify-content: space-between;
    min-height: unset;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-header__menu {
    order: 3;
    display: none;
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
    padding: 0.8rem 0 0.1rem;
    border-top: 1px solid color-mix(in srgb, var(--header-text, #fff) 12%, transparent);
  }

  .site-header--menu-open .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .primary-nav {
    order: initial;
    width: 100%;
  }

  .primary-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    justify-content: flex-start;
  }

  .primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.15rem;
  }

  .site-header__actions--persistent {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 0 0 100%;
    width: 100%;
    gap: 0.75rem;
  }

  .button,
  .button--full {
    width: 100%;
  }

  .site-header__actions--persistent .button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
  }

  .button-row--hero .button {
    width: auto;
  }

  .button-row--hero {
    align-items: stretch;
  }

  .hero-cta,
  .hero-secondary-actions {
    align-items: stretch;
  }

  .hero-section {
    padding-top: 1.35rem;
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 164px;
    min-height: auto;
    padding: 1rem 0 1.6rem;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-copy.hero-copy--promo {
    padding: 0.85rem 0 0;
  }

  .hero-copy__title {
    max-width: none;
    font-size: clamp(2.55rem, 10.5vw, 3.6rem);
    line-height: 1.04;
  }

  .hero-section--promo .hero-copy__title {
    width: min(100%, calc(100vw - 20px));
    max-width: min(100%, calc(100vw - 20px));
    font-size: clamp(1.7rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
    word-break: break-word;
  }

  .hero-inline-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .site-header__actions .button--header-registration,
  .site-header__actions .button--header-login {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 48px;
    padding-inline: 0.95rem;
  }

  .hero-cta {
    order: 4;
    margin-bottom: 1rem;
  }

  .hero-bonus {
    order: 2;
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .hero-copy__summary {
    order: 5;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .hero-copy__summary--promo {
    order: initial;
  }

  .hero-inline-cta-row {
    order: 3;
  }

  .hero-secondary-actions {
    order: 6;
  }

  .hero-trust {
    order: 7;
  }

  .sports-strip {
    order: 8;
  }

  .button--hero-primary {
    width: 100%;
  }

  .hero-visual {
    gap: 0.9rem;
  }

  .hero-visual__media {
    border-radius: 18px;
  }

  .seo-visual-banner {
    padding: 1rem;
    min-height: 280px;
  }

  .seo-visual-banner__media > img {
    max-height: 280px;
  }

  .seo-phone-mockup {
    width: min(72%, 260px);
    margin-inline: auto;
  }

  .seo-laptop-mockup {
    width: min(108%, 560px);
    margin-inline: auto;
    transform: none;
  }

  .button--hero-register {
    min-height: 56px;
  }

  .app-page-hero {
    padding: clamp(1.3rem, 6vw, 2rem);
    border-radius: var(--radius-md);
  }

  .app-page-hero__content {
    gap: 1.25rem;
  }

  .app-page-hero__title {
    font-size: clamp(2.15rem, 9vw, 3.65rem);
  }

  .app-page-hero__brand-card {
    min-height: 120px;
  }

  .app-page-hero__brand-name {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .overview-tables,
  .benefit-list,
  .seo-list,
  .seo-pros-cons,
  .seo-cta-row,
  .hero-metrics,
  .hero-trust,
  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .custom-text-block--image-left .custom-text-block__content,
  .custom-text-block--image-right .custom-text-block__content {
    order: 1;
  }

  .custom-text-block--image-left .custom-text-block__media,
  .custom-text-block--image-right .custom-text-block__media {
    order: 2;
  }

  .site-footer__notice {
    flex-direction: column;
  }

  .legal-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .site-header__inner {
    gap: 0.75rem;
    padding: 0.75rem 0 0.85rem;
  }

  .site-header__actions--persistent {
    gap: 0.65rem;
  }

  .hero-section {
    padding-top: 0.9rem;
  }

  .hero-section.hero-section--promo {
    --hero-header-offset: 148px;
    min-height: auto;
    padding: 0.85rem 0 1.35rem;
  }

  .hero-copy .section-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-copy__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.03;
    margin: 0.75rem 0 0.85rem;
  }

  .hero-section--promo .hero-copy__title {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    font-size: clamp(1.55rem, 7.4vw, 2rem);
    margin-bottom: 0.85rem;
    word-break: break-word;
  }

  .hero-copy__summary--promo {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }

  .hero-inline-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.9rem;
  }

  .hero-inline-cta-button {
    min-height: 44px;
    padding: 0.68rem 0.9rem;
    font-size: 0.9rem;
  }

  .hero-bonus {
    width: min(100%, 420px);
    gap: 0.85rem;
    margin: 0 auto;
    padding: 1.3rem 1rem;
  }

  .hero-bonus__title {
    font-size: clamp(1.1rem, 5.4vw, 1.45rem);
  }

  .hero-bonus__button {
    width: min(100%, 280px);
    min-height: 48px;
    font-size: 0.9rem;
  }

  .app-page-hero {
    margin-bottom: 1rem;
    padding: 1.1rem;
  }

  .app-page-hero__content {
    gap: 1rem;
  }

  .app-page-hero__brand-card {
    align-items: flex-start;
    min-height: 104px;
    gap: 0.75rem;
  }

  .app-page-hero__brand-logo {
    width: 52px;
    height: 52px;
  }

  .app-page-hero__stars {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .app-page-hero__download {
    min-height: 52px;
  }

  .seo-table,
  .seo-table tbody,
  .seo-table tr,
  .seo-table th,
  .seo-table td {
    display: block;
    width: 100%;
  }

  .seo-table th {
    padding: 0.85rem 0.9rem 0.25rem;
  }

  .seo-table td {
    padding: 0 0.9rem 0.85rem;
  }

  .entry-content .internal-faq__grid,
  .entry-content dl {
    margin: 0.9rem 0 1.5rem;
  }

  .entry-content .faq-item__question,
  .entry-content dt {
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1rem;
  }

  .entry-content .faq-item__answer,
  .entry-content dd {
    padding-inline: 1rem;
  }

  .entry-content dd {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .entry-content dt::after {
    top: 0.85rem;
    right: 0.95rem;
    width: 1.7rem;
    height: 1.7rem;
  }

  .seo-steps li {
    min-height: 66px;
    padding: 1rem 1rem 1rem 4rem;
  }

  .seo-steps li::before {
    left: 1rem;
    width: 1.8rem;
    height: 1.8rem;
  }

  .site-brand {
    width: auto;
    max-width: calc(100% - 58px);
  }

  .primary-nav__list {
    gap: 0.8rem 1rem;
    justify-content: flex-start;
  }

  .button-row--hero .button {
    width: 100%;
  }

  .sports-strip {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .hero-inline-cta-row {
    grid-template-columns: 1fr;
  }
}
