@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --night: #08040e;
  --velvet: #100717;
  --brand: #4b007f;
  --brand-deep: #320052;
  --violet: #7c18d6;
  --lavender: #ca7dff;
  --mist: #f7f2ff;
  --smoke: #baaec6;
  --white: #fff;
  --muted: var(--smoke);
  --violet-deep: var(--brand-deep);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --line: rgb(202 125 255 / 20%);
  --line-strong: rgb(202 125 255 / 42%);
  --content: min(1680px, calc(100vw - 64px));
  --wide-content: min(1320px, calc(100vw - 48px));
  --reading: min(760px, 100%);
  --radius-media: 18px;
  --header-height: 70px;
  --section-space: clamp(52px, 5vw, 76px);
  --homepage-section-space: clamp(64px, 5vw, 76px);
  --mobile-feature-max: 390px;
  --mobile-game-max: 340px;
  --display: "Archivo", "Segoe UI", Arial, sans-serif;
  --text: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 58% 8%, rgb(75 0 127 / 15%), transparent 32rem),
    var(--night);
  color: var(--mist);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  z-index: 1;
}

.ambient-light {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-light span {
  position: absolute;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(124 24 214 / 22%), transparent 68%);
  filter: blur(28px);
  opacity: 0.72;
  animation: ambient-drift 16s ease-in-out infinite alternate;
}

.ambient-light span:first-child {
  top: 8%;
  right: -16%;
}

.ambient-light span:last-child {
  bottom: 8%;
  left: -20%;
  animation-delay: -8s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 4px;
}

::selection {
  background: var(--lavender);
  color: var(--night);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--night);
  font-weight: 700;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(11 6 18 / 1%);
  isolation: isolate;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(11 6 18 / 86%);
  box-shadow: 0 16px 44px rgb(0 0 0 / 26%);
  content: "";
  opacity: 0;
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header[data-scrolled="true"]::before {
  opacity: 1;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--content);
  height: 100%;
  margin-inline: auto;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 44px;
  overflow: hidden;
  flex: none;
}

.brand-logo__image {
  width: 150px;
  height: 44px;
  object-fit: cover;
  object-position: 50% 50%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgb(247 242 255 / 76%);
  font-size: 0.86rem;
  font-weight: 620;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--lavender);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(145deg, rgb(202 125 255 / 12%), rgb(75 0 127 / 20%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
  color: var(--mist);
  cursor: pointer;
}

.site-menu-toggle__icon,
.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.site-menu-toggle__icon {
  position: relative;
  display: block;
}

.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.site-menu-toggle__icon::before {
  top: -5px;
}

.site-menu-toggle__icon::after {
  top: 5px;
}

.site-header[data-menu-open="true"] .site-menu-toggle__icon {
  background: transparent;
}

.site-header[data-menu-open="true"] .site-menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header[data-menu-open="true"] .site-menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid rgb(226 174 255 / 70%);
  border-radius: 999px;
  background: var(--brand);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 18%),
    0 12px 34px rgb(75 0 127 / 24%);
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

.button--header {
  min-height: 42px;
  padding: 10px 20px;
}

.button--primary {
  min-height: 56px;
  padding-inline: 30px;
  font-size: 1rem;
}

.button--compact {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.86rem;
}

.signal-rail__controls {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.signal-rail__status {
  color: var(--mist);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.signal-rail__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--lavender), transparent);
  box-shadow: 0 0 12px rgb(202 125 255 / 48%);
}

.signal-rail__controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgb(75 0 127 / 24%);
  color: var(--mist);
  cursor: pointer;
  place-items: center;
}

.signal-rail__controls button:disabled {
  cursor: default;
  opacity: 0.34;
}

.hero {
  display: grid;
  align-items: center;
  min-height: clamp(500px, 30vw, 560px);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: var(--content);
  min-height: inherit;
  margin-inline: auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(30px, 3.5vw, 44px);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 {
  display: grid;
  max-width: 800px;
}

.hero__number {
  color: var(--lavender);
  font-size: clamp(4.6rem, 7vw, 6.6rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-shadow: 0 0 34px rgb(202 125 255 / 20%);
}

.hero__offer {
  margin-top: clamp(16px, 2vh, 22px);
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
}

.hero__lead {
  max-width: 740px;
  margin: clamp(20px, 2.4vh, 26px) 0 0;
  color: var(--mist);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero__support {
  max-width: 700px;
  margin: 14px 0 12px;
  color: var(--smoke);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero__seo-copy {
  max-width: 740px;
  margin: 0 0 20px;
  color: rgb(186 174 198 / 82%);
  font-size: 0.94rem;
}

.hero__visual {
  position: relative;
  width: 100%;
  height: clamp(400px, 30vw, 500px);
  min-height: 0;
  overflow: hidden;
  margin-left: 0;
  border-radius: var(--radius-media);
}

.hero__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--night) 0, transparent 27%);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius-media) 0 0 var(--radius-media);
  object-fit: cover;
  object-position: center;
  animation: hero-drift 10s ease-in-out infinite alternate;
}

.rebate-current {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: -12%;
  width: 52%;
  height: 4px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow:
    0 0 8px var(--lavender),
    0 0 28px rgb(202 125 255 / 66%);
  opacity: 0.84;
  transform: rotate(10deg) scaleX(0.9);
  transform-origin: left;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(202 125 255 / 70%), transparent);
  content: "";
  opacity: 0.45;
  transform: scaleX(0.35);
  animation: boda8-pulse 7s ease-in-out infinite;
}

.section__inner,
.rebate__inner {
  width: var(--content);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  margin-bottom: clamp(30px, 3.5vw, 48px);
}

.section-heading h2,
.rebate h2,
.experience h2 {
  max-width: 940px;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
}

.section-heading--center {
  display: block;
  text-align: center;
}

.button::after {
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 52%), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg) translateX(-220%);
  pointer-events: none;
}

.section-intro {
  width: var(--reading);
  margin: 20px 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.section-intro--center {
  margin-inline: auto;
}

.promotions {
  position: relative;
  background: var(--velvet);
}

.promotions::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  content: "";
}

.promo-feature,
.promo-card,
.game-zone,
.experience__inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-media);
  background: var(--night);
  isolation: isolate;
}

.promo-feature {
  min-height: clamp(390px, 36vw, 520px);
}

.promo-feature::after,
.game-zone::after,
.experience__inner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(11 6 18 / 97%) 0%, rgb(11 6 18 / 76%) 36%, transparent 70%);
  content: "";
}

.promo-feature img,
.promo-card img,
.game-zone img,
.experience__inner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-feature__content {
  position: absolute;
  inset: auto auto clamp(30px, 4vw, 54px) clamp(28px, 4vw, 54px);
  max-width: 500px;
}

.promo-value {
  margin: 0;
  color: var(--lavender);
  font-family: var(--display);
  font-size: clamp(4.6rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.promo-feature h3 {
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.promotion-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.promo-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.promo-card img {
  object-position: center;
}

.promo-card:nth-child(2) img {
  object-position: 61% center;
}

.promo-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgb(11 6 18 / 96%) 0%, rgb(11 6 18 / 16%) 80%);
}

.promo-card__content {
  position: absolute;
  inset: auto 22px 22px;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.promo-card__content .button {
  margin-top: auto;
}

.promo-card h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.promo-card h3 strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lavender);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
}

.rebate {
  position: relative;
  overflow: hidden;
}

.rebate::before {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(75 0 127 / 32%), transparent 68%);
  content: "";
}

.rebate__inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.rebate__copy {
  position: relative;
  z-index: 2;
}

.rebate__copy p,
.experience__content p {
  max-width: 520px;
  margin: 20px 0 28px;
  color: var(--smoke);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.rebate__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-media) + 8px);
  background: linear-gradient(145deg, rgb(247 242 255 / 12%), rgb(75 0 127 / 10%));
  box-shadow:
    0 40px 90px rgb(0 0 0 / 44%),
    inset 0 1px 0 rgb(255 255 255 / 12%);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  isolation: isolate;
}

.rebate__media::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, rgb(202 125 255 / 82%), transparent 28%, transparent 72%, rgb(124 24 214 / 72%), transparent);
  content: "";
  animation: rebate-orbit 10s linear infinite;
}

.rebate__media::after {
  position: absolute;
  z-index: 3;
  right: 3%;
  left: 3%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(202 125 255 / 84%), transparent);
  box-shadow: 0 0 20px rgb(202 125 255 / 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: rebate-scan 5.8s ease-in-out infinite;
}

.rebate__media picture {
  position: relative;
  z-index: 1;
  display: block;
}

.rebate__media img {
  width: 100%;
  border-radius: var(--radius-media);
}

.rebate__current {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 23%;
  width: 48%;
  height: 3px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow:
    0 0 10px var(--lavender),
    0 0 30px rgb(202 125 255 / 72%);
  transform: rotate(-7deg);
}

.games {
  background: var(--velvet);
}

.games-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.95fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  grid-template-areas:
    "slots live"
    "sports live";
  gap: 16px;
}

.game-zone {
  min-height: 280px;
}

.game-zone--slots {
  grid-area: slots;
}

.game-zone--live {
  grid-area: live;
}

.game-zone--sports {
  grid-area: sports;
}

.game-zone--live img {
  object-position: 62% center;
}

.game-zone__content {
  position: absolute;
  top: clamp(26px, 4vw, 50px);
  left: clamp(24px, 4vw, 50px);
}

.game-zone__content h3 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.experience {
  background: var(--night);
}

.experience__inner {
  width: var(--content);
  min-height: clamp(400px, 38vw, 520px);
  margin-inline: auto;
}

.experience__content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(28px, 6vw, 90px);
  max-width: 650px;
  transform: translateY(-50%);
}

.experience__inner::after {
  background: linear-gradient(90deg, rgb(11 6 18 / 99%) 0%, rgb(11 6 18 / 84%) 36%, transparent 70%);
}

.why-boda8,
.faq {
  background: var(--night);
}

.getting-started,
.sport-feature {
  background: var(--velvet);
}

.editorial-heading {
  max-width: 920px;
  margin-bottom: 32px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid {
  align-items: start;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.step-card,
.faq-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: linear-gradient(145deg, rgb(202 125 255 / 8%), rgb(16 7 23 / 92%));
}

.benefit-card h3,
.step-card h3,
.faq-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.benefit-card p,
.step-card p,
.faq-card p,
.sport-feature__content p {
  margin: 0;
  color: var(--smoke);
}

.step-card__number {
  display: block;
  margin-bottom: 20px;
  color: var(--lavender);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
}

.faq-card {
  padding: 0;
}

.faq-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  padding: clamp(22px, 2.3vw, 30px);
  cursor: pointer;
  list-style: none;
}

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

.faq-card summary h3 {
  margin: 0;
}

.faq-card__icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(202 125 255 / 34%);
  border-radius: 50%;
  background: rgb(75 0 127 / 20%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}

.faq-card__icon::before,
.faq-card__icon::after {
  position: absolute;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--lavender);
  content: "";
  transition: transform 180ms ease;
}

.faq-card__icon::after {
  transform: rotate(90deg);
}

.faq-card[open] {
  border-color: rgb(202 125 255 / 42%);
  box-shadow: 0 16px 42px rgb(75 0 127 / 12%);
}

.faq-card[open] .faq-card__icon::after {
  transform: rotate(0deg);
}

.faq-card__answer {
  padding: 0 clamp(22px, 2.3vw, 30px) clamp(22px, 2.3vw, 30px);
}

.sport-feature__inner {
  position: relative;
  width: var(--content);
  min-height: clamp(380px, 36vw, 480px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-media);
  isolation: isolate;
}

.sport-feature__inner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-feature__inner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(8 4 14 / 98%), rgb(8 4 14 / 72%) 48%, transparent 82%);
  content: "";
}

.sport-feature__content {
  display: flex;
  min-height: inherit;
  max-width: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
}

.sport-feature__content h2,
.editorial-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.sport-feature__content p {
  margin-block: 24px 30px;
}

.promo-card::before,
.game-zone::before,
.benefit-card::before,
.step-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 32%, rgb(202 125 255 / 16%) 48%, transparent 64%);
  content: "";
  opacity: 0;
  transform: translateX(-35%);
  pointer-events: none;
}

.final-cta {
  position: relative;
  min-height: clamp(380px, 38vw, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgb(11 6 18 / 55%), rgb(11 6 18 / 72%)),
    url("assets/brand/boda8-experience.webp") center / cover no-repeat;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  right: 10%;
  bottom: 15%;
  left: 10%;
  height: 3px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow:
    0 0 18px var(--lavender),
    0 0 64px rgb(202 125 255 / 70%);
  content: "";
  transform: rotate(-2deg);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 40px));
}

.final-cta h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.button--final {
  min-width: min(360px, calc(100vw - 48px));
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-2%, -2%, 0) scale(0.92);
  }

  to {
    transform: translate3d(8%, 6%, 0) scale(1.08);
  }
}

@keyframes boda8-pulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleX(0.28);
  }

  50% {
    opacity: 0.74;
    transform: scaleX(1);
  }
}

@keyframes rebate-orbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes rebate-scan {
  0%,
  18%,
  100% {
    top: 12%;
    opacity: 0;
  }

  28% {
    opacity: 0.72;
  }

  72% {
    opacity: 0.46;
  }

  82% {
    top: 88%;
    opacity: 0;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.01) translate3d(-0.4%, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(0.7%, -0.5%, 0);
  }
}

.promotion-slider {
  --promo-card-basis: calc((100% - 28px) / 3);
  --promo-clone-count: 3;
  --promo-gap: 14px;
  position: relative;
  overflow: hidden;
  padding-block: clamp(26px, 2vw, 32px);
  background:
    radial-gradient(circle at 18% 24%, rgb(104 18 168 / 20%), transparent 34%),
    linear-gradient(180deg, var(--night), var(--velvet));
}

.promotion-slider__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: 18px;
}

.promotion-slider__heading h2 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.promotion-slider__heading .section-intro {
  margin: 0;
}

.promotion-slider__shell {
  position: relative;
}

.promotion-slider__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.promotion-slider__viewport::-webkit-scrollbar {
  display: none;
}

.promotion-slider__track {
  display: flex;
  gap: var(--promo-gap);
  min-width: 100%;
}

.promotion-slide {
  position: relative;
  flex: 0 0 var(--promo-card-basis);
  min-height: clamp(170px, 9.4vw, 182px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, #33104e, #100617);
  scroll-snap-align: start;
  isolation: isolate;
}

.promotion-slide img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.promotion-slide.has-image-error img {
  display: none;
}

.promotion-slide__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(10 4 16 / 96%), rgb(10 4 16 / 56%) 72%, rgb(71 10 117 / 20%)),
    linear-gradient(0deg, rgb(10 4 16 / 90%), transparent 72%);
}

.promotion-slide__content {
  position: absolute;
  inset: 12px 16px;
  display: grid;
  grid-template-rows: 20px minmax(2.04em, auto) 2.7em 30px;
  align-items: flex-start;
  align-content: end;
  gap: 6px;
}

.promotion-slide__category {
  display: inline-flex;
  height: 20px;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid rgb(203 126 255 / 28%);
  border-radius: 999px;
  color: var(--lavender);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  background: rgb(91 15 146 / 44%);
}

.promotion-slide h3 {
  display: -webkit-box;
  max-width: 92%;
  min-height: 2.04em;
  margin: 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.03rem, 1.45vw, 1.35rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promotion-slide__description {
  display: -webkit-box;
  max-width: 92%;
  min-height: 2.7em;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promotion-slide__cta {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 0;
  padding: 7px 11px;
  border: 1px solid rgb(211 139 255 / 58%);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #9c2fe7, #5908a0);
  box-shadow: 0 0 18px rgb(156 47 231 / 24%);
}

.promotion-slider__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.promotion-slider__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--white);
  background: rgb(32 11 47 / 88%);
  cursor: pointer;
}

.promotion-slider__status {
  display: grid;
  grid-template-columns: 24px minmax(72px, 120px) 24px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.promotion-slider__progress {
  height: 2px;
  overflow: hidden;
  background: rgb(255 255 255 / 12%);
}

.promotion-slider__progress span {
  display: block;
  width: calc(100% / 17);
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  transform-origin: left;
  transition: width 350ms ease;
}

.js .promotion-slider.is-carousel-ready .promotion-slider__viewport {
  overflow: hidden;
  scroll-snap-type: none;
}

.js .promotion-slider.is-carousel-ready .promotion-slider__track {
  transition: transform 650ms var(--ease-out);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .site-nav a::after,
  .promo-card,
  .promo-card img,
  .promotion-slide,
  .promotion-slider__arrow,
  .game-zone,
  .game-zone img,
  .benefit-card,
  .step-card,
  .faq-card {
    transition-duration: 240ms;
    transition-property: transform, background-color, border-color, box-shadow;
    transition-timing-function: ease-out;
  }

  .site-header::before,
  [data-reveal] {
    transition-duration: 520ms;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .button:hover {
    border-color: #f0d2ff;
    background: #6500a5;
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 24%),
      0 16px 38px rgb(75 0 127 / 38%);
    transform: translateY(-1px);
  }

  .button:hover::after,
  .button:focus-visible::after {
    opacity: 1;
    transform: skewX(-18deg) translateX(650%);
    transition: transform 620ms ease, opacity 180ms ease;
  }

  .button:active {
    transform: scale(0.98);
  }

  .promo-card:hover img,
  .game-zone:hover img {
    transform: scale(1.025);
  }

  .promo-card:hover::before,
  .game-zone:hover::before,
  .benefit-card:hover::before,
  .step-card:hover::before {
    opacity: 1;
    transform: translateX(35%);
    transition: opacity 260ms ease, transform 720ms ease;
  }

  .promo-card:hover,
  .game-zone:hover,
  .benefit-card:hover,
  .step-card:hover {
    border-color: rgb(202 125 255 / 72%);
    box-shadow: 0 18px 54px rgb(75 0 127 / 24%);
    transform: translateY(-2px);
  }

  .faq-card:hover {
    border-color: rgb(202 125 255 / 54%);
  }

  .promotion-slide:hover {
    border-color: rgb(204 125 255 / 70%);
    box-shadow: 0 14px 38px rgb(91 9 147 / 28%);
    transform: translateY(-3px);
  }

  .promotion-slide:hover img {
    transform: scale(1.035);
  }

  .promotion-slider__arrow:hover {
    border-color: var(--lavender);
    background: var(--violet-deep);
  }
}

@media (min-width: 1200px) and (max-height: 920px) {
  .hero {
    min-height: 520px;
  }

  .hero__visual {
    height: 460px;
  }
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 48px);
  }

  .promotion-slider {
    --promo-card-basis: calc((100% - 14px) / 2);
    --promo-clone-count: 2;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero__visual {
    min-height: 460px;
  }

  .promotion-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  :root {
    --content: calc(100vw - 32px);
    --header-height: 60px;
    --section-space: 52px;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgb(11 6 18 / 96%);
    box-shadow:
      0 24px 64px rgb(0 0 0 / 54%),
      inset 0 1px 0 rgb(255 255 255 / 8%);
    font-size: 0.78rem;
    backdrop-filter: blur(20px) saturate(135%);
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 10px;
    background: rgb(202 125 255 / 5%);
  }

  .site-nav a:last-child {
    grid-column: 1 / -1;
  }

  .site-nav a::after {
    display: none;
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
  }

  .js .site-header[data-menu-open="true"] .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .js .site-menu-toggle {
    display: grid;
  }

  .js .signal-rail__controls {
    display: flex;
  }

  .promotion-slider {
    --promo-card-basis: 86%;
    --promo-clone-count: 2;
  }

  .promotion-slider__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promotion-slider__controls {
    justify-content: space-between;
  }

  .button--header {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero {
    position: relative;
    min-height: 0;
    isolation: isolate;
  }

  .hero__inner {
    position: relative;
    z-index: 0;
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 0;
    padding-block: 36px 40px;
  }

  .hero__copy {
    z-index: 2;
    max-width: 100%;
    padding: 18px 0 24px;
    text-shadow: 0 4px 22px rgb(8 4 14 / 72%);
  }

  .hero__number {
    font-size: clamp(5rem, 27vw, 8rem);
  }

  .hero__offer {
    margin-top: 20px;
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .hero__lead {
    margin-top: 26px;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .hero__support {
    margin-block: 12px 20px;
    font-size: 0.95rem;
  }

  .hero__visual {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100vw;
    height: 100%;
    min-height: 0;
    margin-left: calc((100vw - var(--content)) / -2);
    border-radius: 0;
  }

  .hero__visual img {
    border: 0;
    border-radius: 0;
    object-position: 70% center;
    opacity: 0.72;
  }

  .hero__visual::before {
    background:
      linear-gradient(90deg, rgb(8 4 14 / 98%) 0%, rgb(8 4 14 / 74%) 54%, rgb(8 4 14 / 30%) 100%),
      linear-gradient(0deg, var(--night) 0%, transparent 42%, rgb(8 4 14 / 32%) 100%);
  }

  .hero__visual::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: radial-gradient(circle at 72% 42%, rgb(124 24 214 / 14%), transparent 42%);
    content: "";
    pointer-events: none;
  }

  .rebate-current {
    top: 14%;
    left: 4%;
    width: 58%;
  }

  .section-heading {
    display: block;
  }

  .benefit-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 10px;
  }

  .step-card {
    display: grid;
    grid-template-areas:
      "number title"
      "number copy";
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 5px;
    padding: 16px 18px;
  }

  .step-card__number {
    grid-area: number;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    align-self: start;
    margin: 0;
    border: 1px solid rgb(202 125 255 / 36%);
    border-radius: 50%;
    background: rgb(75 0 127 / 22%);
    font-size: 0.9rem;
  }

  .step-card h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
    font-size: 1rem;
  }

  .step-card p {
    grid-area: copy;
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .faq-card summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 18px;
  }

  .faq-card summary h3 {
    font-size: 1.05rem;
  }

  .faq-card__icon {
    width: 30px;
    height: 30px;
  }

  .faq-card__answer {
    padding: 4px 18px 18px;
  }

  .editorial-heading {
    margin-bottom: 32px;
  }

  .sport-feature__inner {
    min-height: clamp(440px, 118vw, 500px);
  }

  .sport-feature__inner::after {
    background: linear-gradient(90deg, rgb(8 4 14 / 94%), rgb(8 4 14 / 68%));
  }

  .sport-feature__content {
    justify-content: center;
    padding: 24px;
  }

  .sport-feature__content p {
    margin-block: 18px 22px;
  }

  .sport-feature__content h2,
  .editorial-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .section-heading h2,
  .rebate h2,
  .experience h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .promo-feature {
    min-height: clamp(330px, 92vw, var(--mobile-feature-max));
  }

  .promo-feature img {
    object-position: 64% center;
  }

  .promo-feature::after {
    background: linear-gradient(0deg, rgb(11 6 18 / 98%) 0%, rgb(11 6 18 / 34%) 76%);
  }

  .promo-feature__content {
    inset: auto 20px 22px;
  }

  .promo-feature .button,
  .promo-card .button,
  .game-zone .button {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.84rem;
  }

  .promotion-rail,
  .games-grid {
    width: 100vw;
    margin-right: calc((100vw - var(--content)) / -2);
    margin-left: calc((100vw - var(--content)) / -2);
    padding-inline: calc((100vw - var(--content)) / 2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }

  .promotion-rail::-webkit-scrollbar,
  .games-grid::-webkit-scrollbar {
    display: none;
  }

  .promotion-rail {
    display: grid;
    grid-auto-columns: min(76vw, 300px);
    grid-auto-flow: column;
    grid-template-columns: none;
    align-items: stretch;
  }

  .promo-card {
    min-height: 0;
    aspect-ratio: 5 / 4;
    scroll-snap-align: start;
  }

  .benefit-grid {
    display: grid;
    width: 100vw;
    grid-auto-columns: min(82vw, 330px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-left: calc((100vw - var(--content)) / -2);
    padding-inline: calc((100vw - var(--content)) / 2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }

  .benefit-grid::-webkit-scrollbar {
    display: none;
  }

  .benefit-card {
    min-height: 250px;
    scroll-snap-align: start;
  }

  .rebate__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rebate__media {
    padding: 8px;
    transform: none;
  }

  .rebate__media picture {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-media);
    background: #fff;
  }

  .rebate__media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 74% center;
    background: #fff;
  }

  .rebate__current {
    right: 8%;
    bottom: 12%;
    width: 58%;
  }

  .games-grid {
    display: grid;
    grid-auto-columns: min(74vw, 320px);
    grid-auto-flow: column;
    grid-template-areas: none;
    grid-template-columns: none;
    grid-template-rows: clamp(280px, 82vw, var(--mobile-game-max));
  }

  .game-zone,
  .game-zone--slots,
  .game-zone--live,
  .game-zone--sports {
    grid-area: auto;
    min-height: 0;
    scroll-snap-align: start;
  }

  .game-zone::after {
    background: linear-gradient(0deg, rgb(11 6 18 / 82%), transparent 78%);
  }

  .game-zone__content {
    top: auto;
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .game-zone__content h3 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .experience__inner {
    min-height: clamp(500px, 135vw, 560px);
  }

  .experience__inner > img {
    object-position: 66% center;
  }

  .experience__inner::after {
    background: linear-gradient(90deg, rgb(11 6 18 / 92%), rgb(11 6 18 / 62%));
  }

  .experience__content {
    top: 50%;
    right: 24px;
    bottom: auto;
    left: 24px;
    transform: translateY(-50%);
  }

  .final-cta {
    min-height: 0;
    background-position: 68% center;
  }
}

@media (max-width: 440px) {
  .brand-logo,
  .brand-logo__image {
    width: 110px;
    height: 34px;
  }

  .site-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero__copy .button,
  .rebate__copy .button,
  .experience__content .button {
    width: 100%;
  }

  .promo-feature h3 {
    font-size: 2.9rem;
  }

  .promo-value {
    font-size: 5.6rem;
  }
}

@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;
  }

  .rebate-current,
  .rebate__current {
    opacity: 0.46;
  }

  .ambient-light,
  .section::after,
  .rebate__media::before,
  .rebate__media::after {
    display: none;
  }

  .hero__visual img {
    animation: none;
    transform: none;
  }

  .promotion-slide,
  .promotion-slide img,
  .promotion-slider__track,
  .promotion-slider__progress span {
    transition: none !important;
  }

  .promotion-slide:hover,
  .promotion-slide:hover img {
    transform: none;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #08040e;
}

.site-footer__inner {
  width: var(--content);
  margin-inline: auto;
  padding-block: 36px;
}

.site-footer__brand {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 760;
  text-decoration: none;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block: 20px;
}

.site-footer__nav a {
  color: var(--smoke);
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--white);
}

.site-footer__legal {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--smoke);
  font-size: .82rem;
}

@media (max-width: 640px) {
  .site-footer__inner { padding-block: 28px; }
  .site-footer__nav { gap: 10px 16px; }
}

/* Homepage 1.5.9: four-step conversion funnel */
.featured-promotions,
.explore-boda8 {
  padding-block: var(--homepage-section-space);
}

.featured-promotions {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgb(124 24 214 / 18%), transparent 34rem),
    var(--velvet);
}

.featured-promotions__inner,
.explore-boda8__inner {
  width: var(--content);
  margin-inline: auto;
}

.legacy-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.featured-promotion {
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-media);
  background: linear-gradient(145deg, rgb(202 125 255 / 10%), rgb(8 4 14 / 96%));
  box-shadow: 0 22px 52px rgb(0 0 0 / 22%);
}

.featured-promotion img {
  width: 100%;
  aspect-ratio: 2.56 / 1;
  object-fit: cover;
}

.featured-promotion__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 20px;
}

.featured-promotion small,
.featured-promotion strong,
.explore-card > span,
.explore-card strong {
  color: var(--lavender);
  font-family: var(--display);
  font-weight: 760;
}

.featured-promotion small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-promotion h3,
.explore-card h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.featured-promotion h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
}

.featured-promotion p,
.explore-card p {
  color: var(--smoke);
}

.featured-promotion p {
  margin: 12px 0 18px;
  font-size: 0.92rem;
}

.featured-promotion strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgb(226 174 255 / 64%);
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--mist);
  font-family: var(--display);
  font-weight: 720;
}

.text-link span {
  color: var(--lavender);
}

.explore-boda8 {
  background:
    radial-gradient(circle at 86% 50%, rgb(75 0 127 / 16%), transparent 32rem),
    var(--night);
}

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

.explore-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: linear-gradient(145deg, rgb(202 125 255 / 7%), rgb(16 7 23 / 82%));
}

.explore-card > span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.explore-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.explore-card p {
  margin: 12px 0 18px;
  font-size: 0.94rem;
}

.explore-card strong {
  align-self: end;
  margin-top: auto;
  font-size: 0.84rem;
}

.final-cta {
  min-height: 0;
  padding-block: var(--homepage-section-space);
}

.final-cta__content {
  padding-inline: 20px;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 0 0 26px;
  color: var(--smoke);
  font-size: 0.9rem;
}

.final-trust span::before {
  margin-right: 8px;
  color: var(--lavender);
  content: "\2022";
}

@media (hover: hover) and (pointer: fine) {
  .featured-promotion,
  .explore-card {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .featured-promotion:hover,
  .explore-card:hover {
    border-color: rgb(202 125 255 / 64%);
    box-shadow: 0 24px 56px rgb(75 0 127 / 20%);
    transform: translateY(-3px);
  }
}

@media (max-width: 840px) {
  :root {
    --homepage-section-space: 48px;
  }

  .hero__inner {
    min-height: 0;
    padding-block: 36px 40px;
  }

  .hero__copy {
    padding-block: 0;
  }

  .hero__lead {
    margin-top: 22px;
  }

  .hero__support {
    margin-block: 10px 12px;
  }

  .hero__seo-copy {
    margin-bottom: 18px;
  }

  .featured-promotions .section-heading,
  .explore-boda8 .section-heading {
    margin-bottom: 28px;
  }

  .featured-promotions__rail {
    width: 100vw;
    grid-auto-columns: min(82vw, 360px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-inline: calc((100vw - var(--content)) / -2);
    padding-inline: calc((100vw - var(--content)) / 2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }

  .featured-promotions__rail::-webkit-scrollbar {
    display: none;
  }

  .featured-promotion {
    scroll-snap-align: start;
  }

  .featured-promotion__body {
    padding: 18px;
  }

  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .explore-card {
    min-height: 190px;
    padding: 18px;
  }

  .explore-card h3 {
    font-size: clamp(1.22rem, 6vw, 1.55rem);
  }

  .explore-card p {
    margin-block: 10px 14px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .explore-card strong {
    font-size: 0.76rem;
  }

  .final-cta {
    min-height: 0;
    padding-block: 48px;
    background-position: 68% center;
  }

  .final-cta h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
}

@media (max-width: 440px) {
  .hero__copy .button,
  .final-cta .button {
    width: 100%;
  }

  .featured-promotion h3 {
    font-size: 1.45rem;
  }
}
