:root {
  --bg: #070b1d;
  --bg-deep: #050714;
  --panel: #0e1430;
  --panel-2: #131b3d;
  --ink: #f7f5ef;
  --muted: #9aa3c2;
  --gold: #ffd166;
  --gold-deep: #e89c2e;
  --orange: #ff8a3d;
  --red: #ff4d5a;
  --teal: #38d6b0;
  --card: #ffffff;
  --card-ink: #1b2032;
  --card-muted: #6b7188;
  --line: #2a3258;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

/* Loading overlay */
#loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.loader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.35);
  animation: loaderSpin 1.4s ease-in-out infinite alternate;
}

.loader-mark svg {
  width: 40px;
  height: 40px;
}

.loader-brand {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.loader-brand strong {
  color: var(--gold);
}

.loader-tagline {
  color: var(--muted);
  font-size: 0.86rem;
}

@keyframes loaderSpin {
  0% { transform: rotate(-8deg) scale(0.96); opacity: 0.7; }
  100% { transform: rotate(8deg) scale(1.05); opacity: 1; }
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: block;
  padding: 9px 16px max(9px, env(safe-area-inset-bottom));
  background: rgba(7, 11, 29, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.16), rgba(255, 138, 61, 0.08));
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 10px;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--gold);
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.official-link svg {
  width: 15px;
  height: 15px;
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 8px auto 0;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.lang-btn {
  min-width: 44px;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.lang-btn.is-active {
  background: linear-gradient(180deg, #ffd166, #ffb73d);
  color: #241a04;
  box-shadow: 0 3px 12px rgba(255, 209, 102, 0.28);
}

/* Wheel section */
.wheel-section {
  position: relative;
  padding: 40px 18px 56px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0c1230 0%, #070b1d 58%, #050714 100%);
}

.wheel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
  pointer-events: none;
}

.wheel-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 560px;
  height: 620px;
  transform: translateX(-50%);
  background:
    linear-gradient(115deg, rgba(255, 209, 102, 0.16), rgba(255, 77, 90, 0.08) 42%, rgba(56, 214, 176, 0.1) 100%);
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.wheel-copy {
  position: relative;
  max-width: 560px;
  margin: 0 auto 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.08);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 77, 90, 0.5);
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 90, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 90, 0); }
}

.wheel-copy h1 {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.wheel-copy h1 + p {
  max-width: 480px;
  margin: 0 auto;
}

.wheel-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.wheel-stage {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.wheel-wrap {
  position: relative;
  display: inline-block;
  width: min(420px, calc(100vw - 44px));
  margin: 0 0 22px;
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

.wheel-pointer svg {
  width: 34px;
  height: 42px;
}

#wheel-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #3b2705;
  background: radial-gradient(circle at 35% 30%, #fff3c4, #ffd166 48%, #d99a16 100%);
  border: 4px solid #8e6b12;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 3px rgba(255, 255, 255, 0.65);
  z-index: 4;
  pointer-events: none;
}

.wheel-center span {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.spin-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(440px, 100%);
  margin: 0 auto;
}

.spin-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.spins-display {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 209, 102, 0.22);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.spins-display strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.spin-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.spin-dot.used {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.55);
  transform: scale(1.08);
}

.spin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(360px, 100%);
  min-height: 58px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb73d, #ff8a3d);
  color: #231403;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255, 138, 61, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: spinPulse 2.1s ease-in-out infinite;
}

.spin-btn svg {
  width: 19px;
  height: 19px;
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 9px 28px rgba(255, 138, 61, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.spin-btn:active:not(:disabled) {
  transform: translateY(0);
}

.spin-btn:disabled {
  cursor: not-allowed;
  filter: saturate(0.55) brightness(0.9);
  animation: none;
}

@keyframes spinPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(255, 138, 61, 0.4), 0 0 0 0 rgba(255, 138, 61, 0.45); }
  50% { box-shadow: 0 6px 22px rgba(255, 138, 61, 0.4), 0 0 0 14px rgba(255, 138, 61, 0); }
}

.result-message {
  min-height: 26px;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.result-message.show {
  opacity: 1;
  transform: translateY(0);
}

.spin-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.spin-btn.disabled-btn {
  background: #3b4160;
  color: #8c93b3;
  box-shadow: none;
  animation: none;
}

/* Unlock panel */
.unlock-panel {
  position: relative;
  max-width: 560px;
  margin: 30px auto 0;
  padding: 26px 20px;
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 209, 102, 0.14), rgba(255, 138, 61, 0.06));
  box-shadow: 0 0 60px rgba(255, 209, 102, 0.14);
  animation: unlockIn 0.6s ease both;
}

@keyframes unlockIn {
  0% { opacity: 0; transform: translateY(14px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.unlock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
}

.unlock-badge svg {
  width: 28px;
  height: 28px;
}

.unlock-panel h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.unlock-panel p {
  margin: 0 auto 18px;
  max-width: 420px;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn-unlock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd166, #e89c2e);
  color: #241a04;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.32);
}

.btn-unlock svg {
  width: 17px;
  height: 17px;
}

/* Status strip */
.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 76px;
  padding: 12px 8px;
  text-align: center;
  background: var(--panel);
}

.status-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-item strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

/* Marquee */
.prize-marquee {
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}

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

/* Deals */
.deals-section {
  padding: 46px 18px 52px;
  background:
    linear-gradient(180deg, #0a0f29 0%, #0d1230 100%);
}

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

.section-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--card);
  color: var(--card-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  max-width: calc(100% - 16px);
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-badge.hot {
  background: var(--teal);
  color: #04352a;
}

.product-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #eef1f7;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 12px;
}

.product-name {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 800;
}

.product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.7rem;
}

.stars {
  color: #f5a623;
  letter-spacing: 0.03em;
}

.rating-num {
  font-weight: 800;
}

.review-count {
  color: var(--card-muted);
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.price-current {
  font-size: 1.02rem;
  font-weight: 900;
}

.price-original {
  color: var(--card-muted);
  font-size: 0.74rem;
  text-decoration: line-through;
}

.view-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: #101634;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.view-deal svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* How it works */
.how-section {
  padding: 46px 18px 54px;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.steps {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: var(--panel);
}

.step-num {
  position: absolute;
  top: 18px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  letter-spacing: 0;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Footer */
.footer {
  padding: 28px 18px calc(96px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-deep);
  text-align: center;
}

.footer p {
  max-width: 620px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer a {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 20, 48, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta.is-unlocked {
  border-color: rgba(255, 209, 102, 0.55);
  box-shadow: 0 14px 44px rgba(255, 209, 102, 0.18);
}

.sticky-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-copy span {
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-sticky svg {
  width: 16px;
  height: 16px;
}

.sticky-cta.is-unlocked .btn-sticky {
  background: linear-gradient(180deg, #ffd166, #ffb73d);
  color: #241a04;
  box-shadow: 0 5px 18px rgba(255, 209, 102, 0.4);
}

/* Confetti */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  pointer-events: none;
}

@media (min-width: 640px) {
  .topbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wheel-section {
    padding: 54px 24px 64px;
  }

  .wheel-copy h1 {
    font-size: 3.3rem;
  }

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    padding-left: 18px;
    padding-top: 58px;
  }

  .step-num {
    top: 18px;
    left: 18px;
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    width: min(560px, calc(100vw - 40px));
    transform: translateX(-50%);
  }
}

@media (min-width: 940px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .wheel-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    max-width: 920px;
  }

  .wheel-wrap {
    margin-bottom: 0;
  }

  .spin-panel {
    width: 320px;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }

  .spin-top {
    justify-content: flex-start;
  }

  .spin-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
