:root {
  --chocolate-950: #250803;
  --chocolate-900: #351006;
  --chocolate-800: #571706;
  --cream: #fff4dc;
  --cream-deep: #f6dfb4;
  --orange: #ff5b00;
  --orange-hot: #ff3d00;
  --yellow: #ffc323;
  --lime: #b8e400;
  --red: #ec3826;
  --ink: #301006;
  --white: #fffdf7;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow-hard: 0 10px 0 rgba(52, 12, 3, 0.35);
  --shadow-float: 0 28px 70px rgba(24, 5, 0, 0.35);
  --page-pad: clamp(18px, 4vw, 64px);
  --display: "Arial Black", "Trebuchet MS", Impact, sans-serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

[data-release-state="deferred"] {
  display: none !important;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--chocolate-950);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.page-noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-one {
  top: -20vw;
  right: -5vw;
  background: var(--orange);
}

.ambient-two {
  bottom: -30vw;
  left: -15vw;
  background: var(--red);
}

.confetti-canvas {
  position: fixed;
  z-index: 200;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-shell {
  width: min(1380px, 100%);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1440px, 100%);
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--page-pad);
  transform: translateX(-50%);
}

.brand {
  display: block;
  width: clamp(152px, 17vw, 214px);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.environment-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 244, 220, 0.25);
  border-radius: 999px;
  color: rgba(255, 244, 220, 0.75);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.sound-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 244, 220, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sound-toggle:hover {
  border-color: rgba(255, 244, 220, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.sound-bars {
  display: flex;
  height: 16px;
  align-items: center;
  gap: 2px;
}

.sound-bars i {
  display: block;
  width: 3px;
  border-radius: 4px;
  background: var(--yellow);
  animation: sound-wave 0.7s ease-in-out infinite alternate;
}

.sound-bars i:nth-child(1) {
  height: 7px;
}

.sound-bars i:nth-child(2) {
  height: 15px;
  animation-delay: -0.25s;
}

.sound-bars i:nth-child(3) {
  height: 10px;
  animation-delay: -0.5s;
}

.sound-toggle[aria-pressed="false"] .sound-bars i {
  height: 3px;
  animation: none;
  background: rgba(255, 244, 220, 0.45);
}

@keyframes sound-wave {
  to {
    transform: scaleY(0.45);
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(12px, 3vw, 56px);
  overflow: hidden;
  padding: 132px max(var(--page-pad), calc((100vw - 1380px) / 2 + var(--page-pad))) 108px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    url("./Картинки/8%25.png") center / cover no-repeat,
    radial-gradient(circle at 72% 43%, rgba(255, 92, 0, 0.27) 0, rgba(255, 92, 0, 0.09) 26%, transparent 54%),
    radial-gradient(circle at 6% 72%, rgba(236, 56, 38, 0.15), transparent 28%),
    linear-gradient(138deg, #220703 0%, #371006 48%, #210703 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 14%;
  left: -6vw;
  width: 32vw;
  height: 54vw;
  border: 2px solid rgba(255, 195, 35, 0.1);
  border-radius: 48% 52% 42% 58%;
  content: "";
  transform: rotate(19deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 600px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(184, 228, 0, 0.13), 0 0 20px rgba(184, 228, 0, 0.7);
}

.hero h1,
.section-heading h2,
.how-intro h2,
.order-cta h2,
.result-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 700px;
  font-size: clamp(62px, 7.2vw, 122px);
  text-shadow: 0 8px 0 rgba(22, 3, 0, 0.18);
}

.hero-long {
  display: inline-block;
  font-size: 0.78em;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.hero h1 em,
.section-heading h2 em,
.how-intro h2 em,
.order-cta h2 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 195, 35, 0.18);
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 244, 220, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  margin-top: 32px;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 244, 220, 0.16);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.06em;
}

.hero-proof span {
  color: rgba(255, 244, 220, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.scroll-cta {
  appearance: none;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 0 8px 0 24px;
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.scroll-cta .scroll-cta-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 20px;
}

.scroll-cta:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-3px);
}

.scroll-cta:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.post-wheel-cta {
  display: none;
}

.game-column {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wheel-aura {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(95%, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 0, 0.36), rgba(255, 72, 0, 0.08) 56%, transparent 72%);
  filter: blur(10px);
  transform: translate(-50%, -54%);
  animation: aura-pulse 3.4s ease-in-out infinite;
}

@keyframes aura-pulse {
  50% {
    opacity: 0.72;
    transform: translate(-50%, -54%) scale(1.05);
  }
}

.wheel-stage {
  position: relative;
  width: min(47vw, 630px);
  min-width: 430px;
  aspect-ratio: 1;
  filter: drop-shadow(0 35px 32px rgba(16, 2, 0, 0.5));
}

.wheel-stage::before {
  position: absolute;
  z-index: -1;
  inset: 7%;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.28);
  box-shadow: 0 0 90px rgba(255, 84, 0, 0.46);
  content: "";
}

.wheel-rotor {
  position: absolute;
  inset: 2.5%;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  will-change: transform;
}

.wheel-rotor svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wheel-segment {
  transition: filter 0.2s ease;
}

.wheel-segment-label {
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.04em;
  paint-order: stroke fill;
  pointer-events: none;
}

.wheel-bulb {
  transform-box: fill-box;
  transform-origin: center;
  animation: bulb-glow 1s ease-in-out infinite alternate;
}

.wheel-bulb:nth-of-type(3n) {
  animation-delay: -0.45s;
}

.wheel-bulb:nth-of-type(4n) {
  animation-delay: -0.75s;
}

@keyframes bulb-glow {
  from {
    opacity: 0.65;
    filter: drop-shadow(0 0 1px #fff0a0);
  }
  to {
    opacity: 1;
    filter: drop-shadow(0 0 7px #fff2a5);
    transform: scale(1.16);
  }
}

.wheel-pointer {
  position: absolute;
  z-index: 12;
  top: -1%;
  left: 50%;
  width: 58px;
  height: 87px;
  filter: drop-shadow(0 10px 6px rgba(49, 10, 2, 0.4));
  transform: translateX(-50%);
  transform-origin: 50% 14%;
}

.wheel-pointer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 7px solid #661a08;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.wheel-pointer span {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 58px solid var(--red);
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  transform: translateX(-50%);
}

.wheel-pointer span::after {
  position: absolute;
  top: -52px;
  left: -7px;
  width: 14px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.wheel-pointer.is-ticking {
  animation: pointer-tick 0.16s ease-in-out infinite alternate;
}

@keyframes pointer-tick {
  from {
    transform: translateX(-50%) rotate(-10deg);
  }
  to {
    transform: translateX(-50%) rotate(6deg);
  }
}

.spin-button {
  position: absolute;
  z-index: 14;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(104px, 10vw, 138px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 0;
  overflow: hidden;
  border: 7px solid #5a1506;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff6d7, #ffc83b);
  color: var(--ink);
  box-shadow:
    0 0 0 5px var(--orange),
    0 13px 0 #6f1b07,
    0 19px 30px rgba(39, 6, 0, 0.45),
    inset 0 5px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spin-button img {
  width: clamp(54px, 5.3vw, 74px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin-top: -8px;
}

.spin-button span {
  margin-top: -6px;
  font-family: var(--display);
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.spin-button:hover:not(:disabled) {
  filter: saturate(1.12) brightness(1.06);
  transform: translate(-50%, calc(-50% - 5px)) rotate(-2deg);
}

.spin-button:active:not(:disabled) {
  box-shadow:
    0 0 0 5px var(--orange),
    0 5px 0 #6f1b07,
    0 10px 20px rgba(39, 6, 0, 0.4),
    inset 0 5px 0 rgba(255, 255, 255, 0.7);
  transform: translate(-50%, calc(-50% + 6px));
}

.spin-button:disabled {
  cursor: wait;
  filter: grayscale(0.15) brightness(0.88);
}

.spin-button[data-state="won"] {
  background: linear-gradient(145deg, #d9ff39, #a7d500);
  cursor: pointer;
}

.game-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -4px;
}

.attempt-pill,
.spin-status {
  margin: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.attempt-pill {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  background: var(--lime);
  color: var(--ink);
  text-transform: uppercase;
}

.attempt-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(48, 16, 6, 0.12);
}

.spin-status {
  color: rgba(255, 244, 220, 0.67);
}

.game-note {
  max-width: 500px;
  margin: 13px 0 0;
  color: rgba(255, 244, 220, 0.46);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.game-note a {
  text-decoration-color: rgba(255, 244, 220, 0.35);
  text-underline-offset: 3px;
}

.floating-chip {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  border: 3px solid var(--chocolate-950);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 950;
  box-shadow: var(--shadow-hard);
  pointer-events: none;
  animation: chip-float 3.6s ease-in-out infinite;
}

.chip-discount {
  top: 11%;
  left: 0;
  width: 106px;
  height: 58px;
  border-radius: 17px;
  background: var(--lime);
  font-size: 27px;
  transform: rotate(-9deg);
}

.chip-gift {
  right: -1%;
  bottom: 22%;
  width: 124px;
  height: 48px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 14px;
  letter-spacing: -0.04em;
  transform: rotate(8deg);
  animation-delay: -1.3s;
}

.chip-spark {
  top: 16%;
  right: 5%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--yellow);
  font-size: 28px;
  box-shadow: 0 10px 0 rgba(88, 18, 4, 0.8);
  animation-delay: -0.7s;
}

@keyframes chip-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero-marquee {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 244, 220, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 244, 220, 0.27);
  white-space: nowrap;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.hero-marquee-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  gap: 28px;
  padding: 13px 28px 13px 0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.hero-marquee b {
  color: var(--orange);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.promos {
  position: relative;
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(88px, 10vw, 150px);
  background-color: var(--cream);
  background-image: url("./Картинки/13%25.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: min(68vw, 820px) auto;
  color: var(--ink);
}

.promos::before,
.promos::after {
  position: absolute;
  z-index: 0;
  border: 3px solid rgba(255, 91, 0, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.promos::before {
  top: 4%;
  right: 7%;
  width: 210px;
  height: 210px;
}

.promos::after {
  top: 9%;
  right: 10%;
  width: 150px;
  height: 150px;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.55fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 56px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: var(--orange-hot);
}

.section-heading h2,
.how-intro h2,
.order-cta h2 {
  font-size: clamp(54px, 7.1vw, 106px);
}

.section-heading > p:last-child,
.how-intro > p:last-child {
  max-width: 470px;
  margin: 0 0 5px;
  color: rgba(48, 16, 6, 0.68);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.promo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.promo-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--orange);
  box-shadow: 0 12px 0 var(--ink);
  transform: translateZ(0);
}

.promo-card-wide {
  grid-column: 1 / -1;
  min-height: 390px;
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.55s ease;
}

.promo-card:not(.promo-card-wide) img {
  object-position: center;
}

.promo-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.promo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(39, 7, 1, 0.82));
  content: "";
  pointer-events: none;
}

.promo-card-meta {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
}

.promo-card-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(33, 5, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.promo-card-meta strong {
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 43px);
  letter-spacing: -0.06em;
}

.promotion-catalog {
  position: relative;
  isolation: isolate;
  padding-top: clamp(82px, 9vw, 130px);
  padding-bottom: clamp(82px, 9vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 195, 35, 0.34), transparent 24%),
    linear-gradient(180deg, #fff6e4 0%, #f8e3bb 100%);
  color: var(--ink);
}

.promotion-catalog::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255, 91, 0, 0.055);
  border-radius: 50%;
  content: "";
}

.promotion-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.promotion-catalog .section-kicker {
  margin-bottom: 16px;
  color: var(--orange-hot);
}

.promotion-catalog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.6vw, 98px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.94;
  text-transform: uppercase;
}

.promotion-catalog h2 em {
  color: var(--orange);
  font-style: normal;
}

.promotion-catalog-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: rgba(48, 16, 6, 0.68);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
}

.promotion-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promotion-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 5px 0 var(--ink);
}

.promotion-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--promotion-color, var(--orange));
  content: "";
}

.promotion-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.promotion-number {
  color: rgba(48, 16, 6, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.promotion-color-mark {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--promotion-color, var(--orange));
  box-shadow: 0 2px 0 rgba(48, 16, 6, 0.2);
}

.promotion-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: uppercase;
}

.promotion-summary {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: rgba(48, 16, 6, 0.78);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promotion-channels {
  margin: 7px 0 15px;
  color: rgba(48, 16, 6, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

.promotion-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(48, 16, 6, 0.13);
  color: rgba(48, 16, 6, 0.75);
  font-size: 11px;
  font-weight: 850;
}

.promotion-meta span:last-child {
  text-align: right;
}

.promotion-catalog-note {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(48, 16, 6, 0.48);
  font-size: 12px;
  line-height: 1.5;
}

.how {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 110px);
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
}

.how-intro .section-kicker {
  color: var(--yellow);
}

.how-intro h2 {
  font-size: clamp(54px, 6.5vw, 98px);
}

.how-intro > p:last-child {
  margin-top: 32px;
  color: rgba(255, 244, 220, 0.64);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 54px 80px minmax(0, 0.7fr) minmax(180px, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  border-top: 1px solid rgba(255, 244, 220, 0.16);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 244, 220, 0.16);
}

.step-number {
  color: rgba(255, 244, 220, 0.34);
  font-family: var(--display);
  font-size: 14px;
}

.step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 28px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.steps li:hover .step-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-8deg) scale(1.06);
}

.steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: rgba(255, 244, 220, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.order-cta {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.54fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding-block: 74px;
  border-radius: 44px 44px 0 0;
  background: var(--orange);
  color: var(--ink);
}

.order-cta::before {
  position: absolute;
  top: -70%;
  left: 30%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(48, 16, 6, 0.13);
  border-radius: 50%;
  content: "";
}

.order-cta > div:not(.order-actions) {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 9vw, 150px);
}

.order-cta .section-kicker {
  color: var(--ink);
}

.order-cta h2 em {
  color: var(--yellow);
}

.order-mascot {
  position: absolute;
  z-index: 1;
  bottom: -21%;
  left: -6%;
  width: clamp(210px, 29vw, 400px);
  filter: drop-shadow(0 25px 20px rgba(55, 9, 1, 0.25));
  opacity: 0.95;
  transform: rotate(7deg);
}

.order-actions,
.result-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.action-button {
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.action-button span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
}

.action-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 0 rgba(48, 16, 6, 0.25);
}

.action-button-dark {
  background: var(--ink);
  color: var(--cream);
}

.action-button-dark span {
  background: var(--orange);
  color: var(--white);
}

.action-button-light {
  background: transparent;
  color: var(--ink);
}

.action-button-light span {
  background: var(--yellow);
}

.action-button-orange {
  background: var(--orange);
  color: var(--white);
}

.action-button-orange span {
  background: var(--yellow);
  color: var(--ink);
}

.rules {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--cream);
  color: var(--ink);
}

.rules details {
  border-top: 1px solid rgba(48, 16, 6, 0.2);
  border-bottom: 1px solid rgba(48, 16, 6, 0.2);
}

.rules summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -0.04em;
  list-style: none;
  text-transform: uppercase;
}

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

.rules summary i,
.rules summary i::before {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease;
}

.rules summary i::before {
  transform: rotate(90deg);
}

.rules details[open] summary i::before {
  transform: rotate(0deg);
}

.rules-content {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding: 0 0 30px;
  color: rgba(48, 16, 6, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.rules-content p {
  margin: 0;
}

.site-footer {
  width: 100%;
  border-top: 9px solid var(--orange);
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 91, 0, 0.19), transparent 32%),
    var(--chocolate-950);
  color: var(--cream);
}

.site-footer-inner {
  display: grid;
  width: min(1380px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-inline: auto;
  padding: 46px var(--page-pad) calc(46px + env(safe-area-inset-bottom));
}

.footer-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 244, 220, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.footer-copy strong {
  color: var(--cream);
  font-weight: 850;
}

.footer-company {
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}

.footer-contact span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-phone {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-phone:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.result-dialog {
  width: min(620px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  margin: auto;
  overflow: visible;
  border: 0;
  border-radius: 35px;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.result-dialog::backdrop {
  background: rgba(29, 5, 1, 0.79);
  backdrop-filter: blur(10px);
  animation: backdrop-in 0.25s ease both;
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }
}

.result-card {
  position: relative;
  max-height: calc(100svh - 24px);
  overflow: auto;
  padding: clamp(34px, 6vw, 62px);
  border: 4px solid var(--ink);
  border-radius: 35px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 195, 35, 0.32), transparent 23%),
    var(--cream);
  box-shadow: 0 16px 0 var(--orange), 0 42px 90px rgba(19, 3, 0, 0.56);
  animation: result-pop 0.52s cubic-bezier(0.2, 1.4, 0.45, 1) both;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

@keyframes result-pop {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.88) rotate(-2deg);
  }
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dialog-close:hover {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(8deg);
}

.result-burst {
  position: absolute;
  top: 22px;
  right: 75px;
  color: var(--orange);
}

.result-burst span {
  position: absolute;
  animation: star-pop 1.2s ease-in-out infinite alternate;
}

.result-burst span:nth-child(1) {
  right: 0;
  font-size: 22px;
}

.result-burst span:nth-child(2) {
  top: 22px;
  right: 28px;
  color: var(--red);
  font-size: 13px;
  animation-delay: -0.5s;
}

.result-burst span:nth-child(3) {
  top: -2px;
  right: 52px;
  color: var(--lime);
  font-size: 16px;
  animation-delay: -0.8s;
}

@keyframes star-pop {
  to {
    transform: rotate(30deg) scale(1.25);
  }
}

.result-kicker {
  margin: 0 0 12px;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.result-dialog h2 {
  color: var(--ink);
  font-size: clamp(54px, 10vw, 86px);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.result-prize {
  margin: 18px 0 7px;
  color: var(--orange-hot);
  font-family: var(--display);
  font-size: clamp(23px, 4.3vw, 36px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.05;
  text-transform: uppercase;
}

.result-description {
  max-width: 500px;
  margin: 0;
  color: rgba(48, 16, 6, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.placeholder-warning {
  margin-top: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(236, 56, 38, 0.36);
  border-radius: 12px;
  background: rgba(236, 56, 38, 0.08);
  color: #7a1f13;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.promo-code-wrap {
  margin-top: 24px;
}

.promo-code-wrap > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(48, 16, 6, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.promo-code-row {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 20px;
  border: 3px dashed var(--orange);
  border-radius: 18px;
  background: #fffaf0;
}

.promo-code-row strong {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-code-row button {
  min-height: 49px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-code-row button:hover {
  background: var(--orange);
  transform: scale(1.03);
}

.promo-code-row button[data-copied="true"] {
  background: #5e7900;
}

.result-conditions {
  margin: 14px 0 0;
  color: rgba(48, 16, 6, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.result-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.result-actions .action-button {
  min-height: 56px;
  padding-left: 17px;
  font-size: 11px;
}

.result-hint {
  margin: 16px 0 0;
  color: rgba(48, 16, 6, 0.48);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
    padding-inline: var(--page-pad);
  }

  .wheel-stage {
    width: min(51vw, 590px);
    min-width: 410px;
  }

  .chip-discount {
    left: 3%;
  }

  .chip-gift {
    right: 1%;
  }

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

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

  .how-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.7fr);
    align-items: end;
    gap: 30px;
  }

  .how-intro .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }

  .how-intro > p:last-child {
    margin: 0 0 6px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 126px;
    padding-bottom: 96px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 750px;
    font-size: clamp(64px, 13vw, 108px);
  }

  .hero-lead {
    max-width: 650px;
  }

  .scroll-cta {
    margin-bottom: 20px;
  }

  .game-column {
    padding-top: 22px;
  }

  .wheel-stage {
    width: min(86vw, 620px);
    min-width: 0;
  }

  .chip-discount {
    left: 7%;
  }

  .chip-gift {
    right: 7%;
  }

  .chip-spark {
    right: 11%;
  }

  .promotion-catalog-heading {
    grid-template-columns: 1fr;
  }

  .promotion-catalog-heading > p {
    max-width: 650px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: -8px;
  }

  .promo-card,
  .promo-card-wide {
    min-height: 300px;
  }

  .order-cta {
    width: calc(100% - 28px);
    min-height: 0;
    grid-template-columns: 1fr;
    margin-inline: 14px;
    padding: 72px var(--page-pad);
    border-radius: 36px 36px 0 0;
  }

  .order-cta > div:not(.order-actions) {
    padding-left: clamp(70px, 19vw, 160px);
  }

  .order-actions {
    width: min(520px, 100%);
    margin-left: auto;
  }

  .order-mascot {
    bottom: auto;
    top: 35px;
    left: -70px;
    width: 260px;
  }

}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    padding: 15px var(--page-pad);
  }

  .brand {
    width: 140px;
  }

  .environment-badge {
    display: none;
  }

  .sound-toggle {
    min-height: 40px;
    padding-inline: 13px;
  }

  .sound-toggle #soundLabel {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    padding-top: 105px;
    padding-bottom: 82px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(55px, 17.2vw, 86px);
    line-height: 0.85;
  }

  .hero-long {
    font-size: 0.72em;
    letter-spacing: -0.09em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
  }

  .hero-proof > div {
    display: block;
    padding: 0 10px;
  }

  .hero-proof strong,
  .hero-proof span {
    display: block;
  }

  .hero-proof strong {
    margin-bottom: 4px;
    font-size: 27px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .scroll-cta {
    display: none;
  }

  .post-wheel-cta {
    appearance: none;
    display: flex;
    width: min(calc(100% - 36px), 440px);
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    margin: 22px auto 14px;
    padding: 7px 8px 7px 22px;
    border: 2px solid var(--cream);
    border-radius: 999px;
    background: rgba(43, 11, 5, 0.54);
    color: var(--cream);
    font: 900 14px/1 var(--sans);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
  }

  .post-wheel-cta span:last-child {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    font-size: 22px;
  }

  .post-wheel-cta:disabled {
    cursor: wait;
    opacity: 0.7;
  }

  .promotion-catalog {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .promotion-catalog::before {
    display: none;
  }

  .promotion-catalog h2 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 0.94;
  }

  .promotion-catalog-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

  .promotion-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .promotion-item {
    min-height: 0;
    padding: 18px;
    border-radius: 19px;
    box-shadow: 0 4px 0 var(--ink);
  }

  .promotion-item h3 {
    font-size: 20px;
  }

  .game-column {
    width: calc(100% + 20px);
    margin-inline: -10px;
  }

  .wheel-stage {
    width: min(calc(100vw - 8px), 520px);
  }

  .wheel-pointer {
    width: 48px;
    height: 72px;
  }

  .wheel-pointer::before {
    width: 29px;
    height: 29px;
    border-width: 6px;
  }

  .wheel-pointer span {
    top: 18px;
    border-top-width: 48px;
    border-right-width: 20px;
    border-left-width: 20px;
  }

  .wheel-pointer span::after {
    top: -44px;
    height: 29px;
  }

  .spin-button {
    width: clamp(94px, 28vw, 118px);
    border-width: 6px;
    box-shadow:
      0 0 0 4px var(--orange),
      0 10px 0 #6f1b07,
      0 16px 24px rgba(39, 6, 0, 0.4),
      inset 0 4px 0 rgba(255, 255, 255, 0.8);
  }

  .spin-button img {
    width: clamp(48px, 15vw, 64px);
  }

  .spin-button span {
    font-size: 12px;
  }

  .floating-chip {
    border-width: 2px;
    box-shadow: 0 7px 0 rgba(52, 12, 3, 0.35);
  }

  .chip-discount {
    top: 9%;
    left: 2%;
    width: 82px;
    height: 45px;
    border-radius: 14px;
    font-size: 21px;
  }

  .chip-gift {
    top: calc(min(calc(100vw - 8px), 520px) - 36px);
    right: 2px;
    bottom: auto;
    width: 90px;
    height: 36px;
    font-size: 11px;
  }

  .chip-spark {
    top: 14%;
    right: 2%;
    width: 43px;
    height: 43px;
    font-size: 21px;
  }

  .game-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }

  .game-note {
    padding-inline: 20px;
  }

  .hero-marquee-group {
    gap: 20px;
    font-size: 11px;
  }

  .promos::before,
  .promos::after {
    display: none;
  }

  .promos {
    background-size: 150% auto;
    background-position: 70% top;
  }

  .section-heading {
    gap: 23px;
    margin-bottom: 34px;
  }

  .section-heading .section-kicker {
    margin-bottom: -7px;
  }

  .section-heading h2,
  .how-intro h2,
  .order-cta h2 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.86;
  }

  .section-heading > p:last-child,
  .how-intro > p:last-child {
    font-size: 15px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .promo-card-wide {
    grid-column: auto;
  }

  .promo-card,
  .promo-card-wide {
    min-height: 245px;
    border-width: 3px;
    box-shadow: 0 8px 0 var(--ink);
  }

  .promo-card img {
    min-height: 245px;
  }

  .promo-card-meta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .promo-card-meta strong {
    font-size: 28px;
  }

  .how-intro {
    display: block;
  }

  .how-intro .section-kicker {
    margin-bottom: 18px;
  }

  .how-intro > p:last-child {
    margin-top: 24px;
  }

  .steps li {
    min-height: 0;
    grid-template-columns: 38px 58px minmax(0, 1fr);
    gap: 12px;
    padding-block: 25px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .steps p {
    grid-column: 2 / -1;
    padding-left: 70px;
    margin-top: -10px;
  }

  .order-cta {
    width: calc(100% - 16px);
    margin-inline: 8px;
    padding: 62px 20px 45px;
    border-radius: 28px 28px 0 0;
  }

  .order-cta > div:not(.order-actions) {
    padding-left: 72px;
  }

  #orderTitle em {
    display: inline-block;
    font-size: 0.54em;
    letter-spacing: -0.095em;
    white-space: nowrap;
  }

  .order-mascot {
    top: 37px;
    left: -61px;
    width: 190px;
  }

  .action-button {
    min-height: 57px;
    font-size: 12px;
  }

  .rules-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
    padding-top: 38px;
    padding-bottom: calc(38px + env(safe-area-inset-bottom));
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-phone {
    font-size: clamp(27px, 9vw, 34px);
  }

  .result-dialog {
    width: calc(100% - 14px);
    max-height: calc(100svh - 14px);
  }

  .result-card {
    max-height: calc(100svh - 14px);
    padding: 38px 20px 26px;
    border-width: 3px;
    border-radius: 27px;
    box-shadow: 0 10px 0 var(--orange), 0 28px 65px rgba(19, 3, 0, 0.55);
  }

  .dialog-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .result-dialog h2 {
    font-size: clamp(49px, 16vw, 73px);
  }

  .result-prize {
    padding-right: 20px;
  }

  .promo-code-row {
    min-height: 65px;
    padding-left: 14px;
  }

  .promo-code-row strong {
    font-size: clamp(19px, 7vw, 27px);
  }

  .promo-code-row button {
    min-height: 45px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-long {
    font-size: 0.7em;
  }

  .hero-proof > div {
    padding-inline: 7px;
  }

  .hero-proof strong {
    font-size: 23px;
  }

  .promo-code-row {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }

  .promo-code-row strong {
    text-align: center;
  }
}

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

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

  .wheel-rotor {
    transition-duration: 1.1s !important;
  }
}
