/* =========================================================================
   WinZone subscribe screen — component styles
   Neon game-promo look adapted for the Goama subscribe page.
   Reads design tokens from tokens.css (var(--wz-*)). Loaded AFTER Bootstrap
   so it intentionally overrides reboot defaults (body background, buttons).
   Built to coexist with intlTelInput (phone field) and Bootstrap modals.
   ========================================================================= */

@font-face {
  font-family: "Poppins-Regular";
  src: url("fonts/Poppins-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("fonts/Poppins-Medium.ttf");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

/* ---- Page background ---------------------------------------------------- */
html {
  min-height: 100%;
  background: var(--wz-bg-base);
}

body.wz-body {
  min-height: 100vh;
  margin: 0;
  color: var(--wz-text-primary);
  overflow-x: hidden;
  font-family: var(--wz-font-body);
  background: var(--wz-gradient-bg);
  background-attachment: fixed;
}

/* faint perspective grid + neon streaks behind the card */
body.wz-body::before,
body.wz-body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  z-index: 0;
}
body.wz-body::before {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(600px) rotateX(58deg) translateY(26vh) scale(1.5);
  transform-origin: bottom;
}

/* ---- Layout shell ------------------------------------------------------- */
.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(0.75rem, 2.5vw, 2.25rem);
}

.promo-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(1rem, 3.2vw, 2.2rem);
  isolation: isolate;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(1.1rem, 4vw, var(--wz-radius-card));
  background:
    linear-gradient(rgba(10, 8, 43, 0.68), rgba(10, 8, 43, 0.9)) padding-box,
    linear-gradient(140deg, var(--wz-accent-magenta), var(--wz-brand-cyan), var(--wz-accent-purple), var(--wz-brand-yellow)) border-box;
  box-shadow: var(--wz-shadow-card), 0 0 55px rgba(41, 159, 255, 0.22), inset 0 0 72px rgba(118, 39, 255, 0.16);
  overflow: hidden;
}

.promo-card::before {
  position: absolute;
  inset: 1rem;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.1), transparent 14rem),
    linear-gradient(145deg, rgba(224, 64, 251, 0.08), rgba(43, 231, 255, 0.07));
  filter: blur(1px);
}

/* ---- Decorative glows / floats ----------------------------------------- */
.glow {
  position: absolute;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: var(--wz-radius-pill);
  filter: blur(44px);
  opacity: 0.4;
}
.glow-pink {
  top: 3rem;
  left: -8rem;
  background: var(--wz-accent-magenta);
}
.glow-blue {
  right: -8rem;
  bottom: 15rem;
  background: var(--wz-brand-cyan);
}

.float {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.35));
  animation: wz-bob 5s ease-in-out infinite;
}
.coin {
  width: clamp(2.6rem, 8vw, 4.6rem);
  aspect-ratio: 1;
  border: 0.35rem solid #ffb100;
  border-radius: 50%;
  color: #fff089;
  background: radial-gradient(circle at 35% 25%, #fff679, #ffb100 48%, #c95600 76%);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 800;
}
.coin-one {
  top: 2.2rem;
  left: clamp(0.35rem, 4vw, 1.6rem);
}
.coin-two {
  right: clamp(0.7rem, 4vw, 1.8rem);
  bottom: 18rem;
  animation-delay: -1.3s;
}
.trophy {
  right: clamp(0.35rem, 4vw, 2rem);
  top: 44%;
  font-size: clamp(3rem, 11vw, 6rem);
  animation-delay: -2.2s;
}
.gift {
  right: clamp(0.4rem, 5vw, 2rem);
  top: 31%;
  font-size: clamp(2.6rem, 9vw, 5rem);
  animation-delay: -3.4s;
}

.side-badge {
  position: absolute;
  left: clamp(-1rem, -1vw, 0.85rem);
  top: 27%;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  width: clamp(4.2rem, 12vw, 6.4rem);
  padding: 0.8rem 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.95rem;
  color: #ffe6ff;
  background: linear-gradient(160deg, var(--wz-accent-magenta), #451394);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.36), var(--wz-glow-magenta);
  text-align: center;
  transform: rotate(-9deg);
}
.side-badge span {
  color: #ffd3ff;
  font-size: clamp(1.1rem, 3.6vw, 1.8rem);
}
.side-badge strong {
  font-size: clamp(0.7rem, 2.1vw, 1.05rem);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

/* ---- Hero (CSS-drawn controller + WinZone wordmark) -------------------- */
.hero-logo {
  position: relative;
  z-index: 2;
  margin: clamp(2.5rem, 6vw, 4rem) auto 1.35rem;
  padding-top: 6.4rem;
  text-align: center;
}

.controller {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72vw, 430px);
  height: clamp(7.2rem, 18vw, 10.5rem);
  transform: translateX(-50%) rotate(-3deg);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 42% 42% 34% 34% / 38% 38% 52% 52%;
  background:
    radial-gradient(circle at 30% 70%, #08071f 0 1.6rem, transparent 1.7rem),
    radial-gradient(circle at 65% 70%, #08071f 0 1.6rem, transparent 1.7rem),
    linear-gradient(180deg, #39335e, #10102d 60%, #08071f);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.04), 0 0 28px rgba(24, 180, 255, 0.45);
}
.controller::before,
.controller::after {
  position: absolute;
  content: "";
  width: 5.6rem;
  height: 7.5rem;
  bottom: -1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #211d45, #080719);
}
.controller::before {
  left: -1rem;
  transform: rotate(22deg);
  box-shadow: -0.6rem 0 0 rgba(255, 54, 210, 0.62);
}
.controller::after {
  right: -1rem;
  transform: rotate(-22deg);
  box-shadow: 0.6rem 0 0 rgba(19, 168, 255, 0.66);
}
.pad {
  position: absolute;
  left: 20%;
  top: 43%;
  z-index: 1;
  color: #0c55ff;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  text-shadow: 0 2px 0 #9fd5ff, 0 0 12px #23b7ff;
}
.stick {
  position: absolute;
  top: 63%;
  z-index: 1;
  width: clamp(2.2rem, 5.2vw, 3.3rem);
  aspect-ratio: 1;
  border: 0.45rem solid #171631;
  border-radius: 999px;
  background: radial-gradient(circle at 45% 35%, #4a4a7d, #09091c 68%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}
.stick-left { left: 37%; }
.stick-right { left: 53%; }
.button-grid {
  position: absolute;
  top: 30%;
  right: 18%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.button-grid i {
  display: block;
  width: clamp(1rem, 2.7vw, 1.55rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ff7d90, #ff1842 65%);
  box-shadow: 0 0 10px rgba(255, 36, 86, 0.8);
}

.brand-title {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  padding: clamp(0.55rem, 1.6vw, 0.9rem) clamp(1rem, 3vw, 2.2rem);
  transform: skew(-8deg) rotate(-2deg);
  border: 0.35rem solid rgba(16, 18, 69, 0.98);
  border-radius: 1.1rem;
  background: transparent;
  box-shadow:
    0 0 0 0.25rem rgba(255, 95, 0, 0.75),
    0 0 0 0.48rem rgba(31, 175, 255, 0.7),
    0 16px 35px rgba(0, 0, 0, 0.42);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.9;
}
.brand-title span {
  display: inline-block;
  font-size: clamp(4rem, 15vw, 8.5rem);
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 0 rgba(65, 18, 84, 0.84), 0 12px 18px rgba(0, 0, 0, 0.36);
}
.brand-gold {
  color: transparent;
  background: linear-gradient(#fff7b0 0 12%, #ffe169 38%, #ffc524 66%, #f9aa07 100%);
  background-clip: text;
  -webkit-background-clip: text;
  /* crisp dark outline so the gold reads against the dark card */
  -webkit-text-stroke: 1.2px rgba(58, 22, 8, 0.55);
}
/* golden drop shadow for "Win" (overrides the shared purple shadow) */
.brand-title span.brand-gold {
  text-shadow:
    0 4px 0 #b9760a,
    0 7px 0 #875200,
    0 0 20px rgba(255, 186, 34, 0.55),
    0 12px 18px rgba(0, 0, 0, 0.34);
}
.brand-silver {
  color: #ffffff;
  background: linear-gradient(#ffffff 0 58%, #eef1ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.brand-mark {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.9rem 0 0;
  font-size: clamp(2.3rem, 7vw, 4.2rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  text-shadow: 0 5px 0 #410544, 0 0 18px rgba(255, 111, 0, 0.48);
}
.brand-mark span:first-child { color: var(--wz-brand-yellow); }
.brand-mark span:last-child,
.brand-mark b { color: var(--wz-brand-cyan); }

/* ---- Headline panel ---------------------------------------------------- */
.headline-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  margin: 0 auto clamp(1rem, 2vw, 1.4rem);
  padding: clamp(0.9rem, 2vw, 1.25rem);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.1rem;
  background: transparent;
  box-shadow: inset 0 0 30px rgba(84, 49, 255, 0.15), 0 14px 32px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.headline-panel::before {
  position: absolute;
  top: -0.75rem;
  left: 12%;
  width: 55%;
  height: 0.35rem;
  content: "";
  border-radius: var(--wz-radius-pill);
  background: linear-gradient(90deg, transparent, var(--wz-brand-orange), var(--wz-brand-yellow), transparent);
  box-shadow: 0 0 15px var(--wz-brand-orange);
}
.headline-panel p,
.headline-panel h2 {
  margin: 0;
}
.headline-panel p {
  color: #f9f4ff;
  font-size: clamp(1.45rem, 4.6vw, 2.7rem);
  font-weight: 900;
  line-height: 1.14;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45);
}
.headline-panel h2 {
  color: var(--wz-brand-yellow);
  font-size: clamp(1.35rem, 4.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.14;
  text-shadow: 0 4px 0 #6c2100, var(--wz-glow-gold);
}

/* ---- Feature list ------------------------------------------------------ */
.features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.6rem, 1.5vw, 0.85rem);
  width: min(100%, 600px);
  margin: 0 auto clamp(1rem, 2vw, 1.35rem);
}
.feature-row {
  display: grid;
  grid-template-columns: clamp(3.2rem, 10vw, 4.6rem) 1fr;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  min-height: clamp(4rem, 9vw, 4.9rem);
  padding: 0.5rem 0.85rem 0.5rem 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: transparent;
  box-shadow: inset 0 0 30px rgba(84, 49, 255, 0.15), 0 14px 32px rgba(0, 0, 0, 0.28);
}
.feature-row:nth-child(4n + 1) { border-color: rgba(224, 64, 251, 0.55); }
.feature-row:nth-child(4n + 2) { border-color: rgba(43, 231, 255, 0.5); }
.feature-row:nth-child(4n + 3) { border-color: rgba(255, 180, 34, 0.6); }
.feature-row:nth-child(4n + 4) { border-color: rgba(88, 168, 54, 0.55); }

.feature-icon {
  display: grid;
  width: clamp(3rem, 9vw, 4.3rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.2), 0 0 22px rgba(255, 255, 255, 0.08);
}
.feature-row:nth-child(4n + 1) .feature-icon { background: linear-gradient(135deg, #ff33ed, var(--wz-accent-purple)); }
.feature-row:nth-child(4n + 2) .feature-icon { background: linear-gradient(135deg, #23c7ff, #0757de); }
.feature-row:nth-child(4n + 3) .feature-icon { background: linear-gradient(135deg, #ff9f00, #e45700); }
.feature-row:nth-child(4n + 4) .feature-icon { background: linear-gradient(135deg, #63f438, #0f7f10); }

.feature-row p {
  margin: 0;
  color: #f5f0ff;
  font-family: var(--wz-font-medium);
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32);
}
.feature-row strong {
  color: var(--wz-brand-yellow);
}
.feature-row small {
  display: inline-block;
  color: #f5f0ff;
  font-size: 0.78em;
}
.feature-row .green {
  color: var(--wz-chip-green);
}

/* ---- Subscribe box (form) ---------------------------------------------- */
.subscribe-box {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(0.9rem, 3vw, 1.4rem);
  border: 2px solid rgba(180, 86, 255, 0.85);
  border-radius: 1.3rem;
  background: transparent;
  box-shadow: var(--wz-glow-magenta), inset 0 0 30px rgba(84, 49, 255, 0.17);
}
.subscribe-box > label {
  display: block;
  margin-bottom: 0.65rem;
  text-align: center;
  color: #f2ecff;
  font-family: var(--wz-font-medium);
  font-size: clamp(0.95rem, 2.7vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
}

/* phone field — wraps the intlTelInput-enhanced #number input */
.phone-control {
  position: relative;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 0 0.22rem rgba(137, 71, 255, 0.26), inset 0 3px 10px rgba(0, 0, 0, 0.16);
  overflow: visible;
}
.phone-control:focus-within {
  box-shadow: 0 0 0 0.26rem rgba(43, 231, 255, 0.34), var(--wz-glow-cyan);
}
.phone-control .intl-tel-input {
  display: block;
  width: 100%;
}
.phone-control input#number,
.phone-control input[type="tel"] {
  width: 100%;
  min-width: 0;
  height: clamp(3.6rem, 9vw, 4.6rem);
  border: 0;
  margin: 0;
  padding-block: 0;
  padding-right: 1rem;
  /* padding-left is supplied by intlTelInput (.iti-sdc-* rules) to clear the chip */
  color: #2c2a44;
  background: transparent;
  font-family: var(--wz-font-medium);
  font-size: clamp(1.15rem, 3.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: 0;
  border-radius: 0 1rem 1rem 0;
}
.phone-control input::placeholder {
  color: #b6b2cb;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Country chip — restyle intlTelInput's separate dial code as the template's
   purple country segment (flag + +880 + chevron) on the left of the field. */
.phone-control .flag-container {
  padding: 0;
}
.phone-control .intl-tel-input.separate-dial-code .selected-flag,
.phone-control .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background: linear-gradient(180deg, #7434d8, #28115c);
}
.phone-control .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background: linear-gradient(180deg, #8246e0, #341670);
}
.phone-control .selected-flag {
  border-radius: 0.78rem 0 0 0.78rem;
  border-right: 2px solid rgba(255, 255, 255, 0.18);
}
.phone-control .selected-dial-code {
  color: #fff;
  font-family: var(--wz-font-medium);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.3rem);
}
.phone-control .iti-arrow {
  border-top-color: #ece4ff;
}
.phone-control .iti-arrow.up {
  border-bottom-color: #ece4ff;
}
/* comfortable left gap between the country chip and the typed number
   (override intlTelInput's tight per-dial-code padding for each chip width) */
.phone-control .intl-tel-input.separate-dial-code.iti-sdc-2 input { padding-left: 86px !important; }
.phone-control .intl-tel-input.separate-dial-code.iti-sdc-3 input { padding-left: 94px !important; }
.phone-control .intl-tel-input.separate-dial-code.iti-sdc-4 input { padding-left: 102px !important; }
.phone-control .intl-tel-input.separate-dial-code.iti-sdc-5 input { padding-left: 110px !important; }
/* dropdown country list — dark theme to match the card */
.phone-control .country-list {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.7rem;
  background: #14103e;
  color: #fff;
}
.phone-control .country-list .country.highlight,
.phone-control .country-list .country:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.phone-control .country-list .country .dial-code {
  color: var(--wz-text-cyan);
}
.phone-control .country-list .divider {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.custom-block {
  display: block;
  margin-top: 0.55rem;
  color: var(--wz-brand-cyan);
  text-align: center;
  font-weight: 700;
}
.wz-note {
  color: #fff;
  font-family: var(--wz-font-medium);
}
.wz-link {
  color: var(--wz-text-cyan);
  text-decoration: underline;
  font-weight: 600;
}

/* ---- CTA button (gold pill) -------------------------------------------- */
.subscribeButtonContainer {
  display: flex;
  justify-content: center;
  padding: 1rem 0 0.25rem;
}
.btn.subscribeButton,
a.subscribeButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(94%, 520px);
  min-height: clamp(3.6rem, 10vw, 4.9rem);
  margin: 0 auto;
  padding: 0.4rem clamp(1rem, 3vw, 1.6rem);
  border: 0;
  border-radius: var(--wz-radius-pill);
  color: var(--wz-text-on-cta);
  background: var(--wz-gradient-cta);
  box-shadow: 0 0.5rem 0 #c85000, var(--wz-shadow-cta);
  font-family: var(--wz-font-medium);
  font-size: clamp(1.2rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn.subscribeButton:hover,
a.subscribeButton:hover {
  color: var(--wz-text-on-cta);
  background: var(--wz-gradient-cta);
  transform: translateY(-2px);
  box-shadow: 0 0.65rem 0 #c85000, 0 0 34px rgba(255, 210, 0, 0.55);
}
.btn.subscribeButton:active,
a.subscribeButton:active {
  transform: translateY(4px);
  box-shadow: 0 0.22rem 0 #c85000, 0 0 16px rgba(255, 210, 0, 0.5);
}
.btn.subscribeButton span,
a.subscribeButton span {
  font-weight: 700;
  line-height: 1;
}
.btn.subscribeButton strong,
a.subscribeButton strong {
  position: absolute;
  right: clamp(0.4rem, 2vw, 1.05rem);
  bottom: -0.5rem;
  color: #ffef35;
  font-size: clamp(1.9rem, 6.5vw, 3.2rem);
  text-shadow: 0 4px 0 #ff274a, 0 0 14px #ff274a;
}

/* ---- Footer copy / terms ----------------------------------------------- */
.wz-footnote {
  position: relative;
  z-index: 2;
  margin: 1rem auto 0;
  max-width: 600px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--wz-text-caption);
  line-height: 1.5;
}
.wz-footnote a {
  color: var(--wz-text-cyan) !important;
  font-weight: 700;
}

/* ---- Language selector (top-right) ------------------------------------- */
.nav-option {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0.75rem;
}
.nav-option #language {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--wz-radius-sm);
  padding: 0.35rem 0.75rem;
  color: #fff;
  background: rgba(20, 16, 62, 0.85);
  font-family: var(--wz-font-body);
  font-size: 0.9rem;
}
.nav-option #language option {
  color: #1a1145;
  background: #fff;
}

/* ---- Animations -------------------------------------------------------- */
@keyframes wz-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-1rem) rotate(6deg); }
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 640px) {
  .page-shell {
    align-items: start;
    padding: 0.6rem;
  }
  .hero-logo {
    margin-top: 2.6rem;
    padding-top: 5.2rem;
  }
  .brand-title {
    border-width: 0.25rem;
  }
  .brand-title span {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }
  .side-badge,
  .gift,
  .trophy,
  .coin-two {
    display: none;
  }
  .feature-row {
    grid-template-columns: 3.2rem 1fr;
  }
}

@media (max-width: 420px) {
  .promo-card {
    border-radius: 1rem;
    padding-inline: 0.7rem;
  }
  .feature-row {
    gap: 0.65rem;
    padding-right: 0.65rem;
  }
  .feature-icon {
    width: 2.9rem;
    border-radius: 0.8rem;
  }
}

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