﻿:root {
  --wb-magenta: #CB11AB;
  --wb-purple: #7B1FD1;
  --wb-deep-purple: #5A16B5;
  --wb-bg: #ECECF3;
  --wb-card: #FFFFFF;
  --wb-text: #242429;
  --wb-muted: #6F7080;
  --wb-border: rgba(36, 36, 41, 0.08);
  --wb-shadow: 0 24px 70px rgba(54, 24, 95, 0.14);
  --wb-shadow-soft: 0 14px 34px rgba(36, 36, 41, 0.08);
  --wb-radius: 28px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 360px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 360px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(203, 17, 171, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(123, 31, 209, 0.12), transparent 30rem),
    var(--wb-bg);
  color: var(--wb-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

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

.button--header,
.button--gradient {
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 16px 36px rgba(123, 31, 209, 0.22);
}

.button--light {
  color: var(--wb-deep-purple);
  background: #fff;
  box-shadow: 0 18px 36px rgba(58, 13, 96, 0.18);
}

.button--outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(14px);
}

.button--gold {
  color: #4b2368;
  background: linear-gradient(135deg, #fff8d1, #d7ff57);
  box-shadow: 0 18px 38px rgba(215, 255, 87, 0.18);
}

.button--white {
  color: var(--wb-deep-purple);
  background: #fff;
  border-color: var(--wb-border);
}

/* Header */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 90;
  margin-top: 14px;
  pointer-events: none;
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(42, 14, 75, 0.16);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  width: 174px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(36, 36, 41, 0.78);
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--wb-deep-purple);
  background: rgba(123, 31, 209, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--wb-shadow-soft);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--wb-text);
  transition: transform 0.22s ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 22px 0 38px;
}

.hero-panel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(135deg, #f91dc6 0%, #b315f0 48%, #6515d4 100%);
  box-shadow: var(--wb-shadow);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 65, 212, 0.22), rgba(72, 16, 168, 0.1)),
    url("../img/v2/Background-main.webp") center / cover no-repeat;
  opacity: 0.96;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% -18%;
  z-index: -2;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34), transparent 64%);
  filter: blur(16px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.22), transparent 15rem),
    radial-gradient(circle at 22% 82%, rgba(215, 255, 87, 0.2), transparent 18rem);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin-inline: auto;
  padding: 118px 28px 0;
  color: #fff;
  text-align: center;
}

.promo-badge,
.section-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo-badge {
  min-height: 36px;
  margin: 0 auto 18px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 94px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(58, 10, 94, 0.22);
}

.hero-content > p:not(.promo-badge) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: absolute;
  left: 50%;
  bottom: -28px;
  z-index: 4;
  width: min(980px, 94%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-main {
  width: 100%;
  margin-inline: auto;
  filter: drop-shadow(0 38px 44px rgba(35, 12, 75, 0.24));
  animation: floatHero 6s ease-in-out infinite;
}

.hero-decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 24px 26px rgba(39, 11, 87, 0.22));
}

.hero-decor--left {
  left: 3%;
  bottom: 22%;
  width: 190px;
  transform: rotate(-16deg);
}

.hero-decor--right {
  right: 6%;
  top: 18%;
  width: 210px;
  transform: rotate(14deg);
}

.hero-decor--gift {
  right: 8%;
  bottom: 8%;
  width: 260px;
  opacity: 0.92;
  transform: rotate(-6deg);
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 5;
  width: 120vw;
  margin: -8px 0 24px -10vw;
  overflow: hidden;
  transform: rotate(-1.4deg);
  background: linear-gradient(90deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 20px 44px rgba(123, 31, 209, 0.22);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: tickerMove 34s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "•";
  margin: 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes tickerMove {
  to {
    transform: translateX(-33.333%);
  }
}

/* Shared sections */
.section {
  padding: 86px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  min-height: 30px;
  margin: 0 0 12px;
  padding: 0 13px;
  color: var(--wb-deep-purple);
  background: rgba(123, 31, 209, 0.09);
}

.section-kicker--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h2 {
  margin: 0;
  color: var(--wb-text);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.stats-card > p,
.countdown-card > p,
.main-prize-copy p,
.game-copy p,
.documents-card p {
  color: var(--wb-muted);
  font-size: 17px;
}

.section-head p:not(.section-kicker) {
  margin: 16px auto 0;
}

/* Status and timer */
.status-section {
  padding-top: 58px;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.stats-card,
.countdown-card,
.main-prize-card,
.documents-card,
.leaderboard,
.video-card,
.review-card,
.prize-card {
  border: 1px solid var(--wb-border);
  background: var(--wb-card);
  box-shadow: var(--wb-shadow-soft);
}

.stats-card,
.countdown-card {
  border-radius: 30px;
  padding: 28px;
}

.stats-card h2,
.countdown-card h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stats-grid article {
  min-height: 174px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wb-border);
  border-radius: 24px;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(244, 233, 255, 0.82), rgba(255, 255, 255, 0.88) 52%),
    #fff;
}

.stats-grid article::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -20px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(203, 17, 171, 0.15), rgba(123, 31, 209, 0.14));
}

.stats-grid img {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 1;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.stats-grid strong {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: flex;
  align-items: flex-end;
  color: var(--wb-text);
  font-size: clamp(27px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.stats-grid span {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: block;
  margin-top: 8px;
  color: var(--wb-muted);
  font-size: 14px;
  font-weight: 700;
}

.countdown-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(203, 17, 171, 0.14), transparent 13rem),
    radial-gradient(circle at 0% 100%, rgba(123, 31, 209, 0.12), transparent 14rem),
    #fff;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.countdown-grid span {
  min-height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wb-border);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(123, 31, 209, 0.08);
}

.countdown-grid b {
  color: var(--wb-purple);
  font-size: 43px;
  line-height: 1;
  font-weight: 900;
}

.countdown-grid small {
  color: var(--wb-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Main prize */
.main-prize {
  padding-top: 70px;
}

.main-prize-card {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 26px;
  overflow: hidden;
  border-radius: 34px;
  padding: 44px;
  background:
    radial-gradient(circle at 76% 28%, rgba(215, 255, 87, 0.22), transparent 13rem),
    radial-gradient(circle at 10% 92%, rgba(203, 17, 171, 0.14), transparent 18rem),
    linear-gradient(135deg, #fff, #fbf6ff);
}

.main-prize-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(203, 17, 171, 0.12), rgba(123, 31, 209, 0.1));
}

.main-prize-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.pill {
  min-height: 34px;
  padding: 0 14px;
  color: var(--wb-deep-purple);
  background: #f5e9ff;
}

.main-prize-copy h3 {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--wb-text);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

.main-prize-copy p {
  max-width: 510px;
  margin: 18px 0 28px;
}

.main-prize-visual {
  position: relative;
  min-height: 360px;
}

.phone-prize {
  position: absolute;
  right: 4%;
  top: 8%;
  z-index: 3;
  width: 58%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(60, 20, 90, 0.18));
  transform: rotate(7deg);
}

.gift-prize {
  position: absolute;
  left: -8%;
  bottom: -4%;
  z-index: 2;
  width: 76%;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(60, 20, 90, 0.16));
}

.spark {
  position: absolute;
  z-index: 4;
  object-fit: contain;
}

.spark--one {
  left: 12%;
  top: 12%;
  width: 58px;
}

.spark--two {
  right: 2%;
  bottom: 12%;
  width: 82px;
}

/* Prize grid */
.additional-prizes {
  padding-top: 42px;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.prize-card {
  min-height: 276px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.prize-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  background: linear-gradient(180deg, rgba(244, 233, 255, 0.96), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.prize-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(71, 26, 110, 0.14);
}

.prize-card > span {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--wb-deep-purple);
  background: #fff;
  box-shadow: 0 10px 20px rgba(36, 36, 41, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.prize-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 154px;
  object-fit: contain;
  margin-top: 18px;
  filter: drop-shadow(0 18px 18px rgba(65, 24, 98, 0.14));
}

.prize-card h3 {
  position: relative;
  z-index: 2;
  min-height: 52px;
  display: flex;
  align-items: flex-end;
  margin: 18px 0 0;
  color: var(--wb-text);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 900;
}

.prize-card p {
  position: relative;
  z-index: 2;
  min-height: 42px;
  margin: 7px 0 0;
  color: var(--wb-muted);
  font-size: 14px;
  font-weight: 700;
}

/* Game mechanics */
.game-panel {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 38px;
  padding: 50px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 44%, rgba(215, 255, 87, 0.25), transparent 13rem),
    linear-gradient(135deg, rgba(203, 17, 171, 0.92), rgba(90, 22, 181, 0.98)),
    url("../img/v2/Background-main.webp") center / cover no-repeat;
  box-shadow: var(--wb-shadow);
}

.game-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.game-copy h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  text-transform: uppercase;
}

.game-copy p {
  max-width: 500px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.game-wheel {
  position: relative;
  min-height: 360px;
}

.wheel-bg,
.wheel-main,
.wheel-character {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.wheel-bg {
  right: 8%;
  top: 2%;
  width: 74%;
  opacity: 0.78;
  filter: drop-shadow(0 28px 34px rgba(35, 12, 70, 0.22));
}

.wheel-main {
  right: 18%;
  top: 12%;
  width: 48%;
  animation: slowSpin 24s linear infinite;
}

.wheel-character {
  left: 0;
  bottom: 0;
  width: 40%;
  filter: drop-shadow(0 28px 26px rgba(35, 12, 70, 0.2));
}

.game-wheel span {
  position: absolute;
  right: 27%;
  top: 42%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  color: #4b2368;
  background: linear-gradient(135deg, #fff, #d9ff59);
  box-shadow: 0 20px 38px rgba(215, 255, 87, 0.28);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

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

/* How to participate */
.how-section {
  padding-top: 42px;
}

.how-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-radius: 36px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.25), transparent 17rem),
    linear-gradient(135deg, var(--wb-magenta), var(--wb-deep-purple));
  box-shadow: var(--wb-shadow);
}

.step-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(42, 14, 75, 0.12);
}

.step-card--accent {
  background: #fff;
  transform: translateY(-10px);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  font-size: 18px;
  font-weight: 900;
}

.step-card h3 {
  min-height: 58px;
  margin: 24px 0 0;
  color: var(--wb-text);
  font-size: 23px;
  line-height: 1.16;
  font-weight: 900;
}

.step-card p {
  margin: 12px 0 0;
  color: var(--wb-muted);
  font-weight: 600;
}

.how-cta {
  grid-column: 1 / -1;
  width: fit-content;
  justify-self: center;
  margin-top: 6px;
}

/* Winners */
.leaderboard {
  overflow: hidden;
  border-radius: 30px;
  padding: 8px;
}

.leaderboard article {
  display: grid;
  grid-template-columns: 52px minmax(130px, 0.45fr) minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border-radius: 22px;
  padding: 14px 18px;
}

.leaderboard article:not(:last-child) {
  border-bottom: 1px solid var(--wb-border);
}

.leaderboard span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--wb-deep-purple);
  background: #f4e9ff;
  font-size: 16px;
  font-weight: 900;
}

.leaderboard strong {
  color: var(--wb-text);
  font-size: 17px;
  font-weight: 900;
}

.leaderboard div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leaderboard b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--wb-deep-purple);
  background: rgba(123, 31, 209, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.leaderboard em {
  justify-self: end;
  color: var(--wb-text);
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

/* Video and reviews */
.video-card {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(203, 17, 171, 0.2), rgba(90, 22, 181, 0.22)),
    var(--wb-card);
  box-shadow: var(--wb-shadow);
}

.video-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 24px 44px rgba(45, 16, 82, 0.24);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--wb-purple);
}

.video-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(36, 36, 41, 0.34);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.video-card.is-placeholder img,
.video-card.is-placeholder .play-button {
  opacity: 0;
}

.video-card.is-placeholder .video-caption {
  left: 50%;
  top: 50%;
  bottom: auto;
  max-width: calc(100% - 48px);
  border-radius: 24px;
  color: var(--wb-text);
  background: #fff;
  box-shadow: var(--wb-shadow-soft);
  transform: translate(-50%, -50%);
}

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

.review-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 30px;
  padding: 18px 18px 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.review-card:hover,
.review-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(71, 26, 110, 0.14);
}

.review-card img {
  width: 100%;
  height: 202px;
  object-fit: contain;
  border-radius: 24px;
  background: linear-gradient(135deg, #f6eaff, #fff);
}

.review-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--wb-deep-purple);
  background: rgba(123, 31, 209, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.review-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

.review-card strong {
  display: block;
  margin-top: 8px;
  color: var(--wb-deep-purple);
  font-weight: 900;
}

.review-card p {
  margin: 12px 0 0;
  color: var(--wb-muted);
  font-weight: 600;
}

/* Documents */
.documents-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(203, 17, 171, 0.12), transparent 17rem),
    #fff;
}

.pdf-card {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--wb-border);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(145deg, #f9f2ff, #fff);
}

.pdf-card span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(123, 31, 209, 0.18);
}

.pdf-card h3 {
  margin: 22px 0 0;
  font-size: 21px;
  font-weight: 900;
}

.pdf-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.documents-card h2 {
  max-width: 560px;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Footer */
.footer {
  padding: 34px 0 42px;
  color: var(--wb-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 34px;
  align-items: center;
  border-top: 1px solid var(--wb-border);
  padding-top: 24px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: var(--wb-text);
  font-size: 14px;
  font-weight: 800;
}

.footer-inner p:last-child {
  grid-column: 1 / -1;
  max-width: 620px;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@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;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    justify-self: end;
  }

  .button--header {
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid var(--wb-border);
    border-radius: 26px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--wb-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
  }

  .hero-panel {
    min-height: 720px;
  }

  .hero-decor--left {
    width: 150px;
  }

  .hero-decor--right {
    width: 168px;
  }

  .hero-decor--gift {
    width: 210px;
  }

  .status-layout,
  .main-prize-card,
  .game-panel {
    grid-template-columns: 1fr;
  }

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

  .main-prize-visual,
  .game-wheel {
    min-height: 420px;
  }

  .main-prize-copy,
  .game-copy {
    align-items: center;
    text-align: center;
  }
}

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

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

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 8px 10px;
  }

  .brand {
    width: 132px;
    min-height: 46px;
    border-radius: 18px;
    padding: 8px 12px;
  }

  .brand img {
    height: 30px;
  }

  .button--header {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a {
    min-height: 42px;
    font-size: 13px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-panel {
    min-height: 660px;
    border-radius: 30px;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-content > p:not(.promo-badge) {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    bottom: 28px;
    width: 118%;
  }

  .hero-decor--left {
    left: -10px;
    bottom: 18%;
    width: 116px;
  }

  .hero-decor--right {
    right: -18px;
    top: 16%;
    width: 132px;
  }

  .hero-decor--gift {
    display: none;
  }

  .ticker {
    margin-top: -2px;
  }

  .ticker-track {
    padding: 12px 0;
    animation-duration: 27s;
  }

  .ticker-track span::after {
    margin: 0 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  h2 {
    font-size: clamp(29px, 8vw, 36px);
  }

  .stats-card,
  .countdown-card,
  .main-prize-card,
  .game-panel,
  .documents-card {
    border-radius: 26px;
    padding: 22px;
  }

  .status-layout {
    gap: 16px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stats-grid article {
    min-height: 158px;
    padding: 16px;
  }

  .stats-grid img {
    width: 54px;
    height: 54px;
  }

  .stats-grid strong {
    font-size: 25px;
  }

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

  .countdown-grid span {
    min-height: 98px;
  }

  .countdown-grid b {
    font-size: 34px;
  }

  .main-prize-card {
    min-height: 0;
  }

  .main-prize-copy h3 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .main-prize-visual {
    min-height: 310px;
  }

  .phone-prize {
    right: -2%;
    width: 62%;
  }

  .gift-prize {
    left: -18%;
    width: 82%;
  }

  .prize-grid,
  .review-grid,
  .how-panel {
    grid-template-columns: 1fr;
  }

  .prize-card {
    min-height: 250px;
  }

  .game-panel {
    min-height: 0;
  }

  .game-copy h2 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .game-wheel {
    min-height: 300px;
  }

  .game-wheel span {
    right: 26%;
    top: 40%;
    width: 104px;
    height: 104px;
    font-size: 13px;
  }

  .step-card--accent {
    transform: none;
  }

  .leaderboard {
    display: grid;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .leaderboard article {
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 12px;
    border: 1px solid var(--wb-border);
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    box-shadow: var(--wb-shadow-soft);
  }

  .leaderboard article:not(:last-child) {
    border-bottom: 1px solid var(--wb-border);
  }

  .leaderboard div,
  .leaderboard em {
    grid-column: 2;
  }

  .leaderboard em {
    justify-self: start;
  }

  .video-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .video-card img {
    height: 360px;
  }

  .play-button {
    width: 74px;
    height: 74px;
  }

  .video-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    text-align: center;
  }

  .review-card {
    min-height: 0;
  }

  .documents-card {
    grid-template-columns: 1fr;
  }

  .pdf-card {
    min-height: 230px;
  }

  .document-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    width: 118px;
  }

  .button--header {
    padding: 0 13px;
  }

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

  .prize-grid {
    gap: 14px;
  }

  .main-prize-visual,
  .game-wheel {
    min-height: 260px;
  }
}

/* V2 visual refinement */
:root {
  --container: 1320px;
}

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(123, 31, 209, 0.2), transparent 30rem),
    radial-gradient(circle at 8% 22%, rgba(203, 17, 171, 0.11), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(123, 31, 209, 0.12), transparent 34rem),
    #edeef6;
}

.site-header {
  top: 16px;
  margin-top: 16px;
}

.header-inner {
  width: min(100% - 48px, 1120px);
  min-height: 76px;
  grid-template-columns: 178px minmax(0, 1fr) 152px;
  gap: 22px;
  padding: 10px 16px;
}

.brand {
  width: 172px;
  min-height: 46px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 172px;
  height: auto;
}

.button--header {
  width: 132px;
  justify-self: end;
  padding-inline: 18px;
}

.hero {
  padding: 28px 0 46px;
}

.hero .container {
  width: min(100% - 56px, 1680px);
}

.hero-panel {
  min-height: 690px;
  border-radius: 42px;
}

.hero-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(540px, 1.18fr);
  min-height: 690px;
  align-items: center;
  gap: 10px;
  padding: 74px 70px 64px;
}

.hero-content {
  max-width: 580px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.promo-badge {
  margin: 0 0 18px;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: -6px;
  border-radius: 999px;
  padding: 0 22px;
  color: #1e1d28;
  background: #fff;
  box-shadow: 0 18px 34px rgba(48, 13, 88, 0.18);
  font-size: 19px;
  font-weight: 800;
  transform: rotate(-3deg);
}

.hero h1 {
  display: inline-block;
  margin-top: 6px;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  padding: 16px 30px 20px;
  background: linear-gradient(135deg, #f946dd, #db28ee);
  box-shadow: 0 24px 50px rgba(42, 12, 76, 0.22);
  font-size: clamp(64px, 6vw, 104px);
  line-height: 0.9;
  transform: rotate(1.2deg);
}

.hero-content > p:not(.promo-badge) {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 800;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-timer {
  display: grid;
  grid-template-columns: repeat(4, 86px);
  gap: 10px;
  margin-top: 24px;
}

.hero-timer div {
  display: grid;
  place-items: center;
  min-height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-timer b {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.hero-timer span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  transform: none;
}

.hero-main {
  width: min(100%, 860px);
  margin-left: auto;
  transform-origin: 50% 65%;
}

.hero-decor--left {
  left: 4%;
  bottom: 10%;
  width: 150px;
}

.hero-decor--right {
  right: 3%;
  top: 9%;
  width: 170px;
}

.hero-decor--gift {
  right: 4%;
  bottom: 4%;
  width: 190px;
}

.ticker {
  margin-top: -18px;
}

.status-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: start;
}

.stats-card,
.countdown-card {
  min-height: 0;
}

.stats-card {
  padding: 34px;
}

.stats-card h2,
.countdown-card h2 {
  max-width: 620px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.98;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stats-grid article {
  min-height: 204px;
  align-content: end;
}

.stats-grid img {
  top: 22px;
  right: 20px;
  width: 70px;
  height: 70px;
}

.stats-grid strong {
  min-height: 72px;
  align-items: flex-end;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 0.95;
}

.stats-grid span {
  min-height: 44px;
  font-size: 16px;
}

.countdown-card {
  padding: 34px;
}

.countdown-card h2 {
  font-size: clamp(44px, 4vw, 66px);
}

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

.countdown-grid span {
  min-height: 138px;
  border-radius: 24px;
}

.countdown-grid b {
  font-size: 58px;
}

.main-prize-card,
.game-panel,
.documents-card,
.video-card,
.leaderboard {
  box-shadow: 0 28px 72px rgba(42, 20, 76, 0.12);
}

.main-prize-card {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  padding: 56px;
}

.prize-card {
  min-height: 310px;
}

.prize-card img {
  height: 176px;
}

.game-panel {
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 560px;
  padding: 58px;
}

.game-copy h2 {
  max-width: 520px;
}

.game-result {
  width: min(100%, 520px);
  min-height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  margin: 2px 0 22px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.game-stage {
  position: relative;
  min-height: 430px;
}

.game-orbit,
.game-mascot {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.game-orbit {
  right: 8%;
  top: 0;
  width: 76%;
  opacity: 0.9;
  filter: drop-shadow(0 30px 32px rgba(35, 12, 70, 0.24));
}

.game-mascot {
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 38%;
  filter: drop-shadow(0 26px 26px rgba(35, 12, 70, 0.22));
}

.cup-row {
  position: absolute;
  right: 5%;
  bottom: 26px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 132px);
  gap: 18px;
}

.luck-cup {
  position: relative;
  height: 156px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px 28px 42px 42px;
  color: #481474;
  background: linear-gradient(180deg, #fff, #f2d9ff 64%, #cf4be8);
  box-shadow: 0 22px 36px rgba(40, 12, 72, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.luck-cup::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 18px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7ff57, #fff8ce);
  box-shadow: inset 0 -5px 10px rgba(75, 35, 104, 0.14);
}

.luck-cup span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 52px;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.5);
}

.luck-cup b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 36px;
  font-weight: 900;
}

.luck-cup:hover,
.luck-cup:focus-visible,
.luck-cup.is-selected {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 32px 48px rgba(40, 12, 72, 0.28);
}

.luck-cup.is-muted {
  opacity: 0.58;
}

.luck-game.is-played .game-mascot {
  animation: mascotPop 0.55s ease;
}

@keyframes mascotPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08) rotate(-3deg);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1240px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding: 82px 44px 42px;
  }

  .hero-content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .promo-badge,
  .hero-date {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-timer {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-main {
    width: min(100%, 720px);
    margin: -18px auto 0;
  }

  .status-layout,
  .main-prize-card,
  .game-panel {
    grid-template-columns: 1fr;
  }

  .game-stage {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 24px, 1120px);
    grid-template-columns: 138px 1fr 48px;
    border-radius: 26px;
  }

  .brand {
    width: 138px;
    min-height: 38px;
  }

  .brand img {
    width: 138px;
  }

  .button--header {
    justify-self: end;
    width: auto;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .menu-toggle {
    order: initial;
  }

  .hero .container {
    width: min(100% - 24px, 1680px);
  }

  .hero-panel {
    min-height: 720px;
    border-radius: 30px;
  }

  .hero-layout {
    min-height: 720px;
    padding: 72px 20px 34px;
  }

  .hero h1 {
    border-radius: 28px;
    padding: 12px 20px 16px;
    font-size: clamp(45px, 13vw, 64px);
  }

  .hero-content > p:not(.promo-badge) {
    font-size: 16px;
  }

  .hero-timer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .hero-timer div {
    min-height: 76px;
    border-radius: 18px;
  }

  .hero-timer b {
    font-size: 28px;
  }

  .hero-timer span {
    font-size: 10px;
  }

  .stats-card h2,
  .countdown-card h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

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

  .stats-grid strong {
    min-height: 56px;
    font-size: 32px;
  }

  .countdown-grid b {
    font-size: 42px;
  }

  .game-panel {
    padding: 28px;
  }

  .game-stage {
    min-height: 420px;
  }

  .game-orbit {
    right: 2%;
    width: 92%;
  }

  .game-mascot {
    width: 42%;
  }

  .cup-row {
    left: 50%;
    right: auto;
    bottom: 18px;
    grid-template-columns: repeat(3, 92px);
    gap: 10px;
    transform: translateX(-50%);
  }

  .luck-cup {
    height: 118px;
    border-radius: 22px 22px 32px 32px;
  }

  .luck-cup::before {
    left: 12px;
    right: 12px;
    top: 14px;
    height: 28px;
  }

  .luck-cup span {
    left: 20px;
    right: 20px;
    bottom: 18px;
    height: 40px;
  }

  .luck-cup b {
    font-size: 27px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    grid-template-columns: 126px 1fr 44px;
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .button--header {
    padding-inline: 12px;
  }

  .hero-date {
    min-height: 38px;
    font-size: 15px;
  }

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

  .hero-main {
    width: 118%;
    margin-left: -9%;
  }

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

  .cup-row {
    grid-template-columns: repeat(3, 82px);
  }
}

/* Final alignment pass */
.brand {
  width: 174px;
}

.brand img {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.hero .container {
  width: min(100% - 52px, 1740px);
}

.hero-panel {
  min-height: 720px;
  overflow: hidden;
}

.hero-layout {
  min-height: 720px;
}

.hero-content {
  padding-top: 154px;
}

.hero h1 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(58px, 5vw, 82px);
}

.hero-content > p:not(.promo-badge) {
  max-width: 580px;
  margin-top: 18px;
}

.hero-visual {
  top: -46px;
  bottom: auto;
  width: min(760px, 55vw);
}

.hero-main {
  filter: drop-shadow(0 28px 34px rgba(35, 12, 75, 0.2));
}

.hero-decor--left {
  bottom: 13%;
  width: 130px;
}

.hero-decor--right {
  top: 18%;
  width: 140px;
}

.hero-decor--gift {
  bottom: 9%;
  width: 170px;
}

.status-layout {
  gap: 28px;
}

.stats-card,
.countdown-card {
  min-height: 580px;
}

.stats-card h2,
.countdown-card h2 {
  min-height: 126px;
}

.stats-grid article {
  min-width: 0;
  padding: 24px;
}

.stats-grid strong {
  min-height: 58px;
  white-space: nowrap;
  font-size: clamp(34px, 2.55vw, 48px);
  letter-spacing: 0;
}

.stats-grid span {
  min-height: 24px;
  white-space: nowrap;
  font-size: 17px;
}

.stats-grid img {
  width: 64px;
  height: 64px;
}

.countdown-grid b {
  font-size: clamp(48px, 3.8vw, 66px);
}

.main-prize-visual {
  min-height: 420px;
}

.phone-prize {
  right: -2%;
  top: -4%;
  width: 66%;
  max-height: 430px;
}

.gift-prize {
  width: 82%;
}

.game-panel {
  grid-template-columns: minmax(360px, 0.72fr) minmax(650px, 1.28fr);
  min-height: 650px;
  padding: 72px;
  border-radius: 38px;
}

.game-copy h2 {
  font-size: clamp(58px, 5.5vw, 90px);
  line-height: 0.92;
  text-transform: none;
}

.game-copy p {
  max-width: 540px;
  font-size: 21px;
}

.game-result {
  position: relative;
  min-height: 88px;
  max-width: 500px;
  padding-left: 90px;
  font-size: 19px;
}

.game-result::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  margin-left: -68px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #fff, #fff) padding-box,
    linear-gradient(135deg, var(--wb-magenta), var(--wb-purple)) border-box;
  border: 10px solid transparent;
  box-shadow: 0 12px 24px rgba(35, 12, 70, 0.14);
}

.game-stage {
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.game-orbit {
  left: 50%;
  right: auto;
  top: 52px;
  width: min(68%, 560px);
  opacity: 0.82;
  transform: translateX(-50%);
}

.game-mascot {
  display: none;
}

.game-stage::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 170px;
  height: 190px;
  border-radius: 48% 48% 0 0;
  background:
    radial-gradient(circle at 42% 42%, #1f1232 0 8px, transparent 9px),
    radial-gradient(circle at 64% 43%, #1f1232 0 8px, transparent 9px),
    radial-gradient(ellipse at 54% 66%, #45136f 0 28px, transparent 29px),
    linear-gradient(180deg, #c85cff, #7524d4);
  box-shadow: 0 24px 44px rgba(35, 12, 70, 0.2);
}

.game-stage::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 112px;
  z-index: 2;
  width: 72px;
  height: 44px;
  background: linear-gradient(135deg, #fff, #f3dcff);
  clip-path: polygon(0 65%, 18% 0, 40% 56%, 64% 8%, 85% 62%, 100% 18%, 100% 100%, 0 100%);
  transform: rotate(-10deg);
}

.game-stage-label {
  right: 30px;
  top: 38px;
  transform: rotate(0);
}

.game-stage-label::after {
  content: "";
  position: absolute;
  left: 56%;
  bottom: -10px;
  width: 22px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 48% 100%);
}

.cup-row {
  left: 50%;
  right: auto;
  bottom: 96px;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 28px;
  width: min(92%, 760px);
  transform: translateX(-50%);
}

.luck-cup {
  height: 320px;
  border: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #fff4ff);
  box-shadow: 0 24px 44px rgba(35, 12, 70, 0.18);
}

.glass-icon {
  position: absolute;
  left: 50%;
  top: 38px;
  z-index: 4;
  width: 112px;
  height: 136px;
  transform: translateX(-50%);
}

.glass-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  width: 78px;
  height: 82px;
  border: 5px solid rgba(197, 61, 239, 0.34);
  border-top-width: 3px;
  border-radius: 30px 30px 48px 48px;
  background:
    radial-gradient(ellipse at 48% 78%, rgba(216, 78, 238, 0.36), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 184, 255, 0.62));
  box-shadow: inset 0 -10px 18px rgba(198, 59, 236, 0.14);
}

.glass-icon::after {
  content: "";
  position: absolute;
  left: 52px;
  top: 78px;
  width: 8px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(198, 59, 236, 0.45), rgba(198, 59, 236, 0.2));
  box-shadow:
    -28px 52px 0 4px rgba(198, 59, 236, 0.12),
    0 52px 0 4px rgba(198, 59, 236, 0.16),
    28px 52px 0 4px rgba(198, 59, 236, 0.12);
}

.luck-cup::before,
.luck-cup::after,
.luck-cup span {
  display: none;
}

.luck-cup b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  padding: 0;
  color: #6d19c6;
  font-size: 72px;
}

.luck-cup small {
  left: 34px;
  right: 34px;
  bottom: 30px;
  min-height: 48px;
  font-size: 15px;
}

.luck-cup:hover,
.luck-cup:focus-visible,
.luck-cup.is-selected {
  transform: translateY(-10px);
}

.step-card--accent {
  transform: none;
}

.how-panel {
  align-items: stretch;
}

.step-card {
  height: 100%;
}

@media (max-width: 1240px) {
  .hero-content {
    padding-top: 150px;
  }

  .hero-visual {
    width: min(700px, 82vw);
  }

  .game-panel {
    grid-template-columns: 1fr;
  }

  .game-copy {
    text-align: left;
    align-items: flex-start;
  }

  .game-stage {
    min-height: 540px;
  }
}

@media (max-width: 820px) {
  .brand,
  .brand img {
    width: 132px;
  }

  .hero-panel,
  .hero-layout {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-visual {
    top: -22px;
    width: min(620px, 104vw);
  }

  .stats-grid strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .stats-grid span {
    white-space: normal;
  }

  .main-prize-visual {
    min-height: 340px;
  }

  .phone-prize {
    width: 74%;
  }

  .game-panel {
    padding: 28px;
  }

  .game-copy h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .game-stage {
    min-height: 500px;
  }

  .cup-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 24px);
  }

  .luck-cup {
    height: 224px;
    border-radius: 24px;
  }

  .glass-icon {
    top: 24px;
    width: 78px;
    height: 104px;
  }

  .glass-icon::before {
    left: 12px;
    width: 54px;
    height: 62px;
  }

  .glass-icon::after {
    left: 37px;
    top: 58px;
    height: 38px;
  }

  .luck-cup b {
    bottom: 58px;
    font-size: 46px;
  }

  .luck-cup small {
    left: 10px;
    right: 10px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding-top: 94px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-visual {
    width: 118%;
  }

  .stats-grid strong {
    white-space: nowrap;
    font-size: 30px;
  }

  .stats-grid article:first-child strong {
    font-size: 26px;
  }

  .cup-row {
    bottom: 72px;
  }
}

/* Promo documents block */
.documents {
  position: relative;
  padding-top: 72px;
}

.documents .container {
  width: min(100% - 64px, 1560px);
}

.documents__card {
  position: relative;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border: 1px solid rgba(203, 17, 171, 0.12);
  border-radius: 36px;
  padding: 64px 78px;
  background:
    radial-gradient(circle at 5% 8%, rgba(203, 17, 171, 0.16), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(255, 211, 92, 0.13), transparent 15rem),
    linear-gradient(135deg, #ffffff 0%, #f8f1ff 100%);
  box-shadow: 0 32px 80px rgba(49, 22, 88, 0.13);
}

.documents__card::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(203, 17, 171, 0.22);
  filter: blur(42px);
}

.documents__card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 42px;
  width: 430px;
  height: 220px;
  border: 3px solid rgba(123, 31, 209, 0.12);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 220px 0 0;
  transform: rotate(-10deg);
}

.documents__visual,
.documents__content {
  position: relative;
  z-index: 2;
}

.documents__visual {
  display: flex;
  justify-content: center;
}

.documents__pdf-card {
  position: relative;
  width: 360px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 214, 89, 0.22), transparent 8rem),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.16), transparent 9rem),
    linear-gradient(145deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 26px 52px rgba(123, 31, 209, 0.26);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.documents__pdf-card:hover,
.documents__pdf-card:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 34px 70px rgba(123, 31, 209, 0.32);
}

.documents__pdf-card::before {
  content: "";
  position: absolute;
  inset: 118px auto auto 50%;
  width: 150px;
  height: 180px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f2e4ff);
  box-shadow: 0 18px 34px rgba(45, 12, 78, 0.22);
  transform: translateX(-50%);
}

.documents__pdf-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 118px;
  width: 54px;
  height: 54px;
  border-radius: 0 20px 0 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 49%, rgba(123, 31, 209, 0.25) 50%),
    #f8edff;
  transform: translateX(24px);
}

.documents__pdf-label {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(84, 11, 147, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 20px;
  font-weight: 900;
}

.documents__pdf-icon {
  position: absolute;
  left: 50%;
  top: 192px;
  z-index: 5;
  width: 92px;
  height: 76px;
  transform: translateX(-50%);
}

.documents__pdf-icon::before,
.documents__pdf-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 999px;
  background: rgba(123, 31, 209, 0.22);
  box-shadow:
    0 24px 0 rgba(123, 31, 209, 0.2),
    0 48px 0 rgba(123, 31, 209, 0.18);
}

.documents__pdf-card strong,
.documents__pdf-card small,
.documents__pdf-card em {
  position: relative;
  z-index: 4;
}

.documents__pdf-card strong {
  max-width: 240px;
  font-size: 30px;
  line-height: 1.04;
  font-weight: 900;
}

.documents__pdf-card small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
}

.documents__pdf-card em {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.documents__pdf-card em::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background: linear-gradient(135deg, transparent 48%, currentColor 49% 55%, transparent 56%);
}

.documents__pdf-card i {
  position: absolute;
  right: 24px;
  top: 82px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #8a5b10;
  background:
    radial-gradient(circle, #fff4bd 0 55%, #ffd76b 56% 100%);
  box-shadow: 0 12px 26px rgba(67, 26, 92, 0.18);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(18deg);
}

.documents__content {
  max-width: 780px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--wb-deep-purple);
  background: rgba(123, 31, 209, 0.1);
  font-size: 16px;
  font-weight: 900;
}

.section-badge::before {
  content: "";
  width: 18px;
  height: 22px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) 50% 42% / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 62% / 8px 2px no-repeat;
}

.documents__content h2 {
  max-width: 760px;
  margin-top: 28px;
  color: #21173d;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.03;
}

.documents__content p {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--wb-muted);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
}

.documents__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.documents__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(123, 31, 209, 0.09);
  border-radius: 999px;
  padding: 0 18px;
  color: #251455;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(42, 14, 75, 0.06);
  font-size: 15px;
  font-weight: 800;
}

.documents__chips span::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 2px, transparent 3px),
    linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
}

.documents__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 46px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 18px 36px rgba(203, 17, 171, 0.22);
}

.button--secondary {
  color: #251455;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(123, 31, 209, 0.14);
  box-shadow: 0 12px 28px rgba(42, 14, 75, 0.08);
}

.documents__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--wb-purple);
  font-size: 17px;
  font-weight: 900;
}

.documents__link::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 1180px) {
  .documents__card {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
    padding: 48px;
  }

  .documents__pdf-card {
    width: 320px;
    min-height: 390px;
  }

  .documents__content h2 {
    font-size: clamp(38px, 4.6vw, 54px);
  }

  .documents__content p {
    font-size: 19px;
  }
}

@media (max-width: 860px) {
  .documents .container {
    width: min(100% - 28px, 1560px);
  }

  .documents__card {
    grid-template-columns: 1fr;
    gap: 32px;
    border-radius: 30px;
    padding: 30px;
  }

  .documents__visual {
    justify-content: flex-start;
  }

  .documents__pdf-card {
    width: min(100%, 360px);
  }

  .documents__content h2 {
    margin-top: 20px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .documents__content p {
    font-size: 17px;
  }

  .documents__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .documents__actions .button,
  .documents__link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .documents__card {
    padding: 22px;
  }

  .documents__pdf-card {
    min-height: 360px;
    padding: 26px;
  }

  .documents__pdf-card strong {
    font-size: 26px;
  }

  .documents__chips {
    gap: 10px;
  }

  .documents__chips span {
    width: 100%;
  }
}

/* Luck game exact promo card */
.luck-game.game-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(720px, 1.28fr);
  gap: 54px;
  min-height: 700px;
  overflow: hidden;
  border-radius: 38px;
  padding: 72px 78px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.18), transparent 15rem),
    radial-gradient(circle at 78% 48%, rgba(255, 112, 232, 0.2), transparent 19rem),
    linear-gradient(135deg, #cb11ab 0%, #7b1fd1 58%, #5816b5 100%);
  box-shadow: 0 34px 86px rgba(57, 21, 103, 0.22);
}

.luck-game .game-copy {
  position: relative;
  z-index: 5;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.luck-game .section-kicker--light {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 17px;
}

.luck-game .game-copy h2 {
  max-width: 520px;
  margin-top: 30px;
  color: #fff;
  font-size: clamp(64px, 5.8vw, 96px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.luck-game .game-copy > p {
  max-width: 520px;
  margin: 30px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 23px;
  line-height: 1.36;
  font-weight: 700;
}

.luck-game .game-copy > p strong {
  color: #fff;
}

.luck-game .game-hints {
  width: min(100%, 460px);
  gap: 9px;
  margin-bottom: 30px;
}

.luck-game .game-hints li {
  min-height: 54px;
  border-radius: 999px;
  padding-left: 66px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(32, 10, 70, 0.08);
  font-size: 20px;
  font-weight: 800;
}

.luck-game .game-hints li::before {
  left: 16px;
  width: 36px;
  height: 36px;
  color: #6a18b9;
  background: linear-gradient(135deg, #eaff60, #f6ff99);
  box-shadow: 0 10px 18px rgba(215, 255, 87, 0.2);
  font-size: 20px;
}

.luck-game .game-result {
  width: min(100%, 500px);
  min-height: 112px;
  align-items: center;
  margin: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 22px 24px 22px 118px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(42, 12, 86, 0.08);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 700;
}

.luck-game .game-result::before {
  left: 28px;
  top: 50%;
  width: 58px;
  height: 58px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 31, 209, 0.9), rgba(203, 17, 171, 0.86));
  box-shadow: 0 14px 28px rgba(32, 10, 70, 0.18);
  transform: translateY(-50%);
}

.luck-game .game-result::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 50%;
  width: 27px;
  height: 25px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  transform: translateY(-30%);
  box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.08);
}

.luck-game .button--gold {
  min-height: 74px;
  min-width: 460px;
  border-radius: 999px;
  color: #5d138f;
  background:
    radial-gradient(circle at 50% -30%, #fff 0%, transparent 42%),
    linear-gradient(135deg, #f4ff73, #d8ff43);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42) inset,
    0 0 38px rgba(218, 255, 65, 0.55),
    0 22px 44px rgba(44, 11, 78, 0.18);
  font-size: 22px;
  font-weight: 900;
}

.luck-game .button--gold::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 4px;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-34deg);
}

.luck-game .game-stage {
  position: relative;
  z-index: 3;
  min-height: 560px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 49%, rgba(255, 255, 255, 0.14), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 20px 42px rgba(44, 10, 86, 0.08);
}

.luck-game .game-stage::before {
  content: "";
  position: absolute;
  inset: auto auto 96px 50%;
  width: 560px;
  height: 560px;
  border: 18px solid rgba(255, 117, 233, 0.42);
  border-left-color: rgba(255, 171, 234, 0.68);
  border-bottom-color: rgba(197, 115, 255, 0.36);
  border-radius: 50%;
  transform: translateX(-50%);
}

.luck-game .game-stage::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -44px;
  z-index: 7;
  width: 220px;
  height: 220px;
  background: url("../img/v2/character.png") center / contain no-repeat;
  filter: drop-shadow(0 24px 34px rgba(40, 10, 82, 0.24));
  pointer-events: none;
}

.luck-game .game-orbit,
.luck-game .game-mascot,
.luck-game .game-stage > .game-mascot {
  display: none;
}

.luck-game .game-stage-label {
  position: absolute;
  right: 34px;
  top: 34px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  border-radius: 999px;
  padding: 0 30px;
  color: #7b1fd1;
  background: #fff;
  box-shadow: 0 18px 34px rgba(40, 10, 82, 0.18);
  font-size: 20px;
  font-weight: 900;
  transform: none;
}

.luck-game .game-stage-label::after {
  content: "";
  position: absolute;
  left: 58%;
  bottom: -15px;
  width: 32px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.luck-game .game-stage-label span,
.luck-game .game-stage-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 14px;
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.luck-game .game-stage-label::before {
  content: none;
  display: none;
}

.luck-game .cup-row {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 142px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 30px;
  width: min(90%, 760px);
  transform: translateX(-50%);
}

.luck-game .luck-cup {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 0;
  border-radius: 31px;
  padding: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.98) 0 8px, transparent 9px),
    linear-gradient(180deg, #fff 0%, #fff4ff 100%);
  box-shadow:
    0 30px 54px rgba(40, 10, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease,
    filter 0.24s ease;
}

.luck-game .luck-cup::before,
.luck-game .luck-cup::after {
  content: "";
  position: absolute;
  z-index: 6;
  display: block;
}

.luck-game .luck-cup::before {
  right: 26px;
  top: 48px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(45deg, transparent 42%, #f3c9ff 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #f3c9ff 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.luck-game .luck-cup::after {
  left: 30px;
  bottom: 96px;
  width: 26px;
  height: 26px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(203, 17, 171, 0.18) 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(123, 31, 209, 0.18) 43% 57%, transparent 58%);
}

.luck-game .luck-cup__glass {
  position: absolute;
  left: 50%;
  top: 38px;
  z-index: 4;
  width: 142px;
  height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(129, 35, 182, 0.18));
  transform: translateX(-50%);
  pointer-events: none;
}

.luck-game .glass-icon,
.luck-game .luck-cup span {
  display: none;
}

.luck-game .luck-cup b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 84px;
  z-index: 5;
  display: block;
  padding: 0;
  color: #711ec4;
  font-size: 74px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.luck-game .luck-cup small {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 5;
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.38), transparent 42%),
    linear-gradient(135deg, #9a2de5, #6b18c3);
  box-shadow:
    0 0 24px rgba(155, 45, 229, 0.32),
    0 12px 24px rgba(72, 18, 130, 0.16);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.luck-game .luck-cup:hover,
.luck-game .luck-cup:focus-visible,
.luck-game .luck-cup.is-selected {
  transform: translateY(-12px);
  box-shadow:
    0 38px 68px rgba(40, 10, 82, 0.24),
    0 0 42px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.luck-game .luck-cup.is-selected small {
  color: #5d138f;
  background:
    radial-gradient(circle at 50% -20%, #fff, transparent 42%),
    linear-gradient(135deg, #ecff67, #d8ff43);
  box-shadow:
    0 0 34px rgba(218, 255, 65, 0.55),
    0 14px 26px rgba(72, 18, 130, 0.16);
}

.luck-game .luck-cup.is-muted {
  opacity: 0.58;
  filter: saturate(0.76);
}

@media (max-width: 1240px) {
  .luck-game.game-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px;
  }

  .luck-game .game-stage {
    min-height: 570px;
  }

  .luck-game .game-copy {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .luck-game.game-panel {
    padding: 30px;
    border-radius: 30px;
  }

  .luck-game .game-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .luck-game .game-copy > p {
    font-size: 18px;
  }

  .luck-game .game-result {
    min-height: 86px;
    padding: 18px 18px 18px 84px;
    font-size: 18px;
  }

  .luck-game .game-result::before {
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .luck-game .game-result::after {
    left: 31px;
  }

  .luck-game .button--gold {
    min-width: 0;
    width: 100%;
    min-height: 62px;
    font-size: 18px;
  }

  .luck-game .game-stage {
    min-height: 520px;
  }

  .luck-game .game-stage::before {
    width: 420px;
    height: 420px;
    bottom: 105px;
    border-width: 13px;
  }

  .luck-game .game-stage::after {
    width: 150px;
    height: 150px;
    right: -20px;
    bottom: -30px;
  }

  .luck-game .game-stage-label {
    right: 50%;
    top: 22px;
    min-height: 56px;
    padding: 0 20px;
    font-size: 15px;
    transform: translateX(50%);
  }

  .luck-game .cup-row {
    bottom: 106px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: calc(100% - 32px);
  }

  .luck-game .luck-cup {
    height: 240px;
    border-radius: 24px;
  }

  .luck-game .luck-cup__glass {
    top: 26px;
    width: 104px;
    height: 104px;
  }

  .luck-game .luck-cup b {
    bottom: 66px;
    font-size: 46px;
  }

  .luck-game .luck-cup small {
    left: 10px;
    right: 10px;
    bottom: 16px;
    min-height: 38px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .luck-game.game-panel {
    padding: 22px;
  }

  .luck-game .game-hints li {
    min-height: 46px;
    padding-left: 56px;
    font-size: 16px;
  }

  .luck-game .game-hints li::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .luck-game .game-stage {
    min-height: 455px;
  }

  .luck-game .cup-row {
    bottom: 92px;
    gap: 8px;
    width: calc(100% - 20px);
  }

  .luck-game .luck-cup {
    height: 206px;
  }

  .luck-game .luck-cup__glass {
    width: 86px;
    height: 86px;
  }

  .luck-game .luck-cup b {
    bottom: 56px;
    font-size: 38px;
  }
}

/* Hero readability, tech prize image, rules image */
.hero-content {
  z-index: 12;
}

.hero-content > p:not(.promo-badge) {
  width: fit-content;
  max-width: 590px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 13px 20px;
  background: rgba(56, 10, 92, 0.36);
  box-shadow: 0 18px 34px rgba(38, 9, 77, 0.12);
  backdrop-filter: blur(12px);
  text-shadow: 0 2px 10px rgba(40, 8, 68, 0.35);
}

.hero-visual {
  top: 78px;
  width: min(660px, 48vw);
  opacity: 0.92;
}

.hero-main {
  transform: translateY(16px);
}

.main-prize-visual {
  min-height: 460px;
  isolation: isolate;
}

.main-prize-visual::before,
.main-prize-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.main-prize-visual::before {
  right: 9%;
  top: -2%;
  z-index: 0;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(203, 17, 171, 0.16), rgba(123, 31, 209, 0.12));
  box-shadow:
    -250px 128px 0 -84px rgba(215, 255, 87, 0.18),
    -96px 260px 0 -120px rgba(203, 17, 171, 0.18);
  animation: prizeOrbs 7s ease-in-out infinite;
}

.main-prize-visual::after {
  right: 2%;
  bottom: 10%;
  z-index: 0;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(123, 31, 209, 0.08);
  animation: prizeOrbs 6s ease-in-out infinite reverse;
}

.tech-prize {
  position: absolute;
  right: -2%;
  top: 50%;
  z-index: 3;
  width: min(94%, 720px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(56, 18, 92, 0.18));
  transform: translateY(-50%);
  animation: techFloat 5.8s ease-in-out infinite;
}

.phone-prize,
.gift-prize {
  display: none;
}

@keyframes techFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(calc(-50% - 14px)) rotate(-1.2deg);
  }
}

@keyframes prizeOrbs {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.04);
  }
}

.documents__pdf-card {
  width: 420px;
  min-height: auto;
  padding: 0;
  background: transparent;
  box-shadow: 0 28px 58px rgba(123, 31, 209, 0.18);
}

.documents__pdf-card::before,
.documents__pdf-card::after,
.documents__pdf-label,
.documents__pdf-icon,
.documents__pdf-card strong,
.documents__pdf-card small,
.documents__pdf-card em,
.documents__pdf-card i {
  display: none;
}

.documents__rules-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(123, 31, 209, 0.22));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.documents__pdf-card:hover .documents__rules-image,
.documents__pdf-card:focus-visible .documents__rules-image {
  transform: translateY(-4px) rotate(-1deg);
  filter: drop-shadow(0 34px 58px rgba(123, 31, 209, 0.28));
}

@media (max-width: 1240px) {
  .hero-visual {
    top: 124px;
    width: min(640px, 78vw);
  }

  .tech-prize {
    right: 50%;
    width: min(96%, 680px);
    transform: translate(50%, -50%);
  }

  @keyframes techFloat {
    0%,
    100% {
      transform: translate(50%, -50%) rotate(0deg);
    }
    50% {
      transform: translate(50%, calc(-50% - 14px)) rotate(-1.2deg);
    }
  }
}

@media (max-width: 860px) {
  .hero-content > p:not(.promo-badge) {
    width: auto;
  }

  .hero-visual {
    top: 184px;
    width: min(520px, 104vw);
    opacity: 0.86;
  }

  .main-prize-visual {
    min-height: 330px;
  }

  .tech-prize {
    max-height: 320px;
  }

  .documents__pdf-card {
    width: min(100%, 420px);
  }
}

@media (max-width: 520px) {
  .hero-visual {
    top: 218px;
    width: 118%;
  }

  .tech-prize {
    max-height: 270px;
  }
}

/* Split hero redesign */
.hero.hero--split {
  padding: 34px 0 0;
}

.hero.hero--split .container {
  width: min(100% - 48px, 1580px);
}

.hero__card {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  padding: 72px 76px;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #4b00a8 0%, #8f12e8 45%, #cb11ab 100%);
  box-shadow: 0 30px 90px rgba(91, 20, 160, 0.28);
  isolation: isolate;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    repeating-radial-gradient(
      circle at 78% 48%,
      rgba(255, 255, 255, 0.16) 0 2px,
      transparent 2px 72px
    ),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.16), transparent 16rem);
  opacity: 0.34;
  pointer-events: none;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -2;
  width: 58%;
  background: linear-gradient(90deg, rgba(43, 0, 100, 0.34), rgba(43, 0, 100, 0));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 570px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 900;
}

.hero__badge span {
  position: relative;
  width: 22px;
  height: 20px;
  margin-right: 12px;
  border: 3px solid #d8ff43;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  flex: 0 0 auto;
}

.hero__badge span::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -12px;
  width: 22px;
  height: 16px;
  background: #d8ff43;
  clip-path: polygon(0 100%, 0 34%, 22% 70%, 35% 0, 50% 68%, 65% 0, 78% 70%, 100% 34%, 100% 100%);
}

.hero__badge span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: #d8ff43;
}

.hero__content h1 {
  margin: 34px 0 0;
  color: #fff;
  font-size: clamp(62px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(30, 0, 80, 0.25);
}

.hero__text {
  max-width: 535px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 23px;
  line-height: 1.35;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__actions .button {
  min-height: 60px;
  border-radius: 18px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 900;
}

.hero__actions .button--primary {
  color: #fff;
  background: linear-gradient(135deg, #f126d2, #8d18db);
  box-shadow: 0 18px 38px rgba(198, 19, 185, 0.32);
}

.hero__actions .button--primary::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    linear-gradient(#fff, #fff) 50% 50% / 12px 2px no-repeat,
    linear-gradient(#fff, #fff) 50% 50% / 2px 12px no-repeat,
    transparent;
  border: 2px solid #fff;
}

.hero__actions .button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero__actions .button--secondary::before {
  content: "";
  width: 20px;
  height: 20px;
  background:
    linear-gradient(#fff, #fff) 2px 10px / 3px 8px no-repeat,
    linear-gradient(#fff, #fff) 8px 5px / 3px 13px no-repeat,
    linear-gradient(#fff, #fff) 14px 1px / 3px 17px no-repeat;
  opacity: 0.95;
}

.hero__actions .button--secondary:hover,
.hero__actions .button--secondary:focus-visible {
  color: var(--wb-purple);
  background: #fff;
}

.hero__actions .button--secondary:hover::before,
.hero__actions .button--secondary:focus-visible::before {
  background:
    linear-gradient(var(--wb-purple), var(--wb-purple)) 2px 10px / 3px 8px no-repeat,
    linear-gradient(var(--wb-purple), var(--wb-purple)) 8px 5px / 3px 13px no-repeat,
    linear-gradient(var(--wb-purple), var(--wb-purple)) 14px 1px / 3px 17px no-repeat;
}

.hero__timer {
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.timer__item {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(41, 6, 90, 0.12);
  backdrop-filter: blur(16px);
}

.timer__item strong {
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.timer__item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__timer-caption {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.hero__timer-caption::before {
  content: "";
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero__timer-caption::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 8px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(5px, -2px);
  transform-origin: left bottom;
}

.hero__visual {
  position: absolute;
  right: 48px;
  bottom: 0;
  z-index: 2;
  width: 56%;
  max-width: 800px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(30, 0, 80, 0.35));
  transform: translateY(8px);
}

.hero__spark {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.hero__spark--one {
  right: 34%;
  top: 23%;
}

.hero__spark--two {
  right: 8%;
  top: 34%;
  color: rgba(255, 214, 94, 0.88);
  transform: rotate(45deg) scale(0.72);
}

.hero__spark--three {
  right: 45%;
  top: 49%;
  transform: rotate(45deg) scale(0.58);
}

.ticker {
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .hero__card {
    grid-template-columns: 1fr;
    min-height: 780px;
    padding: 56px 48px 0;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__visual {
    right: -10px;
    bottom: -8px;
    width: min(720px, 68%);
  }
}

@media (max-width: 820px) {
  .hero.hero--split .container {
    width: min(100% - 28px, 1580px);
  }

  .hero__card {
    min-height: auto;
    padding: 34px 22px 0;
    border-radius: 30px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__badge {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero__content h1 {
    margin-top: 26px;
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.94;
  }

  .hero__text {
    max-width: none;
    margin-top: 20px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__timer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .timer__item {
    min-height: 82px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 115%;
    max-width: none;
    margin: 18px -7.5% -8px;
  }

  .hero__visual img {
    transform: none;
  }

  .ticker {
    margin-top: 24px;
  }
}

/* Centered hero and clearer blocks */
.hero .container {
  width: min(100% - 44px, 1880px);
}

.hero-panel {
  min-height: 760px;
}

.hero-layout {
  display: block;
  min-height: 760px;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 7;
  max-width: 760px;
  margin: 0 auto;
  padding: 92px 24px 0;
  text-align: center;
}

.promo-badge,
.hero-date {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  margin-top: 8px;
  font-size: clamp(58px, 5.8vw, 92px);
}

.hero-content > p:not(.promo-badge) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.hero-timer {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-visual {
  position: absolute;
  left: 50%;
  bottom: -54px;
  z-index: 3;
  width: min(900px, 70vw);
  transform: translateX(-50%);
}

.hero-main {
  width: 100%;
  margin: 0 auto;
}

.hero-decor--left {
  left: 5%;
  bottom: 18%;
}

.hero-decor--right {
  right: 6%;
  top: 16%;
}

.hero-decor--gift {
  right: 9%;
  bottom: 10%;
}

.status-section .container {
  width: min(100% - 64px, 1680px);
}

.status-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}

.stats-card,
.countdown-card {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 42px;
}

.stats-card h2,
.countdown-card h2 {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
}

.stats-grid,
.countdown-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stats-grid article,
.countdown-grid span {
  min-height: 0;
  height: 100%;
}

.stats-grid article {
  align-content: end;
}

.countdown-grid span {
  align-content: center;
}

.game-hints {
  counter-reset: game-step;
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.game-hints li {
  counter-increment: game-step;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 16px 0 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.game-hints li::before {
  content: counter(game-step);
  position: absolute;
  left: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--wb-deep-purple);
  background: #d7ff57;
  font-size: 12px;
  font-weight: 900;
}

.game-stage {
  min-height: 460px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.18), transparent 13rem),
    rgba(255, 255, 255, 0.06);
}

.game-stage-label {
  position: absolute;
  right: 14%;
  top: 38px;
  z-index: 8;
  border-radius: 999px;
  padding: 11px 18px;
  color: #421365;
  background: #fff;
  box-shadow: 0 18px 32px rgba(35, 12, 70, 0.18);
  font-size: 15px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.game-orbit {
  right: 4%;
  top: 28px;
  width: 70%;
}

.game-mascot {
  left: 5%;
  bottom: 46px;
  width: 34%;
}

.cup-row {
  right: 6%;
  bottom: 70px;
  grid-template-columns: repeat(3, 148px);
  gap: 22px;
}

.luck-cup {
  height: 178px;
  border-width: 3px;
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 218, 255, 0.98) 54%, #d652ee);
  opacity: 1;
}

.luck-cup::after {
  content: "";
  position: absolute;
  inset: 16px 20px auto;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7ff57, #fff7b8);
  box-shadow: 0 10px 22px rgba(215, 255, 87, 0.28);
}

.luck-cup::before {
  background: rgba(83, 25, 124, 0.12);
}

.luck-cup b {
  padding-top: 24px;
  color: #5a16b5;
  font-size: 46px;
}

.luck-cup small {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.luck-cup.is-selected small {
  background: linear-gradient(135deg, #d7ff57, #fff6a6);
  color: #421365;
}

.luck-cup.is-muted {
  opacity: 0.72;
  filter: saturate(0.72);
}

@media (max-width: 1240px) {
  .hero-panel,
  .hero-layout {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-visual {
    bottom: -38px;
    width: min(820px, 86vw);
  }

  .status-layout {
    grid-template-columns: 1fr;
  }

  .stats-card,
  .countdown-card {
    min-height: auto;
  }

  .stats-card h2,
  .countdown-card h2 {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .hero .container,
  .status-section .container {
    width: min(100% - 24px, 1880px);
  }

  .hero-panel,
  .hero-layout {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-visual {
    bottom: -12px;
    width: 112%;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .stats-card,
  .countdown-card {
    padding: 24px;
  }

  .game-stage-label {
    right: 50%;
    top: 18px;
    transform: translateX(50%) rotate(-3deg);
  }

  .game-mascot {
    left: 4%;
    bottom: 86px;
    width: 38%;
  }

  .cup-row {
    bottom: 28px;
    grid-template-columns: repeat(3, 96px);
    gap: 10px;
  }

  .luck-cup {
    height: 130px;
  }

  .luck-cup b {
    font-size: 30px;
  }

  .luck-cup small {
    left: 10px;
    right: 10px;
    bottom: 12px;
    min-height: 26px;
    font-size: 10px;
  }
}

@media (max-width: 520px) {
  .hero-timer,
  .stats-grid,
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid strong {
    font-size: 30px;
  }

  .game-stage {
    min-height: 390px;
  }

  .cup-row {
    grid-template-columns: repeat(3, 82px);
  }
}

/* Compact mini-game redesign */
.mini-game.section {
  padding: 72px 0;
}

.mini-game .container {
  width: min(100% - 48px, 1380px);
}

.mini-game .luck-game.game-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.39fr) minmax(0, 0.61fr);
  align-items: center;
  gap: 46px;
  min-height: 630px;
  overflow: hidden;
  border: 0;
  border-radius: 40px;
  padding: 44px 54px 44px 58px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.22), transparent 15rem),
    radial-gradient(circle at 82% 26%, rgba(255, 135, 240, 0.24), transparent 18rem),
    radial-gradient(circle at 58% 118%, rgba(77, 9, 157, 0.58), transparent 24rem),
    linear-gradient(135deg, #cb11ab 0%, #921ee2 48%, #651bd0 100%);
  box-shadow: 0 34px 86px rgba(57, 21, 103, 0.24);
}

.mini-game .luck-game.game-panel::before,
.mini-game .luck-game.game-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mini-game .luck-game.game-panel::before {
  inset: -18% auto auto -8%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  opacity: 0.62;
}

.mini-game .luck-game.game-panel::after {
  right: -8%;
  bottom: -24%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 66%);
}

.mini-game .game-copy {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  text-align: left;
}

.mini-game .section-kicker--light {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mini-game .game-copy h2 {
  max-width: 430px;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(64px, 5.05vw, 86px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 12px 34px rgba(31, 7, 69, 0.24);
}

.mini-game .game-copy > p {
  max-width: 440px;
  margin: 20px 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.25vw, 22px);
  line-height: 1.34;
  font-weight: 650;
}

.mini-game .game-hints {
  width: min(100%, 430px);
  counter-reset: game-step;
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.mini-game .game-hints li {
  counter-increment: game-step;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px 0 64px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 12px 28px rgba(29, 7, 69, 0.08);
  font-size: 18px;
  font-weight: 850;
}

.mini-game .game-hints li::before {
  content: counter(game-step);
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #6a18b9;
  background: linear-gradient(135deg, #eaff60, #f7ff9a);
  box-shadow: 0 10px 20px rgba(215, 255, 87, 0.22);
  font-size: 18px;
  font-weight: 950;
  transform: translateY(-50%);
}

.mini-game .game-result {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 430px);
  min-height: 78px;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 16px 20px 16px 92px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(42, 12, 86, 0.1);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
}

.mini-game .game-result::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123, 31, 209, 0.92), rgba(203, 17, 171, 0.88));
  box-shadow: 0 14px 28px rgba(32, 10, 70, 0.18);
  transform: translateY(-50%);
}

.mini-game .game-result::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 50%;
  width: 20px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  transform: translateY(-22%);
  box-shadow:
    0 -8px 0 -5px #fff,
    8px -10px 0 -7px #fff,
    -8px -10px 0 -7px #fff;
}

.mini-game .button--gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  min-width: 0;
  min-height: 62px;
  border-radius: 999px;
  color: #5a168b;
  background:
    radial-gradient(circle at 50% -35%, #fff 0%, transparent 44%),
    linear-gradient(135deg, #f4ff73 0%, #d9ff47 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44) inset,
    0 0 34px rgba(218, 255, 65, 0.58),
    0 22px 42px rgba(44, 11, 78, 0.18);
  font-size: 20px;
  font-weight: 950;
}

.mini-game .button--gold::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 12px;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.mini-game .game-stage {
  position: relative;
  z-index: 5;
  min-height: 510px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.16), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 44px rgba(44, 10, 86, 0.08);
}

.mini-game .game-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74%, 520px);
  aspect-ratio: 1;
  border: 14px solid rgba(255, 117, 233, 0.42);
  border-left-color: rgba(255, 171, 234, 0.68);
  border-bottom-color: rgba(197, 115, 255, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -45%);
  pointer-events: none;
}

.mini-game .game-stage::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -42px;
  z-index: 9;
  width: 178px;
  height: 178px;
  background: url("../img/v2/character.png") center / contain no-repeat;
  filter: drop-shadow(0 24px 34px rgba(40, 10, 82, 0.24));
  pointer-events: none;
}

.mini-game .game-orbit,
.mini-game .game-mascot,
.mini-game .game-stage > .game-mascot {
  display: none;
}

.mini-game .game-stage-label {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  border-radius: 999px;
  padding: 0 26px;
  color: #7b1fd1;
  background: #fff;
  box-shadow: 0 18px 34px rgba(40, 10, 82, 0.18);
  font-size: 18px;
  font-weight: 950;
  transform: none;
}

.mini-game .game-stage-label::after {
  content: "";
  position: absolute;
  left: 62%;
  bottom: -13px;
  width: 28px;
  height: 18px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.mini-game .game-stage-label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 13px;
  color: #cb11ab;
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.mini-game .cup-row {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 74px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 24px;
  width: min(92%, 640px);
  transform: translateX(-50%);
}

.mini-game .cup-row::before,
.mini-game .cup-row::after {
  content: "";
  position: absolute;
  z-index: 12;
  width: 30px;
  height: 30px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.72) 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(255, 255, 255, 0.72) 43% 57%, transparent 58%);
  transform: rotate(45deg);
  pointer-events: none;
}

.mini-game .cup-row::before {
  right: -22px;
  top: 34px;
}

.mini-game .cup-row::after {
  left: -18px;
  bottom: 82px;
  opacity: 0.55;
}

.mini-game .luck-cup {
  position: relative;
  display: block;
  height: 292px;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  padding: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.98) 0 8px, transparent 9px),
    linear-gradient(180deg, #fff 0%, #fff5ff 100%);
  box-shadow:
    0 30px 54px rgba(40, 10, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 1;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease,
    filter 0.24s ease;
}

.mini-game .luck-cup::before,
.mini-game .luck-cup::after {
  content: "";
  position: absolute;
  z-index: 6;
  display: block;
  pointer-events: none;
}

.mini-game .luck-cup::before {
  right: 24px;
  top: 46px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(45deg, transparent 42%, #f3c9ff 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #f3c9ff 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.mini-game .luck-cup::after {
  left: 28px;
  bottom: 92px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(203, 17, 171, 0.18) 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(123, 31, 209, 0.18) 43% 57%, transparent 58%);
}

.mini-game .luck-cup__glass {
  position: absolute;
  left: 50%;
  top: 34px;
  z-index: 4;
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(129, 35, 182, 0.18));
  transform: translateX(-50%);
  pointer-events: none;
}

.mini-game .glass-icon,
.mini-game .luck-cup span {
  display: none;
}

.mini-game .luck-cup b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  z-index: 5;
  display: block;
  padding: 0;
  color: #711ec4;
  font-size: 68px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.mini-game .luck-cup small {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 5;
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.38), transparent 42%),
    linear-gradient(135deg, #9a2de5, #6b18c3);
  box-shadow:
    0 0 24px rgba(155, 45, 229, 0.32),
    0 12px 24px rgba(72, 18, 130, 0.16);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-game .luck-cup:hover,
.mini-game .luck-cup:focus-visible,
.mini-game .luck-cup.is-selected {
  transform: translateY(-8px);
  box-shadow:
    0 38px 68px rgba(40, 10, 82, 0.24),
    0 0 42px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mini-game .luck-cup.is-selected small {
  color: #5d138f;
  background:
    radial-gradient(circle at 50% -20%, #fff, transparent 42%),
    linear-gradient(135deg, #ecff67, #d8ff43);
  box-shadow:
    0 0 34px rgba(218, 255, 65, 0.55),
    0 14px 26px rgba(72, 18, 130, 0.16);
}

.mini-game .luck-cup.is-muted {
  opacity: 0.58;
  filter: saturate(0.76);
}

@media (max-width: 1240px) {
  .mini-game .luck-game.game-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 44px;
  }

  .mini-game .game-copy,
  .mini-game .game-copy h2,
  .mini-game .game-copy > p,
  .mini-game .game-hints,
  .mini-game .game-result,
  .mini-game .button--gold {
    max-width: 100%;
  }

  .mini-game .game-stage {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .mini-game.section {
    padding: 54px 0;
  }

  .mini-game .container {
    width: min(100% - 28px, 1380px);
  }

  .mini-game .luck-game.game-panel {
    border-radius: 30px;
    padding: 30px;
  }

  .mini-game .game-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .mini-game .game-copy > p {
    font-size: 18px;
  }

  .mini-game .game-result {
    min-height: 76px;
    padding: 16px 18px 16px 82px;
    font-size: 18px;
  }

  .mini-game .game-result::before {
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .mini-game .game-result::after {
    left: 32px;
  }

  .mini-game .button--gold {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
  }

  .mini-game .game-stage {
    min-height: 470px;
  }

  .mini-game .game-stage::before {
    width: min(78%, 410px);
    border-width: 12px;
  }

  .mini-game .game-stage::after {
    right: -18px;
    bottom: -28px;
    width: 138px;
    height: 138px;
  }

  .mini-game .game-stage-label {
    right: 50%;
    top: 22px;
    min-height: 54px;
    padding: 0 20px;
    font-size: 15px;
    transform: translateX(50%);
  }

  .mini-game .cup-row {
    bottom: 82px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: calc(100% - 32px);
  }

  .mini-game .luck-cup {
    height: 230px;
    border-radius: 24px;
  }

  .mini-game .luck-cup__glass {
    top: 26px;
    width: 100px;
    height: 100px;
  }

  .mini-game .luck-cup b {
    bottom: 64px;
    font-size: 46px;
  }

  .mini-game .luck-cup small {
    left: 10px;
    right: 10px;
    bottom: 16px;
    min-height: 38px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .mini-game .luck-game.game-panel {
    padding: 24px 20px;
  }

  .mini-game .game-hints li {
    min-height: 44px;
    padding-left: 54px;
    font-size: 16px;
  }

  .mini-game .game-hints li::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .mini-game .game-stage {
    min-height: 420px;
  }

  .mini-game .game-stage::after {
    width: 110px;
    height: 110px;
  }

  .mini-game .cup-row {
    bottom: 76px;
    gap: 8px;
    width: calc(100% - 20px);
  }

  .mini-game .luck-cup {
    height: 196px;
  }

  .mini-game .luck-cup__glass {
    width: 82px;
    height: 82px;
  }

  .mini-game .luck-cup b {
    bottom: 54px;
    font-size: 38px;
  }

  .mini-game .luck-cup small {
    min-height: 32px;
    font-size: 10px;
  }
}

/* Mini-game final 16:9 promo section */
.mini-game.section {
  padding: 72px 0;
}

.mini-game .container {
  width: min(calc(100% - 64px), 1500px);
  max-width: 1500px;
}

.mini-game .luck-game.game-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  align-items: stretch;
  gap: clamp(44px, 5vw, 72px);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 680px;
  overflow: hidden;
  border: 0;
  border-radius: 36px;
  padding: clamp(48px, 5vw, 78px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 110, 220, 0.75), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(197, 65, 255, 0.65), transparent 38%),
    linear-gradient(135deg, #c914c9 0%, #9221d7 48%, #6418c9 100%);
  box-shadow: 0 38px 100px rgba(91, 30, 157, 0.28);
}

.mini-game .luck-game.game-panel::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.mini-game .luck-game.game-panel::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -22%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 68%);
  pointer-events: none;
}

.mini-game .game-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  text-align: left;
}

.mini-game .section-kicker--light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(12px);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.mini-game .section-kicker--light::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
  opacity: 0.96;
}

.mini-game .game-copy h2 {
  max-width: 520px;
  margin: 34px 0 22px;
  color: #fff;
  font-size: clamp(56px, 5vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: none;
  text-shadow: 0 12px 34px rgba(31, 7, 69, 0.22);
}

.mini-game .game-copy > p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(21px, 1.35vw, 23px);
  line-height: 1.35;
  font-weight: 500;
}

.mini-game .game-hints {
  width: min(100%, 430px);
  counter-reset: game-step;
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.mini-game .game-hints li {
  counter-increment: game-step;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 20px 0 68px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  backdrop-filter: blur(12px);
  font-size: clamp(18px, 1.15vw, 20px);
  font-weight: 650;
}

.mini-game .game-hints li::before {
  content: counter(game-step);
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #7b1bd2;
  background: #dfff4f;
  box-shadow: 0 10px 20px rgba(215, 255, 87, 0.20);
  font-size: 20px;
  font-weight: 800;
  transform: translateY(-50%);
}

.mini-game .game-result {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 430px);
  min-height: 86px;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 18px 22px 18px 92px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.mini-game .game-result::before,
.mini-game .game-result::after {
  content: none;
}

.mini-game .game-result__icon {
  position: absolute;
  left: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: rgba(118, 20, 180, 0.60);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}

.mini-game .game-result__icon .icon {
  width: 27px;
  height: 27px;
}

.mini-game .button--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  min-width: 0;
  min-height: 72px;
  border-radius: 999px;
  color: #6515b8;
  background: linear-gradient(135deg, #f4ff78 0%, #caff37 100%);
  box-shadow: 0 18px 38px rgba(205, 255, 55, 0.28);
  font-size: 22px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.mini-game .button--gold::before {
  content: none;
}

.mini-game .button--gold:hover,
.mini-game .button--gold:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 46px rgba(205, 255, 55, 0.34),
    0 0 28px rgba(205, 255, 55, 0.20);
  filter: saturate(1.04);
}

.mini-game .button--gold .icon {
  width: 25px;
  height: 25px;
  margin-right: 12px;
  color: currentColor;
}

.mini-game .game-stage {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  padding: 72px 56px 64px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.mini-game .game-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 620px);
  aspect-ratio: 1;
  border: 6px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 120, 240, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mini-game .game-stage::after {
  content: none;
}

.mini-game .game-orbit {
  display: none;
}

.mini-game .game-stage > .game-mascot {
  position: absolute;
  right: 24px;
  bottom: 0;
  z-index: 1;
  display: block;
  width: clamp(130px, 10vw, 170px);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 24px 34px rgba(40, 10, 82, 0.22));
  pointer-events: none;
}

.mini-game .game-stage-label {
  position: absolute;
  left: 50%;
  right: auto;
  top: 48px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 28px;
  color: #7b22d4;
  background: #fff;
  box-shadow: 0 18px 35px rgba(80, 20, 140, 0.18);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}

.mini-game .game-stage-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 16px;
  height: 16px;
  background: #fff;
  clip-path: none;
  transform: translateX(-50%) rotate(45deg);
}

.mini-game .game-stage-label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  color: #9a2de5;
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
}

.mini-game .cup-row {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: clamp(22px, 2vw, 34px);
  width: min(100%, 800px);
  margin-top: 40px;
  transform: none;
}

.mini-game .cup-row::before,
.mini-game .cup-row::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.35) 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(255, 255, 255, 0.35) 43% 57%, transparent 58%);
  transform: rotate(45deg);
  pointer-events: none;
}

.mini-game .cup-row::before {
  right: 2%;
  top: -30px;
}

.mini-game .cup-row::after {
  left: 4%;
  bottom: -38px;
}

.mini-game .luck-cup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 0.62 / 1;
  min-height: 330px;
  max-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  padding: 34px 26px 28px;
  background: radial-gradient(circle at 50% 12%, rgba(255, 240, 255, 0.95), rgba(255, 255, 255, 0.98) 46%, #fff 100%);
  box-shadow:
    0 26px 50px rgba(80, 20, 140, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  opacity: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease;
}

.mini-game .luck-cup::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 34px;
  z-index: 2;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(155, 45, 229, 0.35) 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(155, 45, 229, 0.35) 43% 57%, transparent 58%);
  transform: rotate(45deg);
  pointer-events: none;
}

.mini-game .luck-cup::after {
  content: none;
}

.mini-game .luck-cup__glass {
  position: static;
  width: clamp(130px, 8.5vw, 150px);
  height: auto;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(129, 35, 182, 0.18));
  transform: none;
  pointer-events: none;
}

.mini-game .luck-cup span,
.mini-game .glass-icon {
  display: none;
}

.mini-game .luck-cup b {
  position: static;
  display: block;
  margin: 18px 0 14px;
  padding: 0;
  color: #7424c7;
  font-size: clamp(58px, 5vw, 78px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.mini-game .luck-cup small {
  position: static;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 170px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7d2ad6 0%, #a927db 100%);
  box-shadow: 0 12px 22px rgba(103, 31, 190, 0.28);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-game .luck-cup:hover,
.mini-game .luck-cup:focus-visible,
.mini-game .luck-cup.is-selected {
  transform: translateY(-6px);
  box-shadow:
    0 34px 62px rgba(80, 20, 140, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.mini-game .luck-cup:hover small,
.mini-game .luck-cup:focus-visible small {
  filter: brightness(1.06);
}

.mini-game .luck-cup.is-selected small {
  color: #5d159b;
  background: linear-gradient(135deg, #f4ff78 0%, #caff37 100%);
  box-shadow: 0 16px 28px rgba(205, 255, 55, 0.32);
}

.mini-game .luck-cup.is-muted {
  opacity: 0.56;
  filter: saturate(0.76);
}

@media (max-width: 1100px) {
  .mini-game .container {
    width: min(calc(100% - 40px), 1500px);
  }

  .mini-game .luck-game.game-panel {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    min-height: 0;
    gap: 34px;
    padding: 42px;
  }

  .mini-game .game-copy h2,
  .mini-game .game-copy > p,
  .mini-game .game-hints,
  .mini-game .game-result,
  .mini-game .button--gold {
    width: 100%;
    max-width: 100%;
  }

  .mini-game .game-stage {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .mini-game.section {
    padding: 52px 0;
  }

  .mini-game .container {
    width: min(calc(100% - 28px), 1500px);
  }

  .mini-game .luck-game.game-panel {
    border-radius: 30px;
    padding: 28px 22px;
  }

  .mini-game .section-kicker--light {
    height: 38px;
    font-size: 16px;
  }

  .mini-game .game-copy h2 {
    margin-top: 26px;
    font-size: clamp(48px, 13vw, 62px);
  }

  .mini-game .game-copy > p {
    font-size: 18px;
  }

  .mini-game .game-hints li {
    min-height: 48px;
    padding-left: 60px;
    font-size: 16px;
  }

  .mini-game .game-hints li::before {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .mini-game .game-result {
    min-height: 80px;
    font-size: 18px;
  }

  .mini-game .button--gold {
    min-height: 64px;
    font-size: 19px;
  }

  .mini-game .game-stage {
    min-height: 510px;
    padding: 88px 18px 44px;
  }

  .mini-game .game-stage-label {
    top: 24px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }

  .mini-game .game-stage > .game-mascot {
    right: -10px;
    width: 120px;
  }

  .mini-game .cup-row {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    justify-content: start;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    padding: 8px 8px 16px;
    scroll-snap-type: x mandatory;
  }

  .mini-game .luck-cup {
    min-height: 292px;
    scroll-snap-align: center;
  }

  .mini-game .luck-cup__glass {
    width: 118px;
  }
}

@media (max-width: 520px) {
  .mini-game .game-stage {
    min-height: 460px;
  }

  .mini-game .cup-row {
    grid-template-columns: repeat(3, 154px);
  }

  .mini-game .luck-cup {
    min-height: 260px;
    padding: 26px 18px 22px;
  }

  .mini-game .luck-cup__glass {
    width: 98px;
  }

  .mini-game .luck-cup b {
    font-size: 50px;
  }

  .mini-game .luck-cup small {
    min-height: 40px;
    font-size: 13px;
  }
}

/* Mini-game layout correction: circle stage and visible buttons */
.mini-game .luck-game.game-panel {
  grid-template-columns: minmax(360px, 0.35fr) minmax(0, 0.65fr);
  align-items: center;
  padding: clamp(42px, 4.2vw, 64px);
}

.mini-game .game-copy {
  justify-content: center;
}

.mini-game .section-kicker--light {
  min-height: 38px;
  font-size: 17px;
}

.mini-game .game-copy h2 {
  margin: 24px 0 16px;
  font-size: clamp(52px, 4.55vw, 76px);
}

.mini-game .game-copy > p {
  margin-bottom: 20px;
  font-size: clamp(18px, 1.15vw, 21px);
  line-height: 1.3;
}

.mini-game .game-hints {
  gap: 8px;
  margin-bottom: 18px;
}

.mini-game .game-hints li {
  min-height: 46px;
  padding-left: 62px;
  font-size: 18px;
}

.mini-game .game-hints li::before {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.mini-game .game-result {
  min-height: 76px;
  margin-bottom: 18px;
  font-size: 19px;
}

.mini-game .button--gold {
  min-height: 64px;
  font-size: 20px;
}

.mini-game .mini-game__visual {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 86px 24px 54px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mini-game .mini-game__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 0;
  width: min(78%, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.36);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 58%, rgba(255, 255, 255, 0.16) 59% 100%);
  box-shadow:
    inset 0 0 90px rgba(255, 255, 255, 0.16),
    0 0 90px rgba(255, 120, 240, 0.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mini-game .mini-game__visual::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 8%;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
  transform: rotate(45deg);
  pointer-events: none;
}

.mini-game .mini-game__visual > .game-mascot {
  position: absolute;
  left: clamp(-12px, 1.4vw, 22px);
  right: auto;
  bottom: -10px;
  z-index: 2;
  display: block;
  width: clamp(128px, 10.5vw, 170px);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 24px 34px rgba(40, 10, 82, 0.24));
  pointer-events: none;
}

.mini-game .game-stage,
.mini-game .game-orbit {
  display: none;
}

.mini-game .game-stage-label {
  top: 34px;
  z-index: 6;
}

.mini-game .cup-row {
  z-index: 3;
  width: min(100%, 780px);
  margin-top: 36px;
}

.mini-game .cup-row::before {
  left: 2%;
  right: auto;
  top: 8%;
  width: 28px;
  height: 28px;
}

.mini-game .cup-row::after {
  left: 3%;
  bottom: -44px;
  width: 32px;
  height: 32px;
}

.mini-game .luck-cup {
  height: clamp(360px, 23vw, 410px);
  min-height: 0;
  max-height: none;
  overflow: hidden;
  padding: 34px 26px 28px;
}

.mini-game .luck-cup::before {
  width: 22px;
  height: 22px;
  opacity: 0.35;
}

.mini-game .luck-cup > span {
  display: none !important;
}

.mini-game .luck-cup__glass {
  width: clamp(126px, 8vw, 148px);
  max-height: 158px;
}

.mini-game .luck-cup b {
  margin: 12px 0 12px;
  font-size: clamp(58px, 4.8vw, 74px);
}

.mini-game .luck-cup small {
  flex: 0 0 auto;
  max-width: 172px;
  min-height: 48px;
}

@media (max-width: 1100px) {
  .mini-game .luck-game.game-panel {
    grid-template-columns: 1fr;
  }

  .mini-game .mini-game__visual {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .mini-game .game-copy h2 {
    font-size: clamp(46px, 12vw, 60px);
  }

  .mini-game .mini-game__visual {
    min-height: 500px;
    padding: 82px 16px 44px;
    overflow: hidden;
  }

  .mini-game .mini-game__visual > .game-mascot {
    left: -16px;
    width: 118px;
  }

  .mini-game .cup-row {
    grid-template-columns: repeat(3, minmax(164px, 1fr));
    width: 100%;
    overflow-x: auto;
    padding: 8px 8px 16px;
  }

  .mini-game .luck-cup {
    height: 298px;
    padding: 26px 18px 22px;
  }

  .mini-game .luck-cup__glass {
    width: 108px;
  }

  .mini-game .luck-cup b {
    font-size: 50px;
  }
}

/* Final asset icons and mini-game mascot position */
.hero__timer-caption::before,
.hero__timer-caption::after,
.hero__actions .button--primary::before,
.hero__actions .button--secondary::before,
.hero__actions .button--secondary:hover::before,
.hero__actions .button--secondary:focus-visible::before,
.section-badge::before,
.documents__chips > span::before,
.mini-game .game-result::before,
.mini-game .game-result::after,
.mini-game .button--gold::before {
  content: none;
}

.ui-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  -webkit-mask: none !important;
  mask: none !important;
}

.button .ui-icon {
  width: 22px;
  height: 22px;
  margin-right: 0;
}

.button--gold .ui-icon,
.how-cta .ui-icon {
  filter: brightness(0) saturate(100%) invert(20%) sepia(82%) saturate(3081%) hue-rotate(263deg) brightness(87%) contrast(101%);
}

.hero__badge .ui-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.hero__actions .button--primary .ui-icon,
.hero__actions .button--secondary .ui-icon,
.hero__timer-caption .ui-icon,
.mini-game .section-kicker--light .ui-icon,
.mini-game .game-result__icon .ui-icon {
  filter: none;
}

.hero__actions .button--secondary:hover .ui-icon,
.hero__actions .button--secondary:focus-visible .ui-icon {
  filter: brightness(0) saturate(100%) invert(25%) sepia(97%) saturate(2579%) hue-rotate(262deg) brightness(88%) contrast(96%);
}

.hero__timer-caption .ui-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mini-game .section-kicker--light::before {
  content: none;
}

.mini-game .section-kicker--light .ui-icon {
  width: 18px;
  height: 18px;
}

.mini-game .game-result__icon .ui-icon {
  width: 28px;
  height: 28px;
  filter: none;
}

.mini-game .game-stage-label .ui-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(97%) saturate(2579%) hue-rotate(262deg) brightness(88%) contrast(96%);
}

.section-badge .ui-icon,
.documents__chips .ui-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(97%) saturate(2579%) hue-rotate(262deg) brightness(88%) contrast(96%);
}

.documents__chips .ui-icon {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.mini-game .mini-game__visual > .game-mascot {
  left: auto;
  right: clamp(-20px, -1.2vw, -8px);
  bottom: -8px;
  z-index: 2;
  width: clamp(132px, 10.5vw, 176px);
}

@media (max-width: 760px) {
  .mini-game .mini-game__visual > .game-mascot {
    left: auto;
    right: -18px;
    width: 118px;
  }
}

/* Final icon rendering from assets/icons without broken img placeholders */
.ui-icon {
  --ui-icon-url: none;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: inherit;
  background-color: currentColor !important;
  object-fit: initial;
  object-position: initial;
  filter: none !important;
  -webkit-mask: var(--ui-icon-url) center / contain no-repeat !important;
  mask: var(--ui-icon-url) center / contain no-repeat !important;
}

.ui-icon--crown {
  --ui-icon-url: url("../icons/crown.svg");
}

.ui-icon--gift {
  --ui-icon-url: url("../icons/gift.svg");
}

.ui-icon--results {
  --ui-icon-url: url("../icons/results.svg");
}

.ui-icon--clock {
  --ui-icon-url: url("../icons/clock-01.svg");
}

.ui-icon--reload {
  --ui-icon-url: url("../icons/reload.svg");
}

.ui-icon--document {
  --ui-icon-url: url("../icons/document.svg");
}

.ui-icon--calendar {
  --ui-icon-url: url("../icons/calendar.svg");
}

.ui-icon--terms {
  --ui-icon-url: url("../icons/terms%20of%20participation.svg");
}

.hero__badge .ui-icon {
  color: #d8ff43;
}

.button .ui-icon {
  margin-right: 0;
}

.button--gold .ui-icon,
.how-cta .ui-icon,
.section-badge .ui-icon,
.documents__chips .ui-icon,
.game-stage-label .ui-icon {
  color: currentColor;
}
/* Final reliable SVG icon rendering */
img.ui-icon,
.ui-icon {
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  background-color: transparent !important;
  -webkit-mask: none !important;
  mask: none !important;
  object-fit: contain !important;
  object-position: center !important;
  vertical-align: -0.18em !important;
  opacity: 1 !important;
}

.hero__badge .ui-icon,
.hero__actions .button--primary .ui-icon,
.hero__actions .button--secondary .ui-icon,
.hero__timer-caption .ui-icon,
.mini-game .section-kicker--light .ui-icon,
.mini-game .game-result__icon .ui-icon {
  filter: none !important;
}

.section-badge .ui-icon,
.documents__chips .ui-icon,
.game-stage-label .ui-icon,
.button--gold .ui-icon,
.how-cta .ui-icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(88%) saturate(3166%) hue-rotate(263deg) brightness(88%) contrast(99%) !important;
}

.button .ui-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin-right: 0 !important;
}

.hero__timer-caption .ui-icon,
.game-stage-label .ui-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
}

.documents__chips .ui-icon,
.section-badge .ui-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin-right: 10px !important;
}

.mini-game .game-result__icon .ui-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
}
/* Final hero and mini-game alignment tweaks */
.hero .hero__badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  line-height: 1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 56px !important;
}

.hero .hero__badge .ui-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  margin: 0 !important;
  object-fit: contain !important;
  transform: translateY(-1px) !important;
}

.hero h1 {
  margin-top: 22px !important;
  line-height: 1.04 !important;
  padding-top: 18px !important;
  padding-bottom: 24px !important;
}

.mini-game .mini-game__visual > .game-mascot {
  display: block !important;
  position: absolute !important;
  left: auto !important;
  right: clamp(-34px, -2vw, -20px) !important;
  bottom: -14px !important;
  z-index: 5 !important;
  width: clamp(168px, 14vw, 232px) !important;
  height: auto !important;
  opacity: 0.98 !important;
  transform: none !important;
  filter: drop-shadow(0 26px 34px rgba(40, 10, 82, 0.28)) !important;
  pointer-events: none !important;
}

.mini-game .mini-game__visual {
  overflow: hidden !important;
}

@media (max-width: 760px) {
  .hero h1 {
    margin-top: 16px !important;
    line-height: 1.06 !important;
  }

  .mini-game .mini-game__visual > .game-mascot {
    right: -26px !important;
    bottom: -10px !important;
    width: 132px !important;
  }
}
/* Final mascot position under the third cup */
.mini-game .mini-game__visual > .game-mascot {
  right: clamp(26px, 4.2vw, 72px) !important;
  bottom: -8px !important;
  width: clamp(166px, 13.5vw, 224px) !important;
  z-index: 6 !important;
}

@media (max-width: 760px) {
  .mini-game .mini-game__visual > .game-mascot {
    right: 10px !important;
    bottom: -8px !important;
    width: 124px !important;
  }
}
/* Final cup card proportions and typography */
.mini-game .cup-row {
  width: min(100%, 820px) !important;
  gap: clamp(24px, 2.4vw, 38px) !important;
  align-items: center !important;
}

.mini-game .luck-cup {
  min-height: 0 !important;
  height: clamp(330px, 25vw, 390px) !important;
  aspect-ratio: 0.62 / 1 !important;
  border-radius: 30px !important;
  padding: 42px 26px 26px !important;
  justify-content: flex-start !important;
}

.mini-game .luck-cup__glass {
  width: clamp(142px, 10vw, 176px) !important;
  height: auto !important;
  margin: 0 auto !important;
  transform: none !important;
}

.mini-game .luck-cup strong {
  margin: 28px 0 20px !important;
  font-size: clamp(58px, 4.8vw, 74px) !important;
  line-height: 0.86 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
}

.mini-game .luck-cup small {
  width: min(100%, 174px) !important;
  min-height: 54px !important;
  margin-top: auto !important;
  border-radius: 999px !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.mini-game .luck-cup::before {
  right: 24px !important;
  top: 42px !important;
  width: 22px !important;
  height: 22px !important;
  opacity: 0.38 !important;
}

@media (max-width: 760px) {
  .mini-game .cup-row {
    gap: 14px !important;
  }

  .mini-game .luck-cup {
    height: 300px !important;
    padding: 32px 18px 22px !important;
  }

  .mini-game .luck-cup__glass {
    width: 132px !important;
  }

  .mini-game .luck-cup strong {
    margin: 22px 0 16px !important;
    font-size: 54px !important;
  }

  .mini-game .luck-cup small {
    min-height: 48px !important;
    font-size: 14px !important;
  }
}
/* Final mini-game mascot and ring placement */
.mini-game .luck-game.game-panel {
  overflow: hidden !important;
  position: relative !important;
}

.mini-game .mini-game__visual {
  overflow: visible !important;
}

.mini-game .mini-game__visual::before {
  top: 47% !important;
  width: min(70%, 650px) !important;
  border-width: 7px !important;
  transform: translate(-50%, -50%) !important;
}

.mini-game .mini-game__visual > .game-mascot {
  display: none !important;
}

.mini-game .luck-game.game-panel > .game-mascot {
  display: block !important;
  position: absolute !important;
  left: auto !important;
  right: clamp(72px, 6vw, 118px) !important;
  bottom: 0 !important;
  z-index: 8 !important;
  width: clamp(170px, 13.5vw, 228px) !important;
  height: auto !important;
  opacity: 0.98 !important;
  transform: none !important;
  filter: drop-shadow(0 26px 34px rgba(40, 10, 82, 0.28)) !important;
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .mini-game .luck-game.game-panel > .game-mascot {
    right: 28px !important;
    width: 150px !important;
  }
}

@media (max-width: 760px) {
  .mini-game .mini-game__visual::before {
    width: 520px !important;
    top: 48% !important;
  }

  .mini-game .luck-game.game-panel > .game-mascot {
    right: 18px !important;
    bottom: 0 !important;
    width: 124px !important;
  }
}


/* Final task overrides: simplified header, daily winners, promo-code game, license and bottom reviews */
body {
  padding-bottom: 104px;
}

.site-header {
  pointer-events: none;
}

.header-inner--brand-only {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-template-columns: none !important;
  min-height: 68px !important;
  width: min(100% - 32px, 1120px) !important;
  padding: 10px 22px !important;
  pointer-events: auto;
}

.header-inner--brand-only .brand {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header-inner--brand-only .brand img {
  display: block;
  width: auto !important;
  height: clamp(30px, 2.8vw, 40px) !important;
  max-width: min(220px, 68vw) !important;
  object-fit: contain !important;
}

.site-nav,
.menu-toggle,
.button--header,
[data-game-reset] {
  display: none !important;
}

.stats-grid [data-stat] {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.leaderboard article {
  grid-template-columns: 96px minmax(140px, 0.38fr) minmax(0, 1fr) 172px !important;
  gap: 18px !important;
}

.leaderboard span {
  width: auto !important;
  min-width: 78px !important;
  height: 34px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.leaderboard em {
  font-size: clamp(18px, 1.6vw, 24px) !important;
  white-space: nowrap !important;
}

.promo-result__label,
.promo-code {
  display: block;
}

.promo-result__label {
  font-size: 15px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-code {
  color: #dfff4f;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.luck-cup.is-muted {
  opacity: 0.72 !important;
  filter: saturate(0.8) brightness(0.96) !important;
}

.luck-cup.is-selected {
  outline: 3px solid rgba(223, 255, 79, 0.92) !important;
  outline-offset: 5px !important;
}

.review-card--video .review-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 0 16px;
  background: linear-gradient(135deg, rgba(203, 17, 171, 0.10), rgba(123, 31, 209, 0.10));
}

.review-card--video .review-card__media img {
  width: 100% !important;
  height: 214px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  display: block !important;
}

.review-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(64, 20, 120, 0.22);
}

.review-card__play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--wb-purple);
}

.license-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(203, 17, 171, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 6% 12%, rgba(203, 17, 171, 0.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(223, 255, 79, 0.18), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8f1ff 100%);
  box-shadow: 0 30px 80px rgba(58, 25, 110, 0.12);
  overflow: hidden;
}

.license-card::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(123, 31, 209, 0.12);
  border-radius: 50%;
}

.license-card__visual,
.license-card__content {
  position: relative;
  z-index: 1;
}

.license-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(123, 31, 209, 0.12);
  background:
    radial-gradient(circle at 50% 20%, rgba(203, 17, 171, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 46px rgba(58, 25, 110, 0.10);
}

.license-placeholder .ui-icon {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  filter: brightness(0) saturate(100%) invert(22%) sepia(88%) saturate(3166%) hue-rotate(263deg) brightness(88%) contrast(99%) !important;
}

.license-placeholder strong {
  color: var(--wb-text);
  font-size: 26px;
  font-weight: 900;
}

.license-placeholder span {
  color: var(--wb-muted);
  font-weight: 700;
}

.license-card__content h2 {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--wb-text);
}

.license-card__content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--wb-muted);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.45;
  font-weight: 600;
}

.bottom-reviews {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  pointer-events: none;
}

.bottom-reviews__inner {
  pointer-events: auto;
  width: min(100%, 980px);
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(123, 31, 209, 0.12);
  border-radius: 24px 24px 20px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -18px 48px rgba(58, 25, 110, 0.14);
}

.bottom-reviews p {
  margin: 0;
  color: var(--wb-text);
  text-align: center;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.35;
  font-weight: 750;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.bottom-reviews p.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.bottom-reviews__control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 12px 24px rgba(123, 31, 209, 0.22);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bottom-reviews__control:hover,
.bottom-reviews__control:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(123, 31, 209, 0.28);
}

img.ui-icon {
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (max-width: 980px) {
  .leaderboard article {
    grid-template-columns: 84px minmax(120px, 0.38fr) minmax(0, 1fr) !important;
  }

  .leaderboard em {
    grid-column: 2 / -1;
    justify-self: start !important;
  }

  .license-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 126px;
  }

  .header-inner--brand-only {
    min-height: 60px !important;
    width: min(100% - 20px, 1120px) !important;
  }

  .leaderboard {
    display: grid !important;
    gap: 12px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .leaderboard article {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    border: 1px solid var(--wb-border) !important;
    border-radius: 22px !important;
    background: #fff !important;
  }

  .leaderboard div,
  .leaderboard em {
    grid-column: auto !important;
  }

  .leaderboard span,
  .leaderboard em {
    justify-self: start !important;
  }

  .license-card {
    padding: 24px;
    border-radius: 28px;
  }

  .license-placeholder {
    min-height: 240px;
  }

  .bottom-reviews {
    padding-inline: 10px;
  }

  .bottom-reviews__inner {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    padding: 10px;
    border-radius: 20px 20px 18px 18px;
  }

  .bottom-reviews__control {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* Final refinements: sticky reviews label, locked open-case flow and styled review player */
.bottom-reviews__inner {
  grid-template-columns: auto 44px minmax(0, 1fr) 44px !important;
  padding-left: 18px !important;
}

.bottom-reviews__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 10px 22px rgba(123, 31, 209, 0.20);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.luck-game.is-opening .luck-cup.is-selected .luck-cup__glass {
  animation: cupReveal 0.46s ease both;
}

.luck-cup:disabled {
  cursor: default !important;
}

.luck-cup.is-selected small {
  color: #5d159b !important;
  background: linear-gradient(135deg, #f4ff78 0%, #caff37 100%) !important;
  box-shadow: 0 14px 28px rgba(205, 255, 55, 0.25) !important;
}

.luck-cup.is-muted small {
  opacity: 0.78;
}

.game-result.is-success {
  border-color: rgba(223, 255, 79, 0.38) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 36px rgba(38, 8, 86, 0.16) !important;
}

.promo-result__note {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

@keyframes cupReveal {
  0% { transform: translateY(0) scale(1); }
  48% { transform: translateY(-14px) scale(1.05) rotate(-2deg); }
  100% { transform: translateY(0) scale(1); }
}

.review-player-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.review-player-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 36, 41, 0.02), rgba(73, 10, 126, 0.34));
  opacity: 0.7;
  transition: opacity 0.22s ease;
}

.review-player-trigger img {
  transition: transform 0.34s ease, filter 0.34s ease;
}

.review-card__play {
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 0%, #f6e9ff 100%) !important;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16), 0 18px 44px rgba(89, 24, 150, 0.30) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.review-card__play::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.7;
  animation: playPulse 1.8s ease-in-out infinite;
}

.review-card__play-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(123, 31, 209, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(56, 12, 115, 0.24);
}

.review-player-trigger:hover::before,
.review-player-trigger:focus-visible::before {
  opacity: 0.46;
}

.review-player-trigger:hover img,
.review-player-trigger:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.02);
}

.review-player-trigger:hover .review-card__play,
.review-player-trigger:focus-visible .review-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: linear-gradient(135deg, #f4ff78 0%, #caff37 100%) !important;
  box-shadow: 0 0 0 12px rgba(244, 255, 120, 0.18), 0 24px 52px rgba(89, 24, 150, 0.36) !important;
}

@keyframes playPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.35; }
  50% { transform: scale(1.08); opacity: 0.78; }
}

.review-video-modal[hidden] {
  display: none !important;
}

.review-video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.review-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.review-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 44, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.review-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 12% 8%, rgba(203, 17, 171, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 255, 0.96));
  box-shadow: 0 36px 90px rgba(18, 6, 40, 0.34);
}

.review-video-modal__dialog h2 {
  margin: 0 48px 18px 0;
  color: var(--wb-text);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.review-video-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 14px 28px rgba(123, 31, 209, 0.24);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-video-modal__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
  background: #160826;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 52px rgba(64, 20, 120, 0.20);
}

.review-video-modal__dialog p {
  margin: 14px 0 0;
  color: var(--wb-muted);
  font-size: 14px;
  font-weight: 700;
}

body.is-video-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .bottom-reviews__inner {
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
  }

  .bottom-reviews__label {
    grid-column: 1 / -1;
    justify-self: center;
    min-height: 30px;
    font-size: 12px;
  }

  .review-card__play-label {
    bottom: 14px;
  }

  .review-video-modal {
    padding: 14px;
  }

  .review-video-modal__dialog {
    border-radius: 24px;
  }

  .review-video-modal__player {
    border-radius: 18px;
  }
}

/* Final visual polish requested: certificate rounding, softer hero background, compact logo header, white video label */
.header-inner--brand-only {
  width: fit-content !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 8px 28px !important;
  border-radius: 999px !important;
}

.header-inner--brand-only .brand img {
  height: clamp(26px, 2.2vw, 34px) !important;
  max-width: 210px !important;
}

.hero.hero--split {
  padding-top: 112px !important;
}

.hero__card::before {
  z-index: 0 !important;
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 86% 20%, rgba(255, 133, 223, 0.16), transparent 18rem),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.13), transparent 16rem) !important;
  opacity: 0.52 !important;
}

.hero__card::after {
  z-index: 1 !important;
}

.hero__content {
  z-index: 4 !important;
}

.hero__visual {
  z-index: 2 !important;
}

.prize-card img {
  border-radius: 24px !important;
  overflow: hidden !important;
  clip-path: inset(0 round 24px) !important;
}

.prize-card:nth-child(-n + 3) img {
  border-radius: 28px !important;
  clip-path: inset(0 round 28px) !important;
}

.review-card__play-label {
  color: #fff !important;
  text-shadow: 0 1px 10px rgba(42, 8, 92, 0.24) !important;
}

.review-player-trigger:hover .review-card__play-label,
.review-player-trigger:focus-visible .review-card__play-label {
  color: #fff !important;
}

@media (max-width: 760px) {
  .header-inner--brand-only {
    min-height: 48px !important;
    padding: 7px 22px !important;
  }

  .hero.hero--split {
    padding-top: 94px !important;
  }
}

/* Final review video overlay centering */
.review-card__play {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -58%) !important;
}

.review-card__play-label {
  top: calc(50% + 46px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
}

.review-player-trigger:hover .review-card__play,
.review-player-trigger:focus-visible .review-card__play {
  transform: translate(-50%, -58%) scale(1.08) !important;
}

@media (max-width: 760px) {
  .review-card__play-label {
    top: calc(50% + 42px) !important;
    bottom: auto !important;
  }
}

/* Final spacing correction after compact header and license image placeholder */
.site-header {
  top: 18px !important;
}

.hero.hero--split {
  padding-top: 74px !important;
}

.license-placeholder--image {
  padding: 18px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 16%, rgba(203, 17, 171, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.82) !important;
}

.license-placeholder__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
  object-fit: contain !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 48px rgba(58, 25, 110, 0.14) !important;
}

@media (max-width: 760px) {
  .site-header {
    top: 12px !important;
  }

  .hero.hero--split {
    padding-top: 64px !important;
  }

  .license-placeholder__image {
    min-height: 220px !important;
  }
}

/* Final exact centering for review video overlay */
.review-player-trigger {
  display: grid !important;
  place-items: center !important;
}

.review-card__play {
  top: calc(50% - 22px) !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.review-card__play-label {
  top: calc(50% + 36px) !important;
  left: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  min-height: 36px !important;
  padding: 0 18px !important;
  text-align: center !important;
}

.review-player-trigger:hover .review-card__play,
.review-player-trigger:focus-visible .review-card__play {
  transform: translate(-50%, -50%) scale(1.08) !important;
}

@media (max-width: 760px) {
  .review-card__play {
    top: calc(50% - 20px) !important;
  }

  .review-card__play-label {
    top: calc(50% + 34px) !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* Final hero/header gap tightening */
.site-header {
  top: 12px !important;
  margin-top: 0 !important;
}

.hero.hero--split {
  padding-top: 48px !important;
}

@media (max-width: 760px) {
  .site-header {
    top: 8px !important;
  }

  .hero.hero--split {
    padding-top: 54px !important;
  }
}

/* Final fix for hero CTA side seam */
.hero__actions .button--primary {
  position: relative !important;
  overflow: hidden !important;
  border: 0 !important;
  outline: 0 !important;
  background: linear-gradient(135deg, #f126d2 0%, #c914c9 48%, #8d18db 100%) !important;
  background-clip: padding-box !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 38px rgba(198, 19, 185, 0.32) !important;
}

.hero__actions .button--primary::before,
.hero__actions .button--secondary::before {
  content: none !important;
  display: none !important;
}

.hero__actions .button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero__actions .button--primary .ui-icon,
.hero__actions .button--primary span {
  position: relative;
  z-index: 1;
}

/* Midnight results countdown */
.results-timer {
  width: min(100%, 470px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 14px 18px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 36px rgba(42, 8, 92, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.results-timer__label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.results-timer__label .ui-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  filter: none !important;
}

.results-timer__value {
  flex: 0 0 auto;
  min-width: 128px;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 24px rgba(36, 6, 80, 0.26);
}

@media (max-width: 760px) {
  .results-timer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    padding: 14px;
  }

  .results-timer__value {
    min-width: 0;
    width: 100%;
    text-align: left;
    font-size: 30px;
  }
}

/* Final promo polish: hero bank, seamless marquee, compact footer, sticky review cards */
html,
body {
  overflow-x: clip;
}

body.has-sticky-reviews {
  padding-bottom: 132px;
}

body.has-sticky-reviews.reviews-sticky-collapsed {
  padding-bottom: 78px;
}

body.reviews-sticky-hidden {
  padding-bottom: 0;
}

.hero__content {
  max-width: 720px !important;
}

.hero__text {
  max-width: 540px !important;
}

.hero__info-row {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(190px, 0.72fr);
  gap: 12px;
  margin-top: 28px;
  color: #fff;
}

.hero-bank,
.hero-mini-timer {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 40px rgba(50, 0, 100, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-bank {
  min-height: 98px;
  padding: 18px 24px 20px;
}

.hero-bank span,
.hero-mini-timer span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-bank strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(42px, 4.1vw, 58px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 28px rgba(34, 4, 82, 0.32);
  white-space: nowrap;
}

.hero-mini-timer {
  min-height: 98px;
  align-items: flex-start;
  padding: 18px 20px;
}

.hero-mini-timer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-mini-timer .ui-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  filter: none !important;
}

.hero-mini-timer strong {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 22px rgba(34, 4, 82, 0.26);
}

.results-timer {
  display: none !important;
}

.promo-marquee {
  position: relative;
  z-index: 8;
  width: 118vw;
  margin: 32px 0 66px -9vw;
  overflow: hidden;
  transform: rotate(-1.45deg);
  background: linear-gradient(90deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 18px 44px rgba(123, 31, 209, 0.18);
}

.promo-marquee__track {
  width: max-content;
  min-width: 300%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 0;
  color: #fff;
  animation: promoMarqueeMove 24s linear infinite;
  will-change: transform;
}

.promo-marquee:hover .promo-marquee__track {
  animation-play-state: paused;
}

.promo-marquee__track span,
.promo-marquee__track i {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-style: normal;
}

.promo-marquee__track i {
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

@keyframes promoMarqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.review-grid {
  align-items: stretch;
}

.review-card {
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  padding: 18px !important;
  border-radius: 30px !important;
}

.review-card--video .review-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
}

.review-card--video .review-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: inherit !important;
  background: #f5eefc !important;
}

.review-card span:not(.review-card__play):not(.review-card__play-label) {
  margin-top: 18px;
}

.review-card h3 {
  min-height: 48px;
  margin-top: 14px !important;
}

.review-card strong {
  min-height: 38px;
}

.review-card p {
  display: -webkit-box;
  margin-top: 10px !important;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.video-card[data-video-src] {
  cursor: pointer;
}

.footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  margin-top: 28px;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(36, 36, 41, 0.08);
  color: var(--wb-muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer__info {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--wb-muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}

.footer__info span:first-child {
  color: #565568;
  font-weight: 800;
}

.footer__nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.footer__nav a {
  color: var(--wb-text);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

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

.reviews-sticky {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 160;
  width: min(960px, calc(100% - 48px));
  transform: translateX(-50%);
  pointer-events: none;
}

.reviews-sticky[hidden] {
  display: none !important;
}

.reviews-sticky__inner,
.reviews-sticky__mini {
  pointer-events: auto;
  border: 1px solid rgba(123, 31, 209, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(54, 20, 90, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.reviews-sticky__inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
}

.reviews-sticky__toggle,
.reviews-sticky__mini,
.reviews-sticky__close {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.reviews-sticky__toggle {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  box-shadow: 0 12px 26px rgba(123, 31, 209, 0.24);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.reviews-sticky__toggle b,
.reviews-sticky__mini b {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 17px;
  line-height: 1;
}

.reviews-sticky__cards {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reviews-sticky__card {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(123, 31, 209, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbf4ff 100%);
}

.reviews-sticky__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  font-size: 13px;
  font-weight: 950;
}

.reviews-sticky__card strong,
.reviews-sticky__card span,
.reviews-sticky__card p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reviews-sticky__card strong {
  display: block;
  color: var(--wb-text);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}

.reviews-sticky__card span {
  display: block;
  margin-top: 3px;
  color: var(--wb-purple);
  font-size: 12px;
  font-weight: 850;
}

.reviews-sticky__card p {
  margin-top: 4px;
  color: var(--wb-muted);
  font-size: 12px;
  font-weight: 650;
}

.reviews-sticky__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wb-purple);
  background: rgba(123, 31, 209, 0.08);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.reviews-sticky__close:hover,
.reviews-sticky__close:focus-visible {
  color: #fff;
  background: var(--wb-purple);
}

.reviews-sticky__mini {
  min-height: 54px;
  display: none;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-inline: auto;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wb-magenta), var(--wb-purple));
  font-size: 14px;
  font-weight: 900;
}

.reviews-sticky.is-collapsed {
  width: auto;
}

.reviews-sticky.is-collapsed .reviews-sticky__inner {
  display: none;
}

.reviews-sticky.is-collapsed .reviews-sticky__mini {
  display: inline-flex;
}

@media (max-width: 1180px) {
  .hero__info-row {
    width: min(100%, 640px);
  }

  .hero-bank strong {
    font-size: clamp(38px, 5vw, 50px);
  }
}

@media (max-width: 900px) {
  body.has-sticky-reviews {
    padding-bottom: 116px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer__nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .reviews-sticky__inner {
    grid-template-columns: 1fr 40px;
  }

  .reviews-sticky__toggle {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .reviews-sticky__cards {
    grid-column: 1 / 2;
  }

  .reviews-sticky__close {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  body.has-sticky-reviews {
    padding-bottom: 88px;
  }

  body.has-sticky-reviews:not(.reviews-sticky-collapsed) {
    padding-bottom: 300px;
  }

  .hero__info-row {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
  }

  .hero-bank,
  .hero-mini-timer {
    min-height: 0;
    padding: 16px;
  }

  .hero-bank strong {
    font-size: clamp(34px, 10vw, 42px);
  }

  .promo-marquee {
    width: 124vw;
    margin: 24px 0 48px -12vw;
  }

  .promo-marquee__track {
    min-height: 42px;
    gap: 16px;
    animation-duration: 18s;
  }

  .promo-marquee__track span {
    font-size: 15px;
  }

  .promo-marquee__track i {
    font-size: 16px;
  }

  .review-card h3,
  .review-card strong {
    min-height: 0;
  }

  .footer {
    min-height: 0;
    padding: 18px 0 22px !important;
  }

  .footer__info {
    font-size: 13px;
  }

  .footer__nav a {
    font-size: 13px;
  }

  .reviews-sticky {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: none;
  }

  .reviews-sticky.is-collapsed {
    left: auto;
    right: 12px;
  }

  .reviews-sticky__inner {
    max-height: 70vh;
    overflow: auto;
    grid-template-columns: 1fr 40px;
    align-items: start;
    border-radius: 24px;
    padding: 12px;
  }

  .reviews-sticky__toggle {
    grid-column: 1;
    min-height: 46px;
    padding-inline: 14px;
  }

  .reviews-sticky__close {
    grid-column: 2;
    grid-row: 1;
  }

  .reviews-sticky__cards {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .reviews-sticky__card:nth-child(n + 3) {
    display: none;
  }
}

/* Final handoff fixes: review covers, avatars, spacing and modal close alignment */
.hero__info-row {
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 0.56fr) !important;
  gap: 14px !important;
}

.hero-bank {
  padding-right: 28px !important;
}

.hero-bank strong {
  font-size: clamp(38px, 3.3vw, 52px) !important;
}

.stats-grid article {
  min-height: 164px !important;
  padding: 26px 92px 24px 24px !important;
}

.stats-grid img {
  right: 22px !important;
  top: 24px !important;
  width: 54px !important;
  height: 54px !important;
}

.stats-grid [data-stat] {
  white-space: nowrap;
  letter-spacing: -0.035em;
}

.stats-grid article:first-child [data-stat] {
  font-size: clamp(30px, 2.3vw, 40px) !important;
}

.review-player-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: inherit;
  cursor: pointer;
}

.review-player-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(36, 11, 52, 0.02) 20%, rgba(43, 9, 70, 0.42) 100%);
  opacity: 0.72;
  transition: opacity 0.24s ease;
}

.review-card--video .review-card__media img {
  object-position: center center !important;
  filter: saturate(1.03) contrast(1.02);
}

.review-card__play {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 3 !important;
  width: 76px !important;
  height: 76px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.14), 0 22px 48px rgba(72, 18, 126, 0.30) !important;
  opacity: 1 !important;
}

.review-card__play::before {
  content: "" !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 5px !important;
  border-top: 13px solid transparent !important;
  border-bottom: 13px solid transparent !important;
  border-left: 20px solid var(--wb-purple) !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.review-card__play::after {
  inset: -14px !important;
  opacity: 0.54 !important;
}

.review-card__play-label {
  left: 50% !important;
  bottom: 22px !important;
  z-index: 3 !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: rgba(62, 18, 88, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(42, 12, 72, 0.22) !important;
}

.review-player-trigger:hover::before,
.review-player-trigger:focus-visible::before {
  opacity: 0.54 !important;
}

.review-player-trigger:hover .review-card__play,
.review-player-trigger:focus-visible .review-card__play {
  transform: translate(-50%, -50%) scale(1.08) !important;
  background: rgba(244, 255, 120, 0.92) !important;
}

.review-player-trigger:hover .review-card__play-label,
.review-player-trigger:focus-visible .review-card__play-label {
  background: rgba(123, 31, 209, 0.76) !important;
}

.reviews-sticky__avatar {
  background: #f6e9ff !important;
  box-shadow: inset 0 0 0 1px rgba(123, 31, 209, 0.12);
}

.reviews-sticky__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.review-video-modal__close,
.reviews-sticky__close {
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  line-height: 1 !important;
}

.review-video-modal__close {
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.review-video-modal__close::before,
.review-video-modal__close::after {
  content: "";
  grid-area: 1 / 1;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  color: #fff;
}

.review-video-modal__close::before {
  transform: rotate(45deg);
}

.review-video-modal__close::after {
  transform: rotate(-45deg);
}

.reviews-sticky__close {
  font-size: 0 !important;
}

.reviews-sticky__close::before,
.reviews-sticky__close::after {
  content: "";
  grid-area: 1 / 1;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.reviews-sticky__close::before {
  transform: rotate(45deg);
}

.reviews-sticky__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .hero__info-row {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .stats-grid article {
    padding: 22px 76px 22px 20px !important;
  }

  .stats-grid article:first-child [data-stat] {
    font-size: clamp(25px, 8vw, 34px) !important;
  }

  .review-card__play {
    width: 64px !important;
    height: 64px !important;
  }
}

/* Final review section alignment and readable sticky reviews */
.reviews-section {
  padding-top: clamp(72px, 7vw, 108px) !important;
}

.review-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.2vw, 34px) !important;
  align-items: stretch !important;
}

.review-card.review-card--video {
  min-width: 0;
  height: 100%;
  padding: clamp(16px, 1.45vw, 22px) !important;
  border-radius: 32px !important;
  background: #fff !important;
}

.review-card--video .review-card__media {
  aspect-ratio: 16 / 9 !important;
  border-radius: 24px !important;
  background: #eee7f7;
}

.review-card--video .review-card__media img {
  object-position: center center !important;
}

.review-card.review-card--video > span:not(.review-card__play):not(.review-card__play-label) {
  width: 100%;
  margin-top: 20px !important;
  padding: 8px 14px !important;
  border-radius: 999px;
  background: #f1e6fb !important;
}

.review-card.review-card--video h3 {
  min-height: 0 !important;
  margin-top: 18px !important;
  font-size: clamp(20px, 1.65vw, 28px) !important;
  line-height: 1.12 !important;
}

.review-card.review-card--video strong {
  min-height: 0 !important;
  margin-top: 18px !important;
  line-height: 1.2 !important;
}

.review-card.review-card--video p {
  margin-top: 18px !important;
  line-height: 1.38 !important;
}

.review-video-modal__close {
  top: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  display: block !important;
  place-items: initial !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: #fff !important;
  overflow: hidden;
}

.review-video-modal__close::before,
.review-video-modal__close::after {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 20px !important;
  height: 3px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  transform-origin: center !important;
}

.review-video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.review-video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.reviews-sticky.is-reading {
  width: min(1120px, calc(100% - 48px));
}

.reviews-sticky.is-reading .reviews-sticky__inner {
  min-height: 152px;
  grid-template-columns: auto minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 14px;
  padding: 16px;
}

.reviews-sticky.is-reading .reviews-sticky__toggle {
  align-self: start;
}

.reviews-sticky.is-reading .reviews-sticky__cards {
  align-items: stretch;
}

.reviews-sticky.is-reading .reviews-sticky__card {
  align-items: start;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 14px;
  cursor: default;
}

.reviews-sticky.is-reading .reviews-sticky__avatar {
  width: 44px;
  height: 44px;
}

.reviews-sticky.is-reading .reviews-sticky__card strong,
.reviews-sticky.is-reading .reviews-sticky__card span,
.reviews-sticky.is-reading .reviews-sticky__card p {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.reviews-sticky.is-reading .reviews-sticky__card strong {
  font-size: 14px;
}

.reviews-sticky.is-reading .reviews-sticky__card span {
  font-size: 13px;
  line-height: 1.22;
}

.reviews-sticky.is-reading .reviews-sticky__card p {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.32;
}

.reviews-sticky__close {
  position: relative;
  display: block !important;
  place-items: initial !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.reviews-sticky__close::before,
.reviews-sticky__close::after {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 16px !important;
  height: 3px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  transform-origin: center !important;
}

.reviews-sticky__close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.reviews-sticky__close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

body.has-sticky-reviews:not(.reviews-sticky-collapsed) {
  padding-bottom: 150px;
}

body.has-sticky-reviews.reviews-sticky-reading {
  padding-bottom: 210px;
}

body.has-sticky-reviews:not(.reviews-sticky-collapsed):has(.reviews-sticky.is-reading) {
  padding-bottom: 210px;
}

@media (max-width: 1020px) {
  .review-grid {
    grid-template-columns: 1fr !important;
  }

  .review-card.review-card--video {
    max-width: 680px;
    margin-inline: auto;
  }

  .reviews-sticky.is-reading .reviews-sticky__inner {
    grid-template-columns: 1fr 44px;
  }

  .reviews-sticky.is-reading .reviews-sticky__toggle {
    grid-column: 1 / -1;
  }

  .reviews-sticky.is-reading .reviews-sticky__cards {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    max-height: 54vh;
    overflow: auto;
    padding-right: 2px;
  }
}

@media (max-width: 760px) {
  .reviews-sticky.is-reading {
    width: calc(100% - 24px);
    bottom: 12px;
  }

  .reviews-sticky.is-reading .reviews-sticky__inner {
    max-height: 70vh;
    overflow: auto;
    border-radius: 24px;
  }

  body.has-sticky-reviews:not(.reviews-sticky-collapsed):has(.reviews-sticky.is-reading) {
    padding-bottom: 360px;
  }

  body.has-sticky-reviews.reviews-sticky-reading {
    padding-bottom: 360px;
  }
}

/* Final video review previews */
.review-card__media,
.video-preview {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #f4f0fa !important;
}

.review-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 8, 40, 0.05) 0%,
    rgba(20, 8, 40, 0.35) 100%
  );
  pointer-events: none;
}

.review-card--video .review-card__media {
  flex: 0 0 auto !important;
  margin: 0 0 18px !important;
  border-radius: 22px !important;
}

.review-player-trigger {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  overflow: hidden !important;
  background: transparent !important;
  cursor: pointer;
  text-align: left;
}

.review-grid {
  grid-auto-rows: 1fr !important;
}

.review-player-trigger::before {
  content: none !important;
}

.review-card__media img,
.review-card--video .review-card__media img,
.review-player-trigger img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background: #f4f0fa !important;
  filter: none !important;
  transition: transform 0.34s ease, filter 0.34s ease !important;
}

.video-play {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 2 !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 12px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #7b1fd1 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 32px rgba(40, 10, 80, 0.18) !important;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease !important;
}

.review-card .video-play__icon,
.review-card .video-play__text {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.review-card .video-play__icon {
  position: relative;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
}

.video-play__icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #7b1fd1;
}

.review-card .video-play__text {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.review-player-trigger:hover img,
.review-player-trigger:focus-visible img {
  transform: scale(1.04) !important;
  filter: saturate(1.04) brightness(1.02) !important;
}

.review-player-trigger:hover .video-play,
.review-player-trigger:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.03) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 16px 38px rgba(40, 10, 80, 0.24) !important;
}

.review-card.review-card--video {
  height: 100% !important;
  min-height: 493px !important;
}

.review-card.review-card--video p {
  flex-grow: 1;
}

@media (max-width: 760px) {
  .review-card.review-card--video {
    min-height: 455px !important;
  }

  .video-play {
    max-width: calc(100% - 24px) !important;
    gap: 8px !important;
    padding: 10px 13px !important;
    font-size: 12px !important;
  }

  .review-card .video-play__icon {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .video-play__icon::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }
}

/* Clickable license card */
.license-card {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.license-card:hover,
.license-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 34px 88px rgba(58, 25, 110, 0.16);
}

.license-card:focus-visible {
  outline: 3px solid rgba(123, 31, 209, 0.34);
  outline-offset: 6px;
}

/* Premium reviews bar */
.reviews-bar {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 20px !important;
  z-index: 180 !important;
  width: min(1180px, calc(100% - 56px)) !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.28s ease, width 0.28s ease !important;
}

.reviews-bar[hidden] {
  display: none !important;
}

.reviews-bar.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px) scale(0.985) !important;
}

.reviews-bar,
.reviews-bar * {
  box-sizing: border-box;
}

.reviews-bar__mini,
.reviews-bar.is-collapsed .reviews-bar__mini {
  display: none !important;
}

.reviews-bar.is-collapsed {
  width: min(1180px, calc(100% - 56px)) !important;
}

.reviews-bar.is-collapsed .reviews-bar__inner {
  display: grid !important;
}

.reviews-bar__inner {
  pointer-events: auto;
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 2.7fr) 48px !important;
  align-items: stretch !important;
  gap: 14px !important;
  max-height: 122px;
  min-height: 0 !important;
  padding: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(123, 31, 209, 0.13) !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(203, 17, 171, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 247, 255, 0.96) 100%) !important;
  box-shadow: 0 24px 76px rgba(54, 20, 90, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: max-height 0.34s ease, padding 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
}

.reviews-bar.is-open .reviews-bar__inner {
  max-height: 188px;
  padding: 20px !important;
  border-color: rgba(123, 31, 209, 0.18) !important;
  box-shadow: 0 28px 88px rgba(54, 20, 90, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.reviews-bar__header {
  display: contents;
}

.reviews-bar__toggle,
.reviews-bar__close {
  border: 0 !important;
  font-family: inherit;
  cursor: pointer;
}

.reviews-bar__toggle {
  grid-column: 1;
  grid-row: 1;
  align-self: center !important;
  min-height: 64px !important;
  height: 64px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #cb11ab 0%, #7b1fd1 100%) !important;
  box-shadow: 0 16px 36px rgba(123, 31, 209, 0.25) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.reviews-bar.is-open .reviews-bar__toggle {
  align-self: start !important;
}

.reviews-bar__toggle:hover,
.reviews-bar__toggle:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 42px rgba(123, 31, 209, 0.32) !important;
}

.reviews-bar__toggle-icon {
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transform: rotate(0deg);
  transition: transform 0.28s ease, background 0.22s ease !important;
}

.reviews-bar.is-open .reviews-bar__toggle-icon {
  transform: rotate(180deg);
}

.reviews-bar__list {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

.reviews-bar__item {
  min-width: 0;
  min-height: 0 !important;
  height: 90px;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(123, 31, 209, 0.11) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: 0 10px 28px rgba(68, 28, 105, 0.06) !important;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition:
    height 0.28s ease,
    padding 0.28s ease,
    transform 0.28s ease,
    opacity 0.28s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease !important;
  transition-delay: calc(var(--review-index, 0) * 35ms);
}

.reviews-bar__item:hover,
.reviews-bar__item:focus-visible {
  border-color: rgba(123, 31, 209, 0.22) !important;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(68, 28, 105, 0.1) !important;
  outline: none;
  transform: translateY(-2px);
}

.reviews-bar.is-open .reviews-bar__item {
  height: 128px;
  align-items: flex-start !important;
  padding: 18px !important;
  cursor: default;
  animation: reviewsBarItemIn 0.36s ease both;
  animation-delay: calc(var(--review-index, 0) * 55ms);
}

.reviews-bar__avatar {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  color: #7b1fd1 !important;
  background:
    radial-gradient(circle at 30% 24%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, #f6edff 0%, #ebe0f7 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(123, 31, 209, 0.12) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.reviews-bar.is-open .reviews-bar__avatar {
  flex-basis: 48px !important;
  width: 48px !important;
  height: 48px !important;
}

.reviews-bar__content {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.reviews-bar.is-open .reviews-bar__content {
  gap: 7px;
}

.reviews-bar__name,
.reviews-bar__category,
.reviews-bar__text {
  min-width: 0;
  margin: 0 !important;
}

.reviews-bar__name {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  color: #221d2e !important;
  font-size: 14px !important;
  line-height: 1.22 !important;
  font-weight: 850 !important;
}

.reviews-bar__person,
.reviews-bar__city,
.reviews-bar__category,
.reviews-bar__text {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.reviews-bar__person {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap !important;
}

.reviews-bar__city {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 10px;
  white-space: nowrap !important;
}

.reviews-bar__city::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(34, 29, 46, 0.46);
  transform: translateY(-50%);
}

.reviews-bar__category {
  display: block !important;
  color: #7b1fd1 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  white-space: nowrap !important;
}

.reviews-bar__text {
  display: -webkit-box !important;
  color: #6c687a !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: 18px;
  white-space: normal !important;
  transition: max-height 0.28s ease, color 0.22s ease !important;
}

.reviews-bar.is-open .reviews-bar__name {
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.reviews-bar.is-open .reviews-bar__category {
  font-size: 13.5px !important;
}

.reviews-bar.is-open .reviews-bar__text {
  color: #5f5a72 !important;
  font-size: 13.5px !important;
  line-height: 1.42 !important;
  -webkit-line-clamp: 3;
  max-height: 58px;
}

.reviews-bar__close {
  grid-column: 3;
  grid-row: 1;
  align-self: center !important;
  justify-self: end !important;
  position: relative;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  color: #5c188f !important;
  background: #f1e6fb !important;
  box-shadow: inset 0 0 0 1px rgba(123, 31, 209, 0.08) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease !important;
}

.reviews-bar__close:hover,
.reviews-bar__close:focus-visible {
  transform: translateY(-2px);
  background: #ead9fb !important;
  box-shadow: inset 0 0 0 1px rgba(123, 31, 209, 0.16), 0 12px 26px rgba(68, 28, 105, 0.12) !important;
  outline: none;
}

.reviews-bar__close::before,
.reviews-bar__close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 17px !important;
  height: 3px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transform-origin: center !important;
}

.reviews-bar__close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.reviews-bar__close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

body.has-sticky-reviews:not(.reviews-sticky-collapsed) {
  padding-bottom: 146px !important;
}

body.has-sticky-reviews.reviews-sticky-reading,
body.has-sticky-reviews:not(.reviews-sticky-collapsed):has(.reviews-bar.is-open) {
  padding-bottom: 218px !important;
}

@keyframes reviewsBarItemIn {
  from {
    opacity: 0.68;
    transform: translateY(10px);
  }

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

@media (max-width: 1120px) {
  .reviews-bar {
    width: min(980px, calc(100% - 40px)) !important;
  }

  .reviews-bar__inner {
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 2.5fr) 46px !important;
    gap: 10px !important;
    padding: 14px !important;
  }

  .reviews-bar__toggle {
    padding-inline: 14px !important;
    font-size: 14px !important;
  }

  .reviews-bar__item {
    gap: 10px !important;
    padding: 12px !important;
  }

  .reviews-bar__avatar {
    flex-basis: 38px !important;
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 860px) {
  .reviews-bar {
    left: 16px !important;
    right: 16px !important;
    bottom: 14px !important;
    width: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .reviews-bar.is-hidden {
    transform: translateY(16px) scale(0.985) !important;
  }

  .reviews-bar__inner {
    display: flex !important;
    flex-direction: column;
    gap: 12px !important;
    max-height: 432px;
    padding: 14px !important;
    border-radius: 28px !important;
  }

  .reviews-bar.is-open .reviews-bar__inner {
    max-height: 560px;
    padding: 16px !important;
  }

  .reviews-bar__header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
    align-items: center;
  }

  .reviews-bar__toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 56px !important;
    min-height: 56px !important;
    justify-content: center !important;
  }

  .reviews-bar__close {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .reviews-bar__list {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .reviews-bar__item,
  .reviews-bar__item:nth-child(n + 3) {
    display: flex !important;
  }

  .reviews-bar__item {
    height: 78px;
    padding: 12px 14px !important;
  }

  .reviews-bar.is-open .reviews-bar__item {
    height: 118px;
    padding: 15px !important;
  }

  .reviews-bar__name {
    font-size: 13.5px !important;
  }

  .reviews-bar__category {
    font-size: 12.8px !important;
  }

  .reviews-bar__text {
    font-size: 12.5px !important;
  }

  body.has-sticky-reviews:not(.reviews-sticky-collapsed) {
    padding-bottom: 396px !important;
  }

  body.has-sticky-reviews.reviews-sticky-reading,
  body.has-sticky-reviews:not(.reviews-sticky-collapsed):has(.reviews-bar.is-open) {
    padding-bottom: 510px !important;
  }
}

@media (max-width: 420px) {
  .reviews-bar {
    left: 12px !important;
    right: 12px !important;
  }

  .reviews-bar__inner {
    border-radius: 26px !important;
    padding: 12px !important;
  }

  .reviews-bar__header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .reviews-bar__toggle {
    height: 52px !important;
    min-height: 52px !important;
    font-size: 13.5px !important;
  }

  .reviews-bar__toggle-icon {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .reviews-bar__close {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .reviews-bar__item {
    height: 78px;
    gap: 10px !important;
    padding: 11px 12px !important;
  }

  .reviews-bar.is-open .reviews-bar__item {
    height: 116px;
    padding: 14px !important;
  }

  .reviews-bar__avatar {
    flex-basis: 36px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-bar,
  .reviews-bar__inner,
  .reviews-bar__toggle,
  .reviews-bar__toggle-icon,
  .reviews-bar__item,
  .reviews-bar__text,
  .reviews-bar__close {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final avatar and amount auto layout refinements */
.reviews-bar__avatar {
  padding: 0 !important;
  color: transparent !important;
  background: #f6e9ff !important;
}

.reviews-bar__avatar img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.hero-bank {
  display: grid !important;
  align-content: center !important;
  justify-items: start !important;
  gap: 8px !important;
  padding: 18px 28px 20px 24px !important;
  container-type: inline-size;
}

.hero-bank__label {
  min-width: 0;
}

.hero-bank strong.hero-bank__amount {
  --amount-min-size: 28;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
  white-space: nowrap !important;
  font-size: var(--amount-fit-size, min(clamp(38px, 3.3vw, 52px), 15cqw)) !important;
  letter-spacing: -0.04em !important;
}

/* Mobile mini-game: native compact layout */
.game-reset {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .mini-game.section {
    width: 100%;
    max-width: 100%;
    padding: 48px 0 !important;
    overflow: hidden;
  }

  .mini-game .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 16px !important;
  }

  .mini-game .luck-game.game-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 18px !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 137, 226, 0.42), transparent 34%),
      radial-gradient(circle at 96% 58%, rgba(223, 255, 79, 0.14), transparent 28%),
      linear-gradient(135deg, #c914c9 0%, #9221d7 50%, #6418c9 100%) !important;
    box-shadow: 0 26px 68px rgba(91, 30, 157, 0.24) !important;
    box-sizing: border-box !important;
  }

  .mini-game .luck-game.game-panel::before {
    left: -150px !important;
    top: -150px !important;
    width: 320px !important;
    height: 320px !important;
    opacity: 0.72 !important;
  }

  .mini-game .luck-game.game-panel::after {
    right: -130px !important;
    bottom: -150px !important;
    width: 300px !important;
    height: 300px !important;
    opacity: 0.58 !important;
  }

  .mini-game .game-copy {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .mini-game .section-kicker--light {
    min-height: 30px !important;
    margin: 0 0 12px !important;
    gap: 7px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
  }

  .mini-game .section-kicker--light .ui-icon {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
  }

  .mini-game .section-kicker--light::before {
    display: none !important;
  }

  .mini-game .game-copy h2 {
    max-width: 100% !important;
    margin: 0 0 10px !important;
    font-size: clamp(38px, 10vw, 48px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.035em !important;
  }

  .mini-game .game-copy > p {
    max-width: 100% !important;
    margin: 0 0 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    font-weight: 600 !important;
  }

  .mini-game .game-hints {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
  }

  .mini-game .game-hints li {
    min-height: 42px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 16px !important;
    padding: 8px 12px 8px 46px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
    font-weight: 760 !important;
  }

  .mini-game .game-hints li::before {
    left: 10px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }

  .mini-game .game-result {
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    border-radius: 18px !important;
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    font-size: 13.5px !important;
    line-height: 1.28 !important;
    font-weight: 760 !important;
  }

  .mini-game .game-result__icon {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    display: grid !important;
    place-items: center !important;
    align-self: center !important;
    justify-self: center !important;
  }

  .mini-game .game-result > [data-game-result-text] {
    grid-column: 2 !important;
    min-width: 0 !important;
    display: block !important;
    color: #ffffff !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .mini-game .game-result__icon .ui-icon {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
  }

  .promo-result__label {
    margin: 0 0 3px !important;
    font-size: 12px !important;
  }

  .promo-code {
    font-size: 19px !important;
  }

  .promo-result__note {
    margin-top: 4px !important;
    font-size: 11.5px !important;
    line-height: 1.22 !important;
  }

  .mini-game .mini-game__visual {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 22px !important;
    padding: 14px 12px 16px !important;
    background:
      radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.24), transparent 46%),
      rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  .mini-game .mini-game__visual::before {
    content: "" !important;
    left: 50% !important;
    top: 58% !important;
    width: min(94%, 330px) !important;
    aspect-ratio: 1 !important;
    border-width: 5px !important;
    opacity: 0.42 !important;
    transform: translate(-50%, -50%) !important;
  }

  .mini-game .mini-game__visual::after {
    content: "" !important;
    right: 18px !important;
    top: 16px !important;
    width: 20px !important;
    height: 20px !important;
    opacity: 0.55 !important;
  }

  .mini-game .game-orbit,
  .mini-game .game-stage {
    display: none !important;
  }

  .mini-game .game-stage-label {
    position: relative !important;
    inset: auto !important;
    z-index: 5 !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    color: #6814b8 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 12px 28px rgba(46, 10, 82, 0.12) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .mini-game .game-stage-label::after {
    display: none !important;
  }

  .mini-game .game-stage-label .ui-icon {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
  }

  .mini-game .cup-row {
    position: relative !important;
    inset: auto !important;
    z-index: 4 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .mini-game .cup-row::before {
    left: 8px !important;
    top: auto !important;
    bottom: 8px !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 0.45 !important;
  }

  .mini-game .cup-row::after {
    display: none !important;
  }

  .mini-game .luck-cup {
    width: 100% !important;
    min-width: 0 !important;
    height: 142px !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    gap: 5px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    padding: 12px 6px 8px !important;
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .mini-game .luck-cup::before {
    right: 7px !important;
    top: 7px !important;
    width: 11px !important;
    height: 11px !important;
    opacity: 0.42 !important;
  }

  .mini-game .luck-cup::after,
  .mini-game .luck-cup > span {
    display: none !important;
  }

  .mini-game .luck-cup__glass {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    max-height: 50px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .mini-game .luck-cup b {
    position: static !important;
    margin: 0 !important;
    color: #6515d4 !important;
    font-size: 30px !important;
    line-height: 0.95 !important;
    font-weight: 950 !important;
  }

  .mini-game .luck-cup small {
    position: static !important;
    width: 100% !important;
    max-width: 78px !important;
    min-height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: auto !important;
    border-radius: 999px !important;
    padding: 0 8px !important;
    font-size: 9.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .mini-game .luck-game.game-panel > .game-mascot {
    display: block !important;
    right: -12px !important;
    bottom: 56px !important;
    z-index: 2 !important;
    width: 86px !important;
    opacity: 0.16 !important;
    filter: none !important;
  }

  .game-reset {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    color: #5d159b !important;
    background: linear-gradient(135deg, #f4ff78 0%, #dfff4f 100%) !important;
    box-shadow: 0 16px 34px rgba(38, 8, 86, 0.18) !important;
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 900 !important;
    cursor: pointer;
  }

  .game-reset:hover,
  .game-reset:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(38, 8, 86, 0.22) !important;
    outline: none;
  }
}

@media (max-width: 430px) {
  .mini-game .container {
    padding-inline: 12px !important;
  }

  .mini-game .luck-game.game-panel {
    gap: 16px !important;
    padding: 16px !important;
    border-radius: 24px !important;
  }

  .mini-game .game-copy h2 {
    font-size: clamp(34px, 10.5vw, 44px) !important;
  }

  .mini-game .game-copy > p {
    font-size: 14.5px !important;
  }

  .mini-game .game-hints li {
    min-height: 40px !important;
    font-size: 13.5px !important;
  }

  .mini-game .mini-game__visual {
    padding-inline: 10px !important;
  }

  .mini-game .cup-row {
    gap: 7px !important;
  }

  .mini-game .luck-cup {
    height: 136px !important;
    border-radius: 18px !important;
    padding: 11px 5px 8px !important;
  }

  .mini-game .luck-cup__glass {
    width: 47px !important;
    height: 47px !important;
    max-height: 47px !important;
  }

  .mini-game .luck-cup b {
    font-size: 28px !important;
  }
}

@media (max-width: 390px) {
  .mini-game.section {
    padding-block: 40px !important;
  }

  .mini-game .container {
    padding-inline: 10px !important;
  }

  .mini-game .luck-game.game-panel {
    padding: 14px !important;
    gap: 14px !important;
  }

  .mini-game .game-result {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    min-height: 54px !important;
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .mini-game .game-result__icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .mini-game .mini-game__visual {
    gap: 12px !important;
    padding: 12px 8px 14px !important;
  }

  .mini-game .game-stage-label {
    min-height: 32px !important;
    padding-inline: 10px !important;
    font-size: 11.5px !important;
  }

  .mini-game .cup-row {
    gap: 6px !important;
  }

  .mini-game .luck-cup {
    height: 128px !important;
    padding: 10px 4px 7px !important;
  }

  .mini-game .luck-cup__glass {
    width: 43px !important;
    height: 43px !important;
    max-height: 43px !important;
  }

  .mini-game .luck-cup b {
    font-size: 26px !important;
  }

  .mini-game .luck-cup small {
    max-width: 70px !important;
    min-height: 26px !important;
    padding-inline: 6px !important;
    font-size: 8.8px !important;
  }

  .mini-game .luck-game.game-panel > .game-mascot {
    right: 4px !important;
    width: 72px !important;
  }

  .game-reset {
    min-height: 46px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 360px) {
  .mini-game .container {
    padding-inline: 8px !important;
  }

  .mini-game .luck-game.game-panel {
    padding: 12px !important;
  }

  .mini-game .section-kicker--light {
    min-height: 28px !important;
    font-size: 11px !important;
  }

  .mini-game .game-copy h2 {
    font-size: 34px !important;
  }

  .mini-game .game-copy > p {
    font-size: 13.5px !important;
  }

  .mini-game .game-hints li {
    min-height: 38px !important;
    padding-left: 42px !important;
    font-size: 12.8px !important;
  }

  .mini-game .game-hints li::before {
    width: 26px !important;
    height: 26px !important;
    font-size: 13px !important;
  }

  .mini-game .cup-row {
    gap: 5px !important;
  }

  .mini-game .luck-cup {
    height: 120px !important;
    border-radius: 16px !important;
  }

  .mini-game .luck-cup__glass {
    width: 38px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .mini-game .luck-cup b {
    font-size: 24px !important;
  }

  .mini-game .luck-cup small {
    max-width: 62px !important;
    min-height: 24px !important;
    font-size: 8px !important;
  }

  .mini-game .luck-game.game-panel > .game-mascot {
    display: none !important;
  }
}
