:root {
  --ink: #0d0c0a;
  --brown: #34312b;
  --paper: #fbf8f2;
  --paper-deep: #eee8de;
  --gold: #d9ba7c;
  --gold-bright: #f9c35c;
  --gold-dark: #9d5e16;
  --line: rgba(52, 49, 43, 0.18);
  --container: 1208px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
  scroll-padding-top: 80px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--brown);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mascot-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

@keyframes headline-shimmer {
  0% {
    background-position: 180% 0;
  }

  52%,
  100% {
    background-position: -80% 0;
  }
}

@keyframes background-breathe {
  from {
    scale: 1;
  }

  to {
    scale: 1.055;
  }
}

@keyframes glow-breathe {
  from {
    opacity: 0.86;
    scale: 0.96;
  }

  to {
    opacity: 1;
    scale: 1.06;
  }
}

@keyframes background-sway {
  from {
    rotate: -1.75deg;
  }

  to {
    rotate: 1.75deg;
  }
}

@keyframes sparkle-twinkle {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: scale(0.3) rotate(-12deg);
  }

  5%,
  11% {
    opacity: var(--sparkle-opacity, 0.84);
    transform: scale(1) rotate(8deg);
  }
}

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

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h2 {
  margin-bottom: 42px;
  font-size: 54px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

:where(
  .hero-copy,
  .hero h1,
  .hero .lead,
  .campaign-intro,
  .campaign-feature .lead,
  .opportunity-list,
  .wheel-copy,
  .countdown-section h2,
  .coupon-panel h2,
  .reason-section h2,
  .draw-section h2,
  .draw-grid,
  .smart-card h2,
  .smart-card > p,
  .smart-list
) {
  max-width: 100%;
}

.button {
  max-width: 100%;
}

.section {
  position: relative;
  padding: 96px 0;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

.motion-ready .reveal.reveal-disabled {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-ready.motion-started .hero-copy > * {
  animation: hero-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready.motion-started .hero-copy > :nth-child(2) {
  animation-delay: 100ms;
}

.motion-ready.motion-started .hero-copy > :nth-child(3) {
  animation-delay: 190ms;
}

.motion-ready.motion-started .hero-copy > :nth-child(4) {
  animation-delay: 280ms;
}

.section--dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 38%, rgba(143, 91, 30, 0.34), transparent 48%),
    #0d0b09;
}

.section--brown {
  color: var(--paper);
  background: var(--brown);
}

.lead {
  font-size: 26px;
  line-height: 1.22;
}

.eyebrow {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--paper);
  background: var(--brown);
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button--ghost {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}

.button-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 80px;
  color: #060606;
  background: rgba(253, 251, 247, 0.98);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  color: var(--paper);
  background: rgba(52, 49, 43, 0.97);
  box-shadow: 0 12px 32px rgba(13, 11, 9, 0.15);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  height: 80px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
}

.brand {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-header.is-scrolled .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

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

.language-switch {
  display: inline-flex;
  gap: 4px;
}

.language-switch a {
  display: grid;
  width: 68px;
  height: 48px;
  place-items: center;
  border: 1px solid #d4d0ca;
  border-radius: 5px;
  color: #33302c;
  background: #cbc8c2;
  font-size: 16px;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.language-switch a[aria-current="page"] {
  border-color: #d4d0ca;
  background: #fcfaf6;
}

.site-header.is-scrolled .language-switch a {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--paper);
  background: transparent;
}

.site-header.is-scrolled .language-switch a[aria-current="page"] {
  color: var(--brown);
  background: var(--paper);
}

.header-account {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 18px;
  border-color: var(--brown);
  color: var(--paper);
  background: var(--brown);
  font-size: 13px;
}

.site-header.is-scrolled .header-account {
  display: inline-flex;
  border-color: var(--paper);
  color: var(--brown);
  background: var(--paper);
}

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

.hero {
  position: relative;
  height: 821px;
  height: max(821px, calc(100svh - 80px));
  overflow: hidden;
  color: var(--paper);
  background: #100b07 url("../img/campaign/hero-bg.webp") center top / cover no-repeat;
}

@media (min-width: 1921px) {
  .hero {
    background-image: url("../img/campaign/bg_width.webp");
  }
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 62%,
    rgba(13, 11, 9, 0.16) 72%,
    rgba(13, 11, 9, 0.68) 91%,
    #0d0b09 100%
  );
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  height: 100%;
  padding-top: 332px;
}

.hero-copy {
  width: 780px;
}

.age-badge {
  position: absolute;
  top: 91px;
  left: 24px;
  display: inline-flex;
  min-width: 80px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 210, 156, 0.58);
  border-radius: 999px;
  background: rgba(13, 11, 9, 0.28);
  font-size: 16px;
}

.hero h1 {
  position: relative;
  width: 740px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #9d5e16 0%, #f9c35c 26%, #fffed7 66%, #f9c35c 93%, #9d5e16 100%);
  background-clip: text;
  color: transparent;
  font-size: 90px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.01;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1::after {
  position: absolute;
  inset: 0;
  content: attr(data-title);
  background:
    linear-gradient(
      105deg,
      transparent 38%,
      rgba(255, 255, 255, 0.22) 43%,
      rgba(255, 255, 255, 0.92) 47%,
      #fff 50%,
      rgba(255, 255, 255, 0.92) 53%,
      rgba(255, 255, 255, 0.22) 57%,
      transparent 62%
    );
  background-position: 180% 0;
  background-repeat: no-repeat;
  background-size: 220% 100%;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.98))
    drop-shadow(0 0 15px rgba(255, 255, 255, 0.72));
  pointer-events: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.motion-ready.motion-started .hero-copy > h1 {
  animation: hero-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.motion-ready.motion-started .hero-copy > h1::after {
  animation: headline-shimmer 13.2s cubic-bezier(0.45, 0, 0.2, 1) 1.1s infinite both;
}

.hero .lead {
  width: 610px;
  margin-bottom: 48px;
  color: #fff;
  font-size: 29px;
  letter-spacing: -0.018em;
  line-height: 1.05;
}

.hero .button {
  min-width: 231px;
  border-color: #5c554a;
  background: rgba(52, 49, 43, 0.92);
}

.ambient-sparkles {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-sparkles span {
  --sparkle-size: 6px;
  --sparkle-opacity: 0.84;

  position: absolute;
  top: var(--sparkle-y);
  left: var(--sparkle-x);
  width: var(--sparkle-size);
  height: var(--sparkle-size);
  border-radius: 50%;
  opacity: 0;
  background: #fffdf0;
  box-shadow: 0 0 12px 3px rgba(255, 224, 159, 0.52);
  mix-blend-mode: screen;
  animation: sparkle-twinkle var(--sparkle-duration) ease-in-out var(--sparkle-delay) infinite;
}

.ambient-sparkles span::before,
.ambient-sparkles span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 250, 225, 0.92), transparent);
  transform: translate(-50%, -50%);
}

.ambient-sparkles span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ambient-sparkles span:nth-child(1) {
  --sparkle-x: 12%;
  --sparkle-y: 20%;
  --sparkle-size: 5px;
  --sparkle-duration: 6.2s;
  --sparkle-delay: -2.4s;
}

.ambient-sparkles span:nth-child(2) {
  --sparkle-x: 82%;
  --sparkle-y: 16%;
  --sparkle-size: 8px;
  --sparkle-duration: 7.6s;
  --sparkle-delay: -5.1s;
}

.ambient-sparkles span:nth-child(3) {
  --sparkle-x: 72%;
  --sparkle-y: 48%;
  --sparkle-size: 4px;
  --sparkle-duration: 5.4s;
  --sparkle-delay: -1.3s;
}

.ambient-sparkles span:nth-child(4) {
  --sparkle-x: 90%;
  --sparkle-y: 72%;
  --sparkle-size: 6px;
  --sparkle-duration: 8.2s;
  --sparkle-delay: -6.7s;
}

.ambient-sparkles span:nth-child(5) {
  --sparkle-x: 53%;
  --sparkle-y: 13%;
  --sparkle-size: 4px;
  --sparkle-duration: 6.8s;
  --sparkle-delay: -3.8s;
}

.ambient-sparkles span:nth-child(6) {
  --sparkle-x: 39%;
  --sparkle-y: 84%;
  --sparkle-size: 7px;
  --sparkle-duration: 7.9s;
  --sparkle-delay: -5.6s;
}

.ambient-sparkles span:nth-child(7) {
  --sparkle-x: 7%;
  --sparkle-y: 58%;
  --sparkle-size: 3px;
  --sparkle-duration: 5.8s;
  --sparkle-delay: -4.2s;
}

.ambient-sparkles span:nth-child(8) {
  --sparkle-x: 59%;
  --sparkle-y: 68%;
  --sparkle-size: 5px;
  --sparkle-duration: 7.2s;
  --sparkle-delay: -0.9s;
  --sparkle-opacity: 0.72;
}

.hero {
  isolation: isolate;
}

.hero-inner {
  z-index: 2;
}

.dual-promo {
  display: grid;
  height: 368px;
  place-items: center;
  color: var(--paper);
  background: #0d0b09;
  text-align: center;
}

.dual-promo h2 {
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
}

.dual-promo p {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
}

.campaign-feature {
  position: relative;
  height: 1180px;
  overflow: hidden;
  color: #fff;
  background: #0d0b09;
  isolation: isolate;
}

.campaign-feature::before,
.campaign-feature::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.campaign-feature::before {
  z-index: 0;
  inset: 0;
  background: url("../img/campaign/back-to-school-bg.webp") center bottom / cover no-repeat;
  scale: 1;
  transform-origin: center bottom;
  animation: background-breathe 10s ease-in-out infinite alternate;
}

.campaign-feature::after {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.72) 8%, rgba(13, 11, 9, 0) 27%, rgba(13, 11, 9, 0) 73%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%),
    linear-gradient(90deg, rgba(13, 11, 9, 0.34), rgba(13, 11, 9, 0.04)),
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}

.campaign-feature .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 128px;
}

.campaign-feature-copy {
  width: 100%;
}

.campaign-intro {
  width: 730px;
  padding: 54px 36px 44px;
  border: 1px solid rgba(220, 188, 128, 0.42);
  border-radius: 34px;
  background: rgba(27, 20, 15, 0.4);
  backdrop-filter: blur(9px);
}

.campaign-date {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 8px 28px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 25px;
  font-weight: 600;
}

.campaign-feature h2 {
  margin: 18px 0 38px;
  background: linear-gradient(90deg, #bd7921, #ffe3a9, #e0a84f);
  background-clip: text;
  color: transparent;
  font-size: 76px;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-transform: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-feature .lead {
  width: 610px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.28;
}

.campaign-feature h3 {
  margin: 300px 0 34px 36px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.16;
}

.opportunity-list {
  display: grid;
  width: 1140px;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.opportunity {
  display: grid;
  min-height: 160px;
  align-items: start;
  gap: 22px;
  padding: 32px 34px;
  border: 1px solid rgba(220, 188, 128, 0.48);
  border-radius: 28px;
  background: rgba(27, 20, 15, 0.43);
  backdrop-filter: blur(8px);
  grid-template-columns: 48px 1fr;
}

.opportunity p {
  margin: 0;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.25;
}

.opportunity strong {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.wheel-section {
  position: relative;
  height: 1028px;
  overflow: hidden;
  color: var(--paper);
  background: #0d0b09;
}

.wheel-section::before,
.wheel-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
}

.wheel-section::before {
  background: url("../img/campaign/wheel-bg-desktop.webp") center / cover no-repeat;
  scale: 1;
  transform: translateX(20%);
  transform-origin: 68% 52%;
  animation: background-breathe 10s ease-in-out infinite alternate;
}

.wheel-section::after {
  background: linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.72) 8%, rgba(13, 11, 9, 0) 27%, rgba(13, 11, 9, 0) 73%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%);
}

.wheel-section .container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 118px;
}

.wheel-copy {
  width: 585px;
}

.wheel-copy h2 {
  margin-bottom: 34px;
  font-size: 53px;
}

.numbered-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0 0 54px;
  padding: 0;
  list-style: none;
}

.numbered-list::before {
  content: none;
}

.numbered-list li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 20px;
  bottom: -20px;
  left: 15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.6);
  content: "";
  pointer-events: none;
}

.numbered-list li {
  position: relative;
  display: grid;
  min-height: 104px;
  align-items: start;
  gap: 26px;
  padding-top: 5px;
  font-size: 22px;
  line-height: 1.25;
  grid-template-columns: 44px 1fr;
}

.numbered-list span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.wheel-section .button {
  width: 310px;
  min-width: 310px;
  border-color: var(--paper);
  color: var(--brown);
  background: var(--paper);
}

.wheel-section .button--ghost {
  color: var(--paper);
  background: transparent;
}

#prizes {
  height: 712px;
  padding-top: 99px;
  overflow: hidden;
  background: #0d0b09;
  isolation: isolate;
}

#prizes::before,
#prizes::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

#prizes::before {
  z-index: 0;
  inset: -10%;
  background: radial-gradient(circle at 53% 25%, rgba(123, 82, 48, 0.78), transparent 53%);
  scale: 0.96;
  transform-origin: 53% 25%;
  animation: glow-breathe 16s ease-in-out infinite alternate;
}

#prizes::after {
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.72) 8%, rgba(13, 11, 9, 0) 27%, rgba(13, 11, 9, 0) 73%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%);
}

#prizes > .container {
  position: relative;
  z-index: 2;
}

#prizes h2 {
  margin-bottom: 66px;
}

.prize-slider {
  --prize-slider-inset: 20px;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: var(--prize-slider-inset);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding-left: var(--prize-slider-inset);
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
  cursor: grab;
}

@media (min-width: 701px) {
  .prize-slider {
    --prize-slider-inset: max(24px, calc((100vw - var(--container)) / 2));

    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-right: var(--prize-slider-inset);
    padding-left: var(--prize-slider-inset);
  }
}

.prize-slider::-webkit-scrollbar {
  display: none;
}

.prize-slider:active {
  cursor: grabbing;
}

.prize-slider:focus {
  outline: none;
}

.prize-slider.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.prize-slider.is-jumping {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.prize-track {
  display: flex;
  width: max-content;
  gap: 80px;
}

.prize-card {
  --prize-notch-radius: 14px;
  --prize-notch-x: 102px;

  position: relative;
  flex: 0 0 756px;
  height: 369px;
  padding: 48px 70px 42px 166px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-mask:
    radial-gradient(circle at var(--prize-notch-x) 0, transparent var(--prize-notch-radius), #000 calc(var(--prize-notch-radius) + 1px)) top / 100% 50.1% no-repeat,
    radial-gradient(circle at var(--prize-notch-x) 100%, transparent var(--prize-notch-radius), #000 calc(var(--prize-notch-radius) + 1px)) bottom / 100% 50.1% no-repeat;
  mask:
    radial-gradient(circle at var(--prize-notch-x) 0, transparent var(--prize-notch-radius), #000 calc(var(--prize-notch-radius) + 1px)) top / 100% 50.1% no-repeat,
    radial-gradient(circle at var(--prize-notch-x) 100%, transparent var(--prize-notch-radius), #000 calc(var(--prize-notch-radius) + 1px)) bottom / 100% 50.1% no-repeat;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.prize-card::before,
.prize-card::after {
  display: none;
}

.prize-number {
  position: absolute;
  z-index: 1;
  bottom: 42px;
  left: 28px;
  color: #ebcd8b;
  font-size: 42px;
  font-weight: 600;
}

.prize-perforation {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 102px;
  width: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.prize-card-content {
  display: grid;
  height: 100%;
  align-content: start;
  grid-template-rows: 180px auto;
  row-gap: 24px;
}

.prize-logo {
  align-self: center;
  width: auto;
  max-width: 360px;
  max-height: 180px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}

.prize-logo--igra {
  width: 350px;
}

.prize-logo--gulliver {
  width: 320px;
}

.prize-logo--orchestra {
  width: 270px;
}

.prize-logo--marwin {
  width: 300px;
}

.prize-card p {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.countdown-section {
  position: relative;
  display: grid;
  height: 665px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--gold-bright);
  background: #0d0b09;
  isolation: isolate;
  text-align: center;
}

.countdown-section::before,
.countdown-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.countdown-section::before {
  z-index: 0;
  inset: -7%;
  background: url("../img/campaign/bg-count.webp") center / cover no-repeat;
  transform-origin: center;
  animation: background-sway 12s ease-in-out infinite alternate;
}

.countdown-section::after {
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.82) 11%, rgba(13, 11, 9, 0) 31%);
}

.countdown-section > .container {
  position: relative;
  z-index: 2;
}

.countdown-section h2 {
  margin-bottom: 50px;
  font-size: 53px;
  font-weight: 600;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 78px;
  margin-bottom: 46px;
}

.countdown-item {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.countdown-item:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -43px;
  content: ":";
  font-size: 45px;
}

.countdown-value {
  display: grid;
  width: 118px;
  height: 126px;
  place-items: center;
  border: 1px solid #ddad31;
  border-radius: 34px;
  font-size: 49px;
  font-weight: 300;
}

.countdown-label {
  font-size: 24px;
}

.countdown-notes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.countdown-notes span {
  padding: 7px 18px;
  border: 1px solid rgba(206, 153, 49, 0.5);
  border-radius: 10px;
  font-size: 19px;
}

.benefits-section {
  height: 832px;
  padding-top: 118px;
  overflow: hidden;
  text-align: center;
}

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

.benefits-section h2 {
  max-width: none;
  margin-inline: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.benefits-heading-accent {
  color: #9a722c;
}

.benefits-heading-mobile-accent {
  color: inherit;
}

.benefits-title-break--mobile {
  display: none;
}

.benefit-grid {
  display: grid;
  width: 100%;
  gap: 28px;
  margin-bottom: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
  display: grid;
  height: 295px;
  align-content: center;
  justify-items: center;
  padding: 30px;
  border: 1px solid #e2ded7;
  border-radius: 20px;
  background: #fffefa;
  box-shadow: 0 8px 22px rgba(52, 49, 43, 0.06);
}

.benefit-card img {
  width: 74px;
  height: 74px;
  margin-bottom: 25px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.benefits-button {
  min-width: 310px;
}

.participation-section {
  height: 784px;
  padding-top: 103px;
  text-align: center;
}

.participation-section h2 {
  margin-bottom: 58px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.steps-grid {
  display: grid;
  width: min(1400px, calc(100vw - 80px));
  gap: 50px;
  margin-bottom: 54px;
  margin-left: 50%;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%);
}

.step-card {
  display: flex;
  min-width: 0;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  position: relative;
  display: grid;
  width: 184px;
  height: 184px;
  flex: 0 0 184px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(52, 49, 43, 0.12);
}

.step-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.step-number {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -4px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--brown);
  box-shadow: 0 5px 10px rgba(52, 49, 43, 0.18);
  font-size: 14px;
}

.step-card h3 {
  max-width: 300px;
  margin: 30px 0 0;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.participation-section .button {
  min-width: 310px;
}

.section-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 22px 0 0;
  color: #77736d;
  font-size: 18px;
}

.section-note-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: #6d6962;
  background: #e9e6e0;
  font-weight: 500;
}

.section-note-text {
  min-width: 0;
}

.coupon-section {
  display: grid;
  height: 694px;
  place-items: center;
  padding: 0;
  text-align: center;
}

.coupon-panel h2 {
  margin-bottom: 13px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.coupon-panel .lead {
  margin-bottom: 56px;
}

.coupon-slider {
  width: 100%;
}

.coupon-slider:focus {
  outline: none;
}

.coupon-row {
  display: grid;
  gap: 64px;
  margin-bottom: 56px;
  grid-template-columns: repeat(3, 1fr);
}

.coupon {
  display: grid;
  width: 360px;
  height: 192px;
  align-content: center;
  gap: 8px;
  border-radius: 14px;
  color: #fff;
  background: var(--brown);
  font-size: 26px;
  line-height: 1.15;
}

.coupon[aria-hidden="true"] {
  display: none;
}

.coupon strong {
  color: var(--gold);
  font-weight: 400;
}

.coupon-section .section-note {
  margin-top: 0;
}

.increase-section {
  height: 1037px;
  padding-top: 119px;
  color: #fff;
  background:
    linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.72) 8%, rgba(13, 11, 9, 0.18) 22%, rgba(13, 11, 9, 0.18) 78%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%),
    linear-gradient(rgba(10, 9, 8, 0.18), rgba(10, 9, 8, 0.25)),
    url("../img/campaign/bg-chance.webp") center / cover no-repeat,
    #0c0b09;
  text-align: center;
}

.chance-intro h2 {
  max-width: 1050px;
  margin: 0 auto 17px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.chance-intro p {
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 27px;
}

.chance-cards {
  display: grid;
  gap: 28px;
  margin-bottom: 62px;
  text-align: left;
  grid-template-columns: repeat(3, 1fr);
}

.chance-card {
  min-height: 393px;
  padding: 34px 28px;
  border: 1px solid var(--gold);
  border-radius: 24px;
  background: rgba(20, 17, 14, 0.18);
}

.chance-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
  padding: 13px;
  border-radius: 16px;
  background: rgba(80, 72, 62, 0.4);
  object-fit: contain;
}

.chance-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 400;
}

.chance-card p,
.chance-card li {
  font-size: 17px;
  line-height: 1.24;
}

.chance-card p {
  margin-bottom: 10px;
}

.chance-card ul {
  margin: 12px 0 0;
  padding-left: 24px;
}

.chance-card li::marker {
  color: var(--gold);
}

.chance-button {
  min-width: 310px;
  border-color: #9a722c;
  background: #9a722c;
}

.section-note--light {
  color: #fff;
}

.section-note--light .section-note-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.reason-section {
  height: 698px;
  padding-top: 124px;
}

.reason-section .container {
  display: grid;
  align-items: start;
  gap: 0;
  grid-template-columns: 490px 1fr;
}

.reason-section h2 {
  width: 480px;
  margin: 0;
  font-weight: 400;
  line-height: 1.15;
}

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

.reason-card {
  position: relative;
  display: flex;
  min-height: 442px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 12px;
  border-left: 0;
}

.reason-card + .reason-card {
  border-left: 1px solid #dcd7cf;
}

.reason-card span {
  color: #dad8d3;
  font-size: 84px;
  font-weight: 400;
}

.reason-card h3 {
  position: absolute;
  top: 300px;
  right: 12px;
  left: 12px;
  margin: 0;
  hyphens: none;
  overflow-wrap: normal;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  word-break: normal;
}

.draw-section {
  height: 1131px;
  padding-top: 115px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.62) 8%, rgba(13, 11, 9, 0.08) 22%, rgba(13, 11, 9, 0.08) 78%, rgba(13, 11, 9, 0.68) 93%, #0d0b09 100%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.04) 30%, rgba(8, 5, 3, 0.42) 58%, rgba(8, 5, 3, 0.92) 100%),
    url("../img/campaign/bg-raffle.jpg") left center / auto 100% no-repeat,
    #0c0907;
}

.draw-section > .container {
  position: relative;
  z-index: 2;
}

.draw-section h2 {
  width: 850px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.draw-grid {
  position: relative;
  width: 540px;
  margin: 42px 0 42px auto;
  padding-left: 46px;
}

.draw-card {
  position: relative;
  margin-bottom: 38px;
}

.draw-card::before {
  position: absolute;
  top: 6px;
  left: -51px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff7ea;
  content: "";
}

.draw-card:not(:last-child)::after {
  position: absolute;
  top: 11px;
  bottom: -49px;
  left: -46px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.7);
}

.draw-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
}

.draw-card p,
.draw-card li {
  font-size: 19px;
  line-height: 1.22;
}

.draw-card p {
  margin-bottom: 0;
}

.draw-card ul {
  margin: 2px 0 0;
  padding-left: 25px;
}

.draw-button {
  min-width: 310px;
  margin-left: calc(100% - 540px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.smart-section {
  position: relative;
  height: 947px;
  padding-top: 102px;
  overflow: hidden;
  color: #fff;
  background: #0a0806;
  isolation: isolate;
}

.smart-section::before,
.smart-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.smart-section::before {
  z-index: 0;
  inset: -7%;
  background: url("../img/campaign/bg-count.webp") center / cover no-repeat;
  transform-origin: center;
  animation: background-sway 14s ease-in-out infinite alternate-reverse;
}

.smart-section::after {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.84) 9%, rgba(13, 11, 9, 0.22) 27%, rgba(13, 11, 9, 0) 48%),
    linear-gradient(90deg, rgba(8, 5, 2, 0.15), rgba(8, 5, 2, 0.02) 68%, rgba(8, 5, 2, 0.12));
}

.smart-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.smart-card {
  position: relative;
  min-height: 810px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
}

.smart-card h2 {
  position: relative;
  z-index: 2;
  width: 820px;
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
}

.smart-card > p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.3;
}

.smart-card > p strong {
  color: var(--gold-bright);
  font-weight: 400;
}

.smart-list {
  position: relative;
  z-index: 2;
  display: grid;
  width: 760px;
  margin: 92px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.smart-list li {
  position: relative;
  min-height: 218px;
  padding-top: 145px;
  font-size: 20px;
  line-height: 1.35;
}

.smart-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(197, 157, 93, 0.3);
  border-radius: 18px;
  content: "";
  background:
    url("../img/campaign/smart-percent.webp") center / 34px 34px no-repeat,
    rgba(50, 37, 20, 0.5);
  box-shadow: 0 10px 24px rgba(9, 5, 1, 0.14);
}

.smart-list li:nth-child(2)::before {
  background-image: url("../img/campaign/smart-car.webp");
}

.smart-list li:nth-child(3)::before {
  background-image: url("../img/campaign/smart-gift.webp");
}

.smart-mascot {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -275px;
  width: min(900px, 48vw);
  max-width: none;
  pointer-events: none;
  animation: mascot-float 3.8s ease-in-out infinite alternate;
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .benefit-card.reveal,
  .motion-ready .chance-card.reveal,
  .motion-ready .reason-card.reveal,
  .motion-ready .draw-card.reveal,
  .motion-ready .step-card.reveal,
  .motion-ready .prize-card.reveal {
    transition:
      opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      box-shadow 220ms ease;
  }

  .benefit-card img,
  .chance-card > img,
  .step-icon,
  .prize-logo {
    transition: transform 220ms ease;
  }

  .motion-ready .benefit-card.reveal.is-visible:hover,
  .motion-ready .chance-card.reveal.is-visible:hover,
  .motion-ready .reason-card.reveal.is-visible:hover,
  .motion-ready .draw-card.reveal.is-visible:hover,
  .motion-ready .step-card.reveal.is-visible:hover,
  .motion-ready .prize-card.reveal.is-visible:hover {
    box-shadow: 0 18px 42px rgba(13, 11, 9, 0.14);
  }

  .benefit-card:hover img,
  .chance-card:hover > img,
  .step-card:hover .step-icon,
  .prize-card:hover .prize-logo {
    transform: translateY(-3px) scale(1.04);
  }
}

.app-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.app-links img {
  width: 216px;
  height: 64px;
}

.smart-apps {
  position: absolute;
  z-index: 3;
  bottom: 45px;
  left: max(24px, calc((100vw - var(--container)) / 2));
}

.prize-list-section {
  background: var(--paper);
}

.prize-list-spoiler {
  width: 100%;
}

.prize-list-heading {
  display: flex;
  width: 100%;
  height: 167px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid rgba(52, 49, 43, 0.3);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  list-style: none;
  text-align: left;
}

.prize-list-heading h2 {
  margin: 0;
}

.prize-list-arrow {
  width: 34px;
  height: 34px;
  margin: -12px 15px 0 0;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: margin 180ms ease, transform 180ms ease;
}

.prize-list-spoiler.is-open .prize-list-arrow {
  margin-top: 12px;
  transform: rotate(225deg);
}

.prize-list-heading:focus-visible {
  outline: 2px solid #9a722c;
  outline-offset: 5px;
}

.prize-list-content {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.prize-list-spoiler.is-open .prize-list-content {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.prize-list-content-inner {
  min-height: 0;
  overflow: hidden;
}

.prize-list-items {
  margin: 0;
  padding: 38px 0 52px;
  list-style: none;
  font-size: 21px;
  line-height: 1.35;
}

.prize-list-items li + li {
  margin-top: 14px;
}

.partners-section {
  padding-top: 100px;
  text-align: center;
}

.partners-section h2 {
  margin-bottom: 70px;
}

.partners-shopotherapy {
  min-height: 950px;
  padding-bottom: 94px;
}

.partners-shopotherapy::before,
.partners-shopotherapy::after {
  position: absolute;
  left: 50%;
  width: min(var(--container), calc(100% - 48px));
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.partners-shopotherapy::before {
  top: 0;
}

.partners-shopotherapy::after {
  bottom: 0;
}

.partners-shopotherapy h2 {
  margin-bottom: 62px;
}

.shopotherapy-logos {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  row-gap: 34px;
}

.shopotherapy-logo {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopotherapy-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.shopotherapy-logo--epl {
  grid-column: 4 / 10;
}

.shopotherapy-logo--epl img {
  width: 302px;
}

.shopotherapy-logo--armat {
  grid-column: 2 / 7;
}

.shopotherapy-logo--armat img {
  width: 338px;
}

.shopotherapy-logo--samsonite {
  grid-column: 7 / 12;
}

.shopotherapy-logo--samsonite img {
  width: 360px;
}

.shopotherapy-logo--karl {
  grid-column: 1 / 7;
}

.shopotherapy-logo--karl img {
  width: 420px;
}

.shopotherapy-logo--mango {
  grid-column: 7 / 13;
}

.shopotherapy-logo--mango img {
  width: 292px;
}

.shopotherapy-logo--calvin {
  grid-column: 1 / 5;
}

.shopotherapy-logo--calvin img {
  width: 312px;
}

.shopotherapy-logo--puma {
  grid-column: 5 / 9;
}

.shopotherapy-logo--puma img {
  width: 168px;
}

.shopotherapy-logo--tumi {
  grid-column: 9 / 13;
}

.shopotherapy-logo--tumi img {
  width: 226px;
}

.shopotherapy-logo--brusnika {
  grid-column: 3 / 7;
}

.shopotherapy-logo--brusnika img {
  width: 330px;
}

.shopotherapy-logo--anabi {
  grid-column: 7 / 11;
}

.shopotherapy-logo--anabi img {
  width: 204px;
}

.partners-bts {
  height: 653px;
  border-top: 1px solid var(--line);
}

.partners-bts h2 {
  margin-bottom: 84px;
}

.bts-logos {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  row-gap: 68px;
}

.bts-logo {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bts-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.bts-logo--gulliver {
  grid-column: 1 / 5;
}

.bts-logo--gulliver img {
  width: 306px;
}

.bts-logo--tiflani {
  grid-column: 5 / 9;
}

.bts-logo--tiflani img {
  width: 294px;
}

.bts-logo--kotofey {
  grid-column: 9 / 13;
}

.bts-logo--kotofey img {
  width: 310px;
}

.bts-logo--reima {
  grid-column: 1 / 4;
}

.bts-logo--reima img {
  width: 248px;
}

.bts-logo--meloman {
  grid-column: 4 / 7;
}

.bts-logo--meloman img {
  width: 252px;
}

.bts-logo--orchestra {
  grid-column: 7 / 10;
}

.bts-logo--orchestra img {
  width: 270px;
}

.bts-logo--marwin {
  grid-column: 10 / 13;
}

.bts-logo--marwin img {
  width: 236px;
}

.stores-section {
  text-align: center;
}

.stores-section h2 {
  margin-bottom: 16px;
}

.stores-date {
  margin-bottom: 48px;
  font-size: 28px;
}

.stores-bts {
  height: 608px;
  padding-top: 117px;
}

.stores-bts h2 {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.stores-columns {
  display: grid;
  margin-top: 50px;
  padding-left: 35px;
  text-align: left;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
}

.stores-columns li {
  margin: 7px 0;
  font-size: 27px;
}

.stores-columns li::marker {
  color: rgba(52, 49, 43, 0.58);
  font-size: 0.58em;
}

.stores-shopotherapy {
  height: 808px;
  padding-top: 174px;
}

.shopotherapy-info {
  width: min(100%, 1200px);
  display: grid;
  margin: 120px auto 0;
  text-align: left;
  grid-template-columns: 1fr 1fr;
}

.shopotherapy-info p {
  margin: 0;
  padding: 0 78px 0 24px;
  font-size: 25px;
  line-height: 1.16;
}

.shopotherapy-info p + p {
  padding-right: 0;
  padding-left: 112px;
  border-left: 1px solid #d8d3ca;
}

.shopotherapy-support span,
.shopotherapy-support a {
  display: block;
}

.shopotherapy-support a {
  margin-top: 7px;
  font-weight: 600;
}

.shopotherapy-copy--mobile {
  display: none;
}

.faq {
  min-height: 2487px;
  padding-top: 118px;
  background: var(--paper-deep);
}

.faq h2 {
  margin-bottom: 56px;
}

.native-accordion details {
  border-bottom: 1px solid rgba(52, 49, 43, 0.2);
}

.native-accordion summary {
  position: relative;
  padding: 34px 70px 34px 0;
  cursor: pointer;
  font-size: 27px;
  font-weight: 600;
  list-style: none;
}

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

.native-accordion summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 24px;
  height: 24px;
  border-right: 3px solid;
  border-bottom: 3px solid;
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms ease;
}

.native-accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.native-accordion details.is-closing summary::after {
  transform: translateY(-68%) rotate(45deg);
}

.accordion-content {
  max-width: 850px;
  padding: 0 0 36px;
  font-size: 23px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.past-winners {
  padding: 118px 0 124px;
  background: var(--paper);
}

.past-winners-heading {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: 1fr;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.past-winners h2 {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 46px);
  font-weight: 600;
}

.past-winners h2 span {
  display: block;
  margin-top: 0.18em;
}

.past-winners-period {
  margin: 0;
  font-size: 20px;
  white-space: nowrap;
}

.past-winners-subtitle {
  margin: 38px 0 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.past-winners-list {
  display: grid;
  gap: 0 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 42px;
  padding: 0;
  list-style: none;
}

.past-winners-list li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  line-height: 1.5;
}

.past-winners-list li::before {
  position: absolute;
  top: 31px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
  content: "";
}

.past-winners-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease;
}

.past-winners-link:hover,
.past-winners-link:focus-visible {
  color: var(--paper);
  background: var(--brown);
}

@media (max-width: 900px) {
  .past-winners-list {
    grid-template-columns: 1fr;
  }
}

.contacts {
  height: 457px;
  padding-top: 111px;
  color: #fff;
  background: var(--brown);
}

.contact-layout {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.contacts h2 {
  margin-bottom: 40px;
}

.contacts .lead {
  margin: 0;
  font-size: 26px;
}

.contact-list {
  display: flex;
  min-height: 103px;
  flex-direction: column;
  justify-content: center;
  padding-left: 77px;
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 25px;
}

.contact-list p {
  margin-bottom: 8px;
}

.map {
  width: 100%;
  height: 590px;
  overflow: hidden;
}

.map iframe,
.map > div,
.map > ymaps {
  width: 100% !important;
  height: 100% !important;
}

.site-footer {
  position: relative;
  height: 570px;
  padding-top: 140px;
  color: #fff;
  background: var(--brown);
}

.site-footer .container {
  max-width: 1428px;
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 330px minmax(0, 1fr) 300px;
}

.footer-logo {
  width: 180px;
}

.footer-info {
  display: grid;
  gap: 26px;
}

.footer-info-link {
  display: grid;
  align-items: start;
  gap: 24px;
  font-size: 18px;
  line-height: 1.08;
  grid-template-columns: 26px minmax(0, 1fr);
}

.footer-info-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-social p {
  margin-bottom: 22px;
  font-size: 25px;
}

.socials {
  display: flex;
  gap: 24px;
}

.socials a {
  display: block;
  width: 54px;
  height: 54px;
}

.socials img {
  width: 54px;
  height: 54px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 41px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-app-links img {
  width: 246px;
  height: auto;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-age span {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(121, 105, 78, 0.18);
}

.footer-age p {
  margin: 0;
}

@media (min-width: 768px) {
  html[lang="kk"] .wheel-copy {
    width: 650px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer {
    height: auto;
    min-height: 470px;
    padding: 86px 0 50px;
  }

  .footer-grid {
    gap: 36px;
    grid-template-columns: 180px minmax(260px, 1fr) 180px;
  }

  .footer-logo {
    width: 145px;
  }

  .footer-social p {
    font-size: 20px;
  }

  .footer-bottom {
    margin-top: 52px;
  }

  .footer-app-links img {
    width: 180px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .benefits-section {
    height: auto;
    min-height: 0;
    padding-bottom: 96px;
  }

  .benefit-grid {
    width: min(800px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .participation-section {
    height: auto;
    min-height: 850px;
    padding-bottom: 90px;
  }

  .steps-grid {
    width: min(760px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .coupon-row {
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coupon {
    width: 100%;
  }

  .reason-section {
    height: auto;
    min-height: 650px;
    padding-bottom: 90px;
  }

  .reason-section .container {
    display: block;
  }

  .reason-section h2 {
    width: 100%;
    margin-bottom: 60px;
  }

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

  .reason-card h3 {
    top: 205px;
  }

  .draw-section h2 {
    font-size: clamp(44px, 6vw, 60px);
    white-space: normal;
  }

  .smart-card h2 {
    width: 650px;
    font-size: 52px;
  }

  .smart-list {
    width: 640px;
    gap: 24px;
  }

  .smart-list li {
    font-size: 17px;
  }

  .smart-mascot {
    right: -80px;
    bottom: -190px;
    width: 650px;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .header-account,
  .site-header.is-scrolled .header-account {
    display: none;
  }
}

@media (min-width: 768px) {
  html[lang="kk"] .hero h1 {
    font-size: 78px;
    line-height: 1;
  }

  html[lang="kk"] .hero .lead {
    margin-bottom: 38px;
    font-size: 26px;
    line-height: 1.12;
  }

  html[lang="kk"] .wheel-section {
    height: 1080px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    font-size: 24px;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch a {
    width: 52px;
    height: 40px;
    font-size: 14px;
  }

  html[lang="kk"] .hero-inner {
    padding-top: 290px;
  }

  html[lang="kk"] .hero h1 {
    font-size: 68px;
  }

  html[lang="kk"] .hero .lead {
    margin-bottom: 30px;
    font-size: 23px;
  }

  html[lang="kk"] .campaign-feature {
    height: 1280px;
  }
}

@media (min-width: 900px) and (max-width: 949px) {
  html[lang="kk"] .campaign-feature {
    height: 1220px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 56px;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
  }

  h2 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    font-size: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .button {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .site-header,
  .header-inner {
    height: 56px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    font-size: 21px;
  }

  .main-nav,
  .header-account {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 0;
    color: currentColor;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle span::before {
    transform: translateY(-7px);
  }

  .menu-toggle span::after {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] span::before {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span::after {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 56px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 16px 20px 24px;
    color: var(--paper);
    background: rgba(52, 49, 43, 0.99);
    box-shadow: 0 20px 34px rgba(13, 11, 9, 0.22);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 0;
  }

  .mobile-menu > a:not(.mobile-menu-account) {
    min-height: 47px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 15px;
  }

  .mobile-menu-account {
    width: 100%;
    margin: 18px 0 8px;
    border-color: var(--paper);
    color: var(--brown);
    background: var(--paper);
  }

  .language-switch {
    gap: 4px;
  }

  .language-switch a {
    width: 39px;
    height: 29px;
    border-radius: 3px;
    font-size: 11px;
  }

  .hero {
    height: 704px;
    background-image: url("../img/campaign/hero-mobile.webp");
    background-position: center;
    background-size: cover;
  }

  .hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 27px;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .age-badge {
    top: 48px;
    left: 20px;
    min-width: 76px;
    min-height: 40px;
    font-size: 16px;
  }

  .hero h1 {
    width: 100%;
    margin: 0 auto 12px;
    font-size: 42px;
    letter-spacing: -0.025em;
    line-height: 1.02;
  }

  html[lang="kk"] .hero h1 {
    font-size: 36px;
  }

  .hero .lead {
    width: 100%;
    margin-bottom: 22px;
    padding: 0 4px;
    font-size: 15px;
    line-height: 1.22;
  }

  .hero .button {
    width: min(100%, 247px);
    border-color: #dec28a;
    color: var(--brown);
    background: #dec28a;
    font-weight: 600;
  }

  .dual-promo {
    height: 278px;
  }

  .dual-promo h2 {
    margin-bottom: 12px;
    font-size: 31px;
  }

  .dual-promo p {
    font-size: 15px;
  }

  .campaign-feature {
    height: 960px;
  }

  .campaign-feature::before {
    background-position: 68% calc(100% - 30px);
    background-size: auto 180%;
    transform-origin: 68% 72%;
  }

  .campaign-feature::after {
    background:
      linear-gradient(180deg, transparent 0%, transparent calc(100% - 220px), rgba(13, 11, 9, 0.72) calc(100% - 84px), #0d0b09 100%),
      linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.72) 8%, rgba(13, 11, 9, 0) 27%, rgba(13, 11, 9, 0) 73%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%),
      linear-gradient(90deg, rgba(13, 11, 9, 0.34), rgba(13, 11, 9, 0.04)),
      linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  }

  .campaign-feature .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
  }

  .campaign-feature-copy {
    width: 100%;
    padding: 49px 0 0;
  }

  .campaign-intro {
    width: 100%;
    padding: 18px 14px 20px;
    border-radius: 22px;
  }

  .campaign-date {
    min-height: 29px;
    padding: 4px 14px;
    font-size: 13px;
  }

  .campaign-feature h2 {
    margin: 13px 0 18px;
    font-size: 39px;
  }

  .campaign-feature .lead {
    width: 100%;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.23;
  }

  .campaign-feature h3 {
    margin: 300px 0 14px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.16;
  }

  .opportunity-list {
    width: 100%;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .opportunity {
    min-height: 88px;
    gap: 17px;
    padding: 20px;
    border-radius: 20px;
    grid-template-columns: 28px 1fr;
  }

  .opportunity p {
    font-size: 14px;
    line-height: 1.22;
  }

  .opportunity strong {
    font-size: 13px;
  }

  .opportunity p,
  .opportunity strong {
    font-weight: 300;
  }

  .wheel-section {
    height: 920px;
  }

  .wheel-section::before {
    background-image: url("../img/campaign/wheel-bg-mobile.webp");
    background-position: center top;
    background-size: auto 77%;
    transform: none;
    transform-origin: center 42%;
  }

  .wheel-section .container {
    padding-top: 38px;
  }

  .wheel-copy {
    width: 100%;
  }

  .wheel-copy h2 {
    width: min(100%, 330px);
    margin-bottom: 380px;
    font-size: 27px;
  }

  html[lang="kk"] .wheel-copy h2 {
    margin-bottom: 350px;
  }

  .numbered-list {
    margin-bottom: 28px;
  }

  .numbered-list li:not(:last-child)::after {
    top: 11px;
    bottom: -11px;
    left: 11px;
  }

  .numbered-list li {
    min-height: 57px;
    gap: 17px;
    padding: 0;
    font-size: 12px;
    grid-template-columns: 38px 1fr;
  }

  .numbered-list span {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }

  .button-row {
    gap: 12px;
  }

  .wheel-section .button,
  .wheel-section .button--ghost {
    min-width: 0;
    width: min(100%, 310px);
    padding-inline: 25px;
  }

  #prizes {
    height: 410px;
    padding-top: 46px;
  }

  #prizes h2 {
    margin-bottom: 34px;
  }

  .prize-track {
    gap: 13px;
  }

  .prize-card {
    flex-basis: calc((100vw - 53px) / 2);
    height: 254px;
    padding: 42px 13px 16px;
    border-radius: 15px;
    -webkit-mask: none;
    mask: none;
    text-align: center;
  }

  .prize-number {
    top: 14px;
    bottom: auto;
    left: 12px;
    font-size: 13px;
  }

  .prize-perforation {
    display: none;
  }

  .prize-card-content {
    grid-template-rows: 88px auto;
    row-gap: 14px;
  }

  .prize-logo {
    justify-self: center;
    max-width: 100%;
    max-height: 82px;
    object-position: center;
  }

  .prize-logo--igra {
    width: 145px;
  }

  .prize-logo--gulliver {
    width: 145px;
    max-height: 55px;
  }

  .prize-logo--orchestra {
    width: 135px;
    max-height: 45px;
  }

  .prize-logo--marwin {
    width: 140px;
    max-height: 45px;
  }

  .prize-card p {
    font-size: 14px;
    line-height: 1.25;
  }

  .countdown-section {
    height: 490px;
    padding: 63px 0 17px;
    text-align: left;
  }

  .countdown-section h2 {
    width: 100%;
    margin-bottom: 36px;
    hyphens: none;
    overflow-wrap: normal;
    font-size: 30px;
    text-align: left;
    word-break: normal;
  }

  .countdown {
    width: fit-content;
    gap: 25px;
    justify-content: flex-start;
    margin-bottom: 32px;
  }

  .countdown-item {
    gap: 10px;
  }

  .countdown-item:not(:last-child)::after {
    top: 17px;
    right: -16px;
    font-size: 28px;
  }

  .countdown-value {
    width: 49px;
    height: 54px;
    border-radius: 14px;
    font-size: 25px;
  }

  .countdown-label {
    font-size: 14px;
  }

  .countdown-notes {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .countdown-notes span {
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 14px;
  }

  .benefits-section {
    height: 610px;
    padding-top: 43px;
  }

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

  .benefits-section h2 {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.08;
    text-align: center;
  }

  .benefits-heading-mobile-accent {
    color: #9a722c;
  }

  .benefits-title-break--desktop {
    display: none;
  }

  .benefits-title-break--mobile {
    display: inline;
  }

  .benefit-grid {
    width: 100%;
    gap: 14px;
    margin-bottom: 39px;
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    height: 125px;
    padding: 14px 8px;
    border-radius: 10px;
  }

  .benefit-card img {
    width: 46px;
    height: 46px;
    margin-bottom: 7px;
  }

  .benefit-card h3 {
    font-size: 11px;
  }

  .benefit-purchase {
    order: 1;
  }

  .benefit-checks {
    order: 2;
  }

  .benefit-bts {
    order: 3;
  }

  .benefit-monthly {
    order: 4;
  }

  .benefits-button {
    min-width: 258px;
  }

  .participation-section {
    height: 650px;
    padding-top: 52px;
  }

  .participation-section h2 {
    margin-bottom: 38px;
    font-size: 26px;
    font-weight: 400;
  }

  .steps-grid {
    width: 100%;
    gap: 30px 12px;
    margin-bottom: 24px;
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }

  .step-card {
    min-height: 160px;
  }

  .step-icon {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }

  .step-icon img {
    width: 46px;
    height: 46px;
  }

  .step-number {
    top: 0;
    right: -3px;
    width: 26px;
    height: 26px;
    font-size: 8px;
  }

  .step-card h3 {
    max-width: 165px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.15;
  }

  .participation-section .button {
    min-width: 258px;
  }

  .section-note {
    width: min(100%, 300px);
    align-items: center;
    gap: 12px;
    margin-top: 17px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
  }

  .section-note-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 18px;
  }

  .coupon-section {
    height: 435px;
  }

  .coupon-panel h2 {
    width: min(100%, 300px);
    margin-inline: auto;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.08;
  }

  .coupon-panel .lead {
    margin-bottom: 36px;
    font-size: 15px;
  }

  .coupon-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    cursor: grab;
  }

  .coupon-slider::-webkit-scrollbar {
    display: none;
  }

  .coupon-slider:active {
    cursor: grabbing;
  }

  .coupon-slider.is-dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
  }

  .coupon-slider.is-jumping {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .coupon-row {
    display: flex;
    width: max-content;
    gap: 32px;
    margin-bottom: 39px;
  }

  .coupon {
    flex: 0 0 150px;
    width: 150px;
    height: 99px;
    border-radius: 7px;
    font-size: 15px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .coupon[aria-hidden="true"],
  .coupon-third {
    display: grid;
  }

  .increase-section {
    height: 1287px;
    min-height: 0;
    padding: 45px 0 55px;
  }

  .chance-intro h2 {
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.08;
  }

  .chance-intro p {
    margin-bottom: 40px;
    font-size: 15px;
  }

  .chance-cards {
    gap: 14px;
    margin-bottom: 35px;
    grid-template-columns: 1fr;
  }

  .chance-card {
    min-height: 260px;
    padding: 28px 24px;
    border-radius: 17px;
  }

  .chance-card img {
    width: 49px;
    height: 49px;
    margin-bottom: 20px;
  }

  .chance-card strong {
    font-size: 19px;
  }

  .chance-card p,
  .chance-card li {
    font-size: 13px;
  }

  .chance-button {
    min-width: 258px;
  }

  .reason-section {
    height: 560px;
    padding-top: 52px;
  }

  .reason-section .container {
    display: block;
  }

  .reason-section h2 {
    width: 100%;
    margin-bottom: 35px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.08;
    text-align: left;
  }

  .reason-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .reason-card {
    display: grid;
    min-height: 136px;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .reason-card + .reason-card {
    border-left: 0;
  }

  .reason-card:not(:last-child) {
    border-bottom: 1px solid #e3e0da;
  }

  .reason-card span {
    width: auto;
    font-size: 70px;
  }

  .reason-card h3 {
    position: static;
    max-width: none;
    font-size: 15px;
    line-height: 1.15;
    text-align: left;
  }

  .draw-section {
    height: 895px;
    padding-top: 49px;
    overflow: hidden;
    background:
      linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.58) 8%, rgba(13, 11, 9, 0.08) 21%, rgba(13, 11, 9, 0.18) 72%, rgba(13, 11, 9, 0.72) 92%, #0d0b09 100%),
      linear-gradient(rgba(5, 3, 2, 0.08), rgba(8, 5, 3, 0.58)),
      url("../img/campaign/bg-raffle-mobile.jpg") center top / cover no-repeat,
      #0c0907;
  }

  .draw-section h2 {
    width: 100%;
    margin-bottom: 360px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.08;
    white-space: normal;
  }

  .draw-grid {
    width: 100%;
    margin: 0 0 28px;
    padding-left: 30px;
  }

  .draw-card {
    margin-bottom: 18px;
  }

  .draw-card::before {
    left: -35px;
  }

  .draw-card:not(:last-child)::after {
    bottom: -29px;
    left: -30px;
  }

  .draw-card h3 {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .draw-card p,
  .draw-card li {
    font-size: 11px;
  }

  .draw-button {
    width: min(258px, calc(100% - 30px));
    min-width: 0;
    margin: 0 0 0 30px;
  }

  .smart-section {
    height: 739px;
    padding-top: 51px;
  }

  .smart-section::before {
    background-position: center bottom;
    background-size: auto 110%;
  }

  .smart-section::after {
    background:
      linear-gradient(180deg, #0d0b09 0%, rgba(13, 11, 9, 0.88) 10%, rgba(13, 11, 9, 0.3) 30%, rgba(13, 11, 9, 0) 52%),
      linear-gradient(90deg, rgba(8, 5, 2, 0.12), rgba(8, 5, 2, 0.02));
  }

  .smart-section .container {
    padding-inline: 20px;
  }

  .smart-card {
    min-height: 688px;
    padding-inline: 0;
    text-align: left;
  }

  .smart-card h2 {
    width: min(100%, 310px);
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.05;
  }

  .smart-card > p {
    width: min(100%, 330px);
    font-size: 14px;
    line-height: 1.28;
  }

  .smart-list {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 54px 0 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .smart-list li {
    min-height: 126px;
    padding: 67px 12px 13px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(45, 28, 9, 0.02), rgba(35, 22, 8, 0.16));
    font-size: 14px;
    line-height: 1.3;
  }

  .smart-list li::before {
    top: 8px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background-size: 23px 23px;
  }

  .smart-mascot {
    right: -224px;
    bottom: -143px;
    width: 558px;
    rotate: -12deg;
  }

  .smart-apps {
    position: absolute;
    z-index: 3;
    right: auto;
    bottom: 30px;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .app-links img {
    width: 167px;
    height: 49px;
  }

  .smart-apps img {
    width: 137px;
    height: 41px;
  }

  .prize-list-heading {
    height: 114px;
  }

  .prize-list-heading h2 {
    font-size: 24px;
  }

  .prize-list-arrow {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-width: 2px;
  }

  .prize-list-items {
    padding: 26px 0 36px;
    font-size: 16px;
  }

  .prize-list-items li + li {
    margin-top: 10px;
  }

  .partners-section {
    height: auto;
    padding: 45px 0;
  }

  .partners-section h2 {
    margin-bottom: 30px;
    font-size: 27px;
  }

  .partners-shopotherapy {
    min-height: 426px;
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .partners-shopotherapy::before,
  .partners-shopotherapy::after {
    width: calc(100% - 40px);
  }

  .partners-shopotherapy h2 {
    max-width: 340px;
    margin-right: auto;
    margin-bottom: 34px;
    margin-left: auto;
  }

  .shopotherapy-logos {
    width: 100%;
    max-width: 520px;
    row-gap: 19px;
  }

  .shopotherapy-logo--epl {
    grid-column: 3 / 11;
  }

  .shopotherapy-logo--epl img {
    width: 145px;
  }

  .shopotherapy-logo--armat {
    grid-column: 1 / 7;
  }

  .shopotherapy-logo--armat img {
    width: 142px;
  }

  .shopotherapy-logo--samsonite {
    grid-column: 7 / 13;
  }

  .shopotherapy-logo--samsonite img {
    width: 154px;
  }

  .shopotherapy-logo--karl {
    grid-column: 1 / 8;
  }

  .shopotherapy-logo--karl img {
    width: 172px;
  }

  .shopotherapy-logo--mango {
    grid-column: 8 / 13;
  }

  .shopotherapy-logo--mango img {
    width: 112px;
  }

  .shopotherapy-logo--calvin {
    grid-column: 1 / 5;
  }

  .shopotherapy-logo--calvin img {
    width: 130px;
  }

  .shopotherapy-logo--puma {
    grid-column: 5 / 9;
  }

  .shopotherapy-logo--puma img {
    width: 80px;
  }

  .shopotherapy-logo--tumi {
    grid-column: 9 / 13;
  }

  .shopotherapy-logo--tumi img {
    width: 105px;
  }

  .shopotherapy-logo--brusnika {
    grid-column: 2 / 7;
  }

  .shopotherapy-logo--brusnika img {
    width: 148px;
  }

  .shopotherapy-logo--anabi {
    grid-column: 7 / 12;
  }

  .shopotherapy-logo--anabi img {
    width: 98px;
  }

  .partners-bts {
    height: auto;
    min-height: 378px;
    padding-top: 45px;
    padding-bottom: 48px;
  }

  .partners-bts h2 {
    max-width: 520px;
    margin-right: auto;
    margin-bottom: 52px;
    margin-left: auto;
  }

  .bts-logos {
    width: 100%;
    max-width: 560px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 28px;
  }

  .bts-logos .bts-logo {
    grid-column: auto;
    min-height: 72px;
  }

  .bts-logo--gulliver {
    grid-column: 1 / 5;
  }

  .bts-logo--gulliver img {
    width: 128px;
  }

  .bts-logo--tiflani {
    grid-column: 5 / 9;
  }

  .bts-logo--tiflani img {
    width: 138px;
  }

  .bts-logo--kotofey {
    grid-column: 9 / 13;
  }

  .bts-logo--kotofey img {
    width: 136px;
  }

  .bts-logo--reima {
    grid-column: 1 / 5;
  }

  .bts-logo--reima img {
    width: 120px;
  }

  .bts-logo--meloman {
    grid-column: 5 / 9;
  }

  .bts-logo--meloman img {
    width: 142px;
  }

  .bts-logo--marwin {
    grid-column: 9 / 13;
  }

  .bts-logo--marwin img {
    width: 128px;
  }

  .bts-logo--orchestra {
    grid-column: 4 / 10;
  }

  .bts-logo--orchestra img {
    width: 170px;
  }

  .bts-logos .bts-logo--marwin {
    grid-column: 2;
  }

  .stores-section h2 {
    font-size: 27px;
  }

  .stores-date {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .stores-bts {
    height: auto;
    min-height: 308px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .stores-columns {
    column-gap: 0;
    row-gap: 0;
    margin-top: 20px;
    padding: 0 15px;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    justify-content: space-around;
    justify-items: start;
  }

  .stores-columns > *,
  .shopotherapy-info > *,
  .contact-list > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .stores-columns li {
    margin: 4px 0;
    font-size: clamp(13px, 3.1vw, 20px);
  }

  .stores-columns li:nth-child(1) { order: 1; }
  .stores-columns li:nth-child(2) { order: 2; }
  .stores-columns li:nth-child(3) { order: 3; }
  .stores-columns li:nth-child(4) { order: 4; }
  .stores-columns li:nth-child(5) { order: 7; }
  .stores-columns li:nth-child(6) { order: 8; }
  .stores-columns li:nth-child(7) { order: 10; }
  .stores-columns li:nth-child(8) { order: 11; }
  .stores-columns li:nth-child(9) { order: 5; }
  .stores-columns li:nth-child(10) { order: 6; }
  .stores-columns li:nth-child(11) { order: 9; }
  .stores-columns li:nth-child(12) { order: 12; }

  .stores-bts .stores-columns {
    grid-template-rows: repeat(5, auto);
  }

  .stores-bts .stores-columns li {
    order: initial;
  }

  .stores-shopotherapy {
    height: auto;
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 0;
  }

  .shopotherapy-info {
    width: 100%;
    margin-top: 72px;
    display: block;
    text-align: center;
  }

  .shopotherapy-info p {
    padding: 0 8px 28px;
    font-size: clamp(16px, 3.3vw, 22px);
    line-height: 1.18;
  }

  .shopotherapy-info p + p {
    padding: 24px 8px 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stores-shopotherapy .stores-date {
    font-size: clamp(16px, 3.3vw, 21px);
  }

  .shopotherapy-copy--desktop {
    display: none;
  }

  .shopotherapy-copy--mobile {
    display: inline;
  }

  .shopotherapy-support a {
    margin-top: 2px;
    font-size: clamp(13px, 3.3vw, 22px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .faq {
    height: auto;
    min-height: 890px;
    padding: 42px 0 48px;
    overflow: visible;
  }

  .faq h2 {
    margin-bottom: 16px;
  }

  .native-accordion summary {
    min-height: 38px;
    padding: 10px 28px 10px 0;
    font-size: 12px;
    font-weight: 500;
  }

  .native-accordion summary::after {
    right: 4px;
    width: 7px;
    height: 7px;
    border-width: 1px;
  }

  .accordion-content {
    padding: 0 0 12px;
    font-size: 9px;
  }

  .past-winners {
    padding: 48px 0 54px;
  }

  .past-winners-heading {
    gap: 14px;
    padding-bottom: 22px;
  }

  .past-winners h2 {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .past-winners-period {
    margin: 0;
    font-size: 13px;
  }

  .past-winners-subtitle {
    margin-top: 24px;
    font-size: 17px;
  }

  .past-winners-list {
    margin: 12px 0 28px;
  }

  .past-winners-list li {
    padding: 13px 0 13px 22px;
    font-size: 12px;
    line-height: 1.45;
  }

  .past-winners-list li::before {
    top: 20px;
    left: 2px;
    width: 6px;
    height: 6px;
  }

  .past-winners-link {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 12px;
  }

  .contacts {
    height: 270px;
    padding-top: 44px;
  }

  .contact-layout {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .contacts h2 {
    margin-bottom: 32px;
  }

  .contacts .lead {
    font-size: 13px;
  }

  .contact-list {
    display: grid;
    min-height: 80px;
    gap: 7px 25px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    border-left: 0;
    font-size: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .contact-list p {
    margin: 0;
    grid-column: 1 / -1;
  }

  .map {
    height: 272px;
  }

  .site-footer {
    height: 493px;
    padding-top: 48px;
  }

  .site-footer .container {
    padding-inline: 20px;
  }

  .footer-grid {
    display: flex;
    gap: 0;
    flex-direction: column;
  }

  .footer-social {
    order: 1;
    margin-bottom: 43px;
  }

  .footer-social p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .socials {
    gap: 32px;
  }

  .socials a {
    width: 45px;
    height: 45px;
  }

  .socials img {
    width: 45px;
    height: 45px;
  }

  .footer-info {
    order: 2;
    gap: 27px;
  }

  .footer-info-link {
    gap: 22px;
    font-size: 14px;
    line-height: 1.08;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .footer-info-icon {
    width: 30px;
    height: 30px;
  }

  .footer-logo {
    position: absolute;
    bottom: 28px;
    left: 20px;
    order: 3;
    width: 115px;
  }

  .footer-bottom {
    display: block;
    margin-top: 33px;
    padding: 0;
    border: 0;
  }

  .footer-bottom .app-links {
    display: grid;
    width: 100%;
    max-width: 343px;
    gap: 20px;
    grid-template-columns: minmax(0, 1.125fr) minmax(0, 1fr);
  }

  .footer-bottom .app-links a {
    min-width: 0;
  }

  .footer-bottom .app-links img {
    width: 100%;
    height: auto;
  }

  .footer-age {
    position: absolute;
    right: 20px;
    bottom: 28px;
    display: grid;
    justify-items: end;
    gap: 10px;
  }

  .footer-age span {
    padding: 7px 12px;
  }

}

@media (min-width: 395px) and (max-width: 767px) {
  .wheel-section::before {
    background-image: url("../img/campaign/wheel-bg-mobile-wide.webp");
  }
}

@media (min-width: 550px) and (max-width: 767px) {
  .coupon-slider {
    width: 100%;
    margin-left: 0;
    padding-inline: 0;
    overflow: visible;
    scroll-padding-left: 0;
    scroll-snap-type: none;
    touch-action: auto;
    cursor: default;
  }

  .coupon-slider:active {
    cursor: default;
  }

  .coupon-row {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coupon {
    width: 100%;
    min-width: 0;
    flex: none;
    scroll-snap-align: none;
  }

  .coupon[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 369px) {
  body {
    font-size: 12px;
  }

  .increase-section {
    height: 1212px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 16px;
  }

  .button,
  .mobile-menu > a:not(.mobile-menu-account) {
    font-size: 13px;
  }

  .brand {
    flex-shrink: 0;
    font-size: 16px;
  }

  .language-switch a {
    font-size: 10px;
  }

  .age-badge {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  html[lang="kk"] .hero h1 {
    font-size: 31px;
  }

  .hero .lead,
  .dual-promo p,
  .coupon-panel .lead,
  .chance-intro p {
    font-size: 13px;
  }

  .dual-promo h2 {
    font-size: 27px;
  }

  .campaign-date,
  .campaign-feature .lead,
  .opportunity strong,
  .chance-card p,
  .chance-card li,
  .draw-card h3,
  .stores-columns li,
  .shopotherapy-support a,
  .contacts .lead {
    font-size: 11px;
  }

  .campaign-feature h2 {
    font-size: 34px;
  }

  .campaign-feature h3 {
    font-size: 15px;
  }

  .opportunity p,
  .numbered-list li,
  .prize-card p,
  .countdown-label,
  .countdown-notes span,
  .section-note,
  .smart-card > p,
  .smart-list li,
  .stores-date,
  .footer-social p,
  .footer-info-link {
    font-size: 12px;
  }

  .numbered-list span,
  .benefit-card h3,
  .draw-card p,
  .draw-card li,
  .contact-list {
    font-size: 10px;
  }

  .wheel-copy h2,
  .partners-section h2,
  .stores-section h2 {
    font-size: 23px;
  }

  .prize-number {
    font-size: 11px;
  }

  .countdown-section h2 {
    font-size: 25px;
  }

  .countdown-item:not(:last-child)::after {
    font-size: 24px;
  }

  .countdown-value {
    font-size: 22px;
  }

  .benefits-section h2,
  .participation-section h2,
  .coupon-panel h2,
  .chance-intro h2,
  .reason-section h2,
  .draw-section h2 {
    font-size: 22px;
  }

  .step-card h3 {
    font-size: 11px;
  }

  .section-note-icon {
    font-size: 16px;
  }

  .coupon {
    font-size: 13px;
  }

  .chance-card strong {
    font-size: 16px;
  }

  .reason-card span {
    font-size: 60px;
  }

  .reason-card {
    gap: 12px;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .reason-card h3 {
    font-size: 13px;
  }

  .smart-card h2 {
    font-size: 24px;
  }

  .prize-list-heading h2 {
    font-size: 21px;
  }

  .prize-list-items {
    font-size: 14px;
  }

  .shopotherapy-info p,
  .stores-shopotherapy .stores-date {
    font-size: 14px;
  }

  .native-accordion summary {
    font-size: 11px;
  }
}

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

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

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .ambient-sparkles {
    display: none;
  }
}

/* Shymkent Plaza campaign overrides */
.prize-logo--sulpak {
  width: 320px;
  max-height: 145px;
  filter: none;
}

.prize-logo--under-armour {
  width: 255px;
}

.prize-logo--waikiki {
  width: 330px;
}

.prize-logo--levis {
  width: 245px;
}

.prize-logo--kotofey {
  width: 295px;
}

.prize-logo--koton {
  width: 320px;
}

.prize-logo--puma {
  width: 250px;
}

.prize-logo--tommy {
  width: 270px;
  filter: none;
}

.prize-logo--orchestra-sp {
  width: 320px;
}

.prize-logo--lady {
  width: 285px;
}

.prize-logo--lining {
  width: 275px;
}

.shopotherapy-partners-art {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  margin: 0 auto;
}

.partners-shopotherapy {
  min-height: 0;
}

.partners-bts {
  height: auto;
  min-height: 820px;
  padding-bottom: 100px;
}

.bts-logos--shymkent {
  width: min(100%, 1040px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 42px;
}

.bts-logos--shymkent .bts-logo {
  min-height: 74px;
}

.bts-logos--shymkent .bts-logo img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  filter: brightness(0);
  object-fit: contain;
}

.bts-logo--sp-sulpak {
  grid-column: 1 / 4;
}

.bts-logo--sp-koton {
  grid-column: 4 / 7;
}

.bts-logo--sp-levis,
.bts-logo--sp-orchestra,
.bts-logo--sp-puma {
  grid-column: 1 / 3;
}

.bts-logo--sp-lady,
.bts-logo--sp-waikiki,
.bts-logo--sp-under-armour {
  grid-column: 3 / 5;
}

.bts-logo--sp-lining,
.bts-logo--sp-kotofey,
.bts-logo--sp-tommy {
  grid-column: 5 / 7;
}

.bts-logos--shymkent .bts-logo--sp-sulpak img {
  max-width: 230px;
  filter: invert(1);
}

.bts-logos--shymkent .bts-logo--sp-tommy img {
  filter: none;
}

.footer-logo--shymkent {
  width: 180px;
  height: auto;
}

@media (max-width: 767px) {
  .prize-logo--sulpak {
    width: 145px;
    max-height: 68px;
  }

  .prize-logo--under-armour,
  .prize-logo--levis,
  .prize-logo--puma,
  .prize-logo--tommy,
  .prize-logo--lady,
  .prize-logo--lining {
    width: 125px;
  }

  .prize-logo--waikiki,
  .prize-logo--kotofey,
  .prize-logo--koton,
  .prize-logo--orchestra-sp {
    width: 145px;
  }

  .partners-shopotherapy {
    padding-bottom: 58px;
  }

  .partners-shopotherapy h2 {
    margin-bottom: 38px;
  }

  .shopotherapy-partners-art {
    width: 100%;
  }

  .partners-bts {
    min-height: 0;
    padding-bottom: 72px;
  }

  .partners-bts h2 {
    margin-bottom: 48px;
  }

  .bts-logos--shymkent {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 30px;
  }

  .bts-logos--shymkent .bts-logo {
    grid-column: auto;
    min-height: 54px;
  }

  .bts-logos--shymkent .bts-logo img {
    max-height: 52px;
  }

  .bts-logos--shymkent .bts-logo--sp-sulpak img {
    max-width: 132px;
  }

  .bts-logos--shymkent .bts-logo:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo--shymkent {
    width: 105px;
  }
}

.benefits-section h2,
.participation-section h2,
.coupon-panel h2,
.chance-intro h2,
.chance-card strong,
.reason-section h2,
.prize-list-heading h2,
.partners-section h2,
.stores-section h2,
.contact-list strong,
.faq h2 {
  font-weight: 600;
}
