@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
       url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
       url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
       url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
       url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --bg-soft: #ece8e1;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-strong: #161515;
  --text: #181616;
  --text-soft: #716c68;
  --text-faint: #99918b;
  --line: rgba(36, 29, 26, 0.11);
  --line-strong: rgba(36, 29, 26, 0.18);
  --red: #ca171c;
  --red-bright: #e62c2f;
  --red-dark: #8e0d11;
  --gold: #d59a29;
  --gold-light: #f7d766;
  --shadow: 0 20px 70px rgba(34, 20, 16, 0.1);
  --header: rgba(255, 255, 255, 0.78);
  --card-selected: rgba(202, 23, 28, 0.045);
  --footer-text: #5a5858;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #0b0b0c;
    --bg-soft: #111113;
    --surface: #131315;
    --surface-raised: #19191b;
    --surface-strong: #f4f1eb;
    --text: #f5f2ed;
    --text-soft: #aaa4a0;
    --text-faint: #77716e;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --red: #e2262b;
    --red-bright: #ff4246;
    --red-dark: #9b1014;
    --gold: #e7ad3c;
    --gold-light: #ffe17a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --header: rgba(11, 11, 12, 0.8);
    --card-selected: rgba(226, 38, 43, 0.09);
    --footer-text: #5f5d5d;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: color 0.35s ease, background-color 0.35s ease;
}

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

a,
button,
label {
  touch-action: manipulation;
}

img,
svg {
  display: block;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

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

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header__brand,
.header__actions {
  display: flex;
  align-items: center;
}

.header__brand {
  flex: 0 0 auto;
}

.header__logo {
  width: 132px;
  height: 44px;
  object-fit: contain;
}

.header__actions {
  gap: 10px;
}

.header-link {
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: var(--red);
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #171515;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(24, 15, 13, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 15, 13, 0.18);
}

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

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  background: var(--red);
  border-radius: 9px;
  box-shadow: none;
}

.button--small svg {
  width: 18px;
  height: 18px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 15px 40px rgba(202, 23, 28, 0.23);
}

.button--primary:hover {
  box-shadow: 0 18px 48px rgba(202, 23, 28, 0.34);
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 710px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(135deg, transparent 55%, rgba(202, 23, 28, 0.04)),
    var(--bg);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -47%;
  width: 66vw;
  height: 66vw;
  min-width: 620px;
  min-height: 620px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 54px;
  padding-block: 76px 88px;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 740px;
  font-size: clamp(52px, 5.25vw, 82px);
  line-height: 0.98;
  font-weight: 800;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero__cta {
  position: relative;
  z-index: 5;
  margin-top: 34px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.hero__cta svg {
  width: 18px;
  height: 18px;
}

.trust-row {
  max-width: 640px;
  margin-top: 50px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
}

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.35;
}

.trust-item svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  margin-bottom: 2px;
  display: block;
  color: var(--text);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
  pointer-events: none;
}

.hero__visual::before {
  position: absolute;
  z-index: -3;
  width: 82%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(202, 23, 28, 0.16), rgba(202, 23, 28, 0) 68%);
  border-radius: 50%;
}

.hero__visual::after {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 4%;
  left: 4%;
  height: 24%;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 70%);
  filter: blur(14px);
  opacity: 0.55;
}

.hero__visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  height: auto;
  filter: drop-shadow(0 25px 24px rgba(21, 8, 5, 0.18));
  animation: hero-float 6s ease-in-out infinite;
}

.hero__orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.hero__orbit--one {
  width: 88%;
  aspect-ratio: 1;
  animation: orbit 22s linear infinite;
}

.hero__orbit--one::before,
.hero__orbit--two::before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold);
}

.hero__orbit--one::before {
  top: 13%;
  left: 13%;
}

.hero__orbit--two {
  width: 66%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.65;
  animation: orbit 17s linear infinite reverse;
}

.hero__orbit--two::before {
  right: 7%;
  bottom: 20%;
  width: 6px;
  height: 6px;
  background: var(--red-bright);
  box-shadow: 0 0 18px var(--red-bright);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-chip--top {
  top: 17%;
  left: -2%;
  animation: chip-float 5.5s ease-in-out infinite;
}

.floating-chip--bottom {
  right: 1%;
  bottom: 19%;
  color: #fff;
  background: var(--red);
  border-color: transparent;
  animation: chip-float 5.5s 0.9s ease-in-out infinite reverse;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero__glow--one {
  top: 13%;
  left: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(213, 154, 41, 0.1), transparent 70%);
}

.hero__glow--two {
  right: 4%;
  bottom: 1%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(202, 23, 28, 0.13), transparent 70%);
}

.bonus-section {
  padding: 112px 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  font-weight: 800;
}

.section-heading > p:last-child,
.final-cta__inner > div > p:last-child {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.bonus-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 30px;
}

.bonus-picker fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.bonus-card {
  position: relative;
  min-height: 184px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 21px;
  overflow: hidden;
  color: var(--text);
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(29, 18, 15, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.bonus-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0.001;
}

.bonus-card__radio {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 20px;
  height: 20px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card__radio::after {
  position: absolute;
  inset: 4px;
  content: "";
  background: var(--red);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bonus-card input:checked ~ .bonus-card__radio {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(202, 23, 28, 0.1);
}

.bonus-card input:checked ~ .bonus-card__radio::after {
  opacity: 1;
  transform: scale(1);
}

.bonus-card:has(input:checked) {
  background: var(--card-selected);
  border-color: var(--red);
  box-shadow: 0 14px 42px rgba(202, 23, 28, 0.11);
}

.bonus-card:has(input:focus-visible) {
  outline: 3px solid color-mix(in srgb, var(--red) 38%, transparent);
  outline-offset: 3px;
}

.bonus-card__art {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.bonus-card:hover .bonus-card__art {
  transform: translateY(-3px) scale(1.045);
}

.bonus-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.bonus-card__art--crown,
.bonus-card__art--fruit,
.bonus-card__art--shine,
.bonus-card__art--seven {
  background: transparent;
}

.bonus-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.bonus-card__amount {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.bonus-card__amount strong {
  color: var(--red);
  font-size: 30px;
  font-weight: 800;
}

.bonus-card__game {
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.bonus-card__meta {
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 12px;
}

.bonus-card__tag {
  position: absolute;
  top: 0;
  left: 24px;
  padding: 6px 10px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--red);
  border-radius: 0 0 8px 8px;
}

.bonus-picker__action {
  position: sticky;
  top: 108px;
  padding: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.selection-summary {
  margin: 0 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.selection-summary span {
  margin-bottom: 8px;
  display: block;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-summary strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.button--wide {
  width: 100%;
  min-height: 58px;
  padding-inline: 18px;
  text-align: center;
}

.action-note {
  margin: 17px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-faint);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.action-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-section {
  padding: 110px 0 122px;
  background: var(--bg);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 44px;
  right: 17%;
  left: 17%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 14px);
}

.step {
  position: relative;
  z-index: 1;
  padding: 38px 30px 32px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 15px 46px rgba(29, 18, 15, 0.04);
}

.step__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--line-strong);
  font-size: 26px;
  font-weight: 800;
}

.step__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--red-bright), var(--red-dark));
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(202, 23, 28, 0.2);
}

.step__icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.step p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #b71116;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.final-cta::before {
  top: -280px;
  right: -100px;
  width: 590px;
  height: 590px;
}

.final-cta::after {
  right: 135px;
  bottom: -310px;
  width: 470px;
  height: 470px;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  min-height: 330px;
  padding-block: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.final-cta .eyebrow,
.final-cta h2 em {
  color: var(--gold-light);
}

.final-cta__inner > div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.button--light {
  min-width: 190px;
  color: #181616;
  background: #fff;
  box-shadow: 0 16px 40px rgba(56, 0, 2, 0.2);
}

.footer {
  padding: 60px 0 30px;
  color: #fff;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-partners {
  padding-bottom: 32px;
}

.partners-title {
  margin: 0 0 24px;
  color: #4b4949;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 28px;
}

.partner-item {
  opacity: 0.5;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-item:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1);
}

.partner-item img {
  width: auto;
  height: 30px;
  max-width: 98px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 32px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-copy-row {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  margin: 0;
  color: var(--footer-text);
  font-size: 13px;
}

.responsible-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-img {
  width: auto;
  height: 40px;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.badge-img:hover {
  opacity: 1;
}

.footer-legal-text {
  padding-bottom: 12px;
}

.footer-legal-text p {
  margin: 0 0 10px;
  color: #4a4747;
  font-size: 11px;
  line-height: 1.7;
}

.footer-legal-text a,
.footer-legal-text strong {
  color: #656161;
}

.footer-legal-text a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

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

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-13px) rotate(1deg); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 24px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .bonus-picker {
    grid-template-columns: 1fr;
  }

  .bonus-picker__action {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
    align-items: center;
    gap: 18px 24px;
  }

  .selection-summary {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .action-note {
    grid-column: 2;
    margin-top: -6px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 64px 66px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .eyebrow {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .trust-row {
    margin-inline: auto;
    text-align: left;
  }

  .hero__visual {
    min-height: 475px;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hero__visual img {
    width: min(92%, 470px);
  }

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

  .steps::before {
    display: none;
  }

  .final-cta__inner {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .final-cta .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .header__logo {
    width: 112px;
    height: 38px;
  }

  .header-link {
    display: none;
  }

  .button--small {
    width: 40px;
    min-height: 40px;
    padding: 9px;
    border-radius: 9px;
  }

  .button--small span {
    display: none;
  }

  .hero__grid {
    gap: 0;
    padding-block: 24px 44px;
  }

  .hero__content {
    display: contents;
    text-align: left;
  }

  .hero__content .eyebrow {
    order: 1;
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .hero__content h1 {
    order: 2;
  }

  h1 {
    font-size: clamp(37px, 10.7vw, 44px);
    line-height: 0.99;
  }

  .hero__lead {
    order: 3;
    max-width: 340px;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__cta {
    order: 5;
    width: 100%;
    margin-top: 8px;
  }

  .trust-row {
    order: 6;
    margin: 28px 0 0;
    padding-top: 22px;
    gap: 8px;
  }

  .trust-item {
    gap: 7px;
    font-size: 9px;
  }

  .trust-item svg {
    width: 20px;
    height: 20px;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .hero__visual {
    order: 4;
    width: 100%;
    min-height: 330px;
    height: 330px;
    margin: -24px auto -4px;
  }

  .hero__visual img {
    width: min(98%, 340px);
  }

  .floating-chip {
    padding: 8px 10px;
    font-size: 8px;
  }

  .floating-chip--top {
    top: 10%;
    left: 0;
  }

  .floating-chip--bottom {
    right: 0;
    bottom: 10%;
  }

  .bonus-section,
  .steps-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .section-heading > p:last-child {
    margin-top: 15px;
    font-size: 14px;
  }

  .bonus-picker fieldset {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bonus-card {
    min-height: 136px;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 17px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .bonus-card__art {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .bonus-card__amount {
    padding-right: 12px;
    font-size: 13px;
  }

  .bonus-card__amount strong {
    font-size: 25px;
  }

  .bonus-card__game {
    margin-top: 5px;
    font-size: 13px;
  }

  .bonus-card__meta {
    margin-top: 5px;
    font-size: 11px;
  }

  .bonus-card__radio {
    top: 13px;
    right: 13px;
    width: 18px;
    height: 18px;
  }

  .bonus-card__tag {
    left: 18px;
    padding: 5px 8px;
    font-size: 7px;
  }

  .bonus-picker__action {
    padding: 21px;
    display: block;
    border-radius: 16px;
  }

  .selection-summary {
    margin: 0 0 18px;
    padding: 0 0 17px;
    border-bottom: 1px solid var(--line);
  }

  .action-note {
    margin-top: 14px;
  }

  .step {
    padding: 32px 24px 28px;
  }

  .final-cta__inner {
    min-height: 360px;
    padding-block: 65px;
    gap: 30px;
  }

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

  .footer {
    padding-top: 48px;
  }

  .partners-logos {
    gap: 19px;
  }

  .partner-item img {
    height: 25px;
    max-width: 82px;
  }

  .footer-copy-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
