/* Hallmark · macrostructure: Sales Stack (9-module) · tone: luxury-urgent · anchor hue: imperial red + gold
 * redesign pass 1 — color system + typography weight contrast to amplify purchase desire
 * Pre-emit critique: P4 H4 E4 S4 R4 V3
 */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }
body { overflow-x: clip; }

/* ============ DESIGN TOKENS ============ */
:root {
  /* Imperial red / wealth gold — warm anchor, no pure extremes */
  --red:        #B3122B;   /* auspicious deep red */
  --red-deep:   #7A0C1E;   /* darker red for depth */
  --red-glow:   rgba(179, 18, 43, 0.55);
  --gold:       #C9A227;   /* wealth gold (richer than v1) */
  --gold-bright:#FFD86B;   /* highlight gold */
  --gold-deep:  #8F6E1C;   /* dark gold for text */
  --gold-glow:  rgba(201, 162, 39, 0.45);

  /* warm-tinted neutrals — never pure white/grey */
  --paper:      #FFF9EF;   /* warm cream paper */
  --paper-2:    #FFF4DF;   /* warmer cream */
  --card:       #FFFDF7;   /* tinted card surface */
  --ink:        #2A1913;   /* warm near-black text */
  --ink-2:      #5A4330;   /* secondary warm brown */
  --muted:      #8A6B4F;   /* muted warm brown */
  --rule:       #F0DDB4;   /* warm gold-tinted border */

  /* typography — serif display vs thin sans body (extreme weight contrast) */
  --font-display: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-body:    "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ BASE ============ */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, strong { font-family: var(--font-display); }

.gold {
  color: var(--gold-deep);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 216, 107, 0.4);
}

/* ---------- 1. HERO ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(160deg, rgba(30, 8, 10, 0.9) 0%, rgba(74, 10, 23, 0.82) 45%, rgba(122, 12, 30, 0.88) 100%),
    url('/hero-bg.webp') center 20% / cover no-repeat;
  background-color: #2A0A12;
  color: #FFF9EF;
  text-align: center;
  padding: 60px 20px 48px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 216, 107, 0.08) 50%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  background: rgba(201, 162, 39, 0.08);
}
.hero-title {
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.hero-title .gold {
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(255, 216, 107, 0.45);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 27px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 20px 0 8px;
  line-height: 1.5;
}
.hero-cta-line {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  color: #FFE9B0;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.hero-tag {
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 233, 176, 0.7);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), filter 0.18s var(--ease-out);
}
.btn:active { transform: scale(0.96); }
.btn:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}
.btn-hero {
  margin-top: 26px;
  padding: 16px 48px;
  font-size: 19px;
  color: #4A0A17;
  background: linear-gradient(180deg, #FFE9A8 0%, #F5C84A 55%, #D9A52E 100%);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.55), inset 0 1px 0 rgba(255,255,255,0.6);
  animation: cta-pulse 1.9s infinite;
}
.btn-hero:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 38px rgba(201, 162, 39, 0.75), inset 0 1px 0 rgba(255,255,255,0.6);
  filter: brightness(1.05);
}
/* 原地弹跳吸引注意力：静止时脉冲光晕+轻微弹跳；悬停时暂停弹跳、放大浮起 */
.btn-bounce {
  animation: cta-pulse 1.9s infinite, bounce 1.8s ease-in-out infinite;
  will-change: transform;
}
.btn-bounce:hover {
  animation: none;
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.08);
  box-shadow: 0 14px 44px rgba(201, 162, 39, 0.85), inset 0 1px 0 rgba(255,255,255,0.65);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-3px); }
}
.btn-section {
  margin-top: 28px;
  padding: 14px 38px;
  font-size: 16.5px;
  color: #4A0A17;
  background: linear-gradient(180deg, #FFE9A8 0%, #F5C84A 55%, #D9A52E 100%);
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.4), inset 0 1px 0 rgba(255,255,255,0.55);
}
.btn-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.6), inset 0 1px 0 rgba(255,255,255,0.55);
}
.btn-on-dark { color: #4A0A17; }
.btn-gold {
  margin-top: 30px;
  padding: 16px 42px;
  font-size: 18px;
  color: #4A0A17;
  background: linear-gradient(180deg, #FFE9A8 0%, #F5C84A 55%, #D9A52E 100%);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5), inset 0 1px 0 rgba(255,255,255,0.6);
}
.section-cta { text-align: center; }
.section-cta .btn-section { margin-top: 30px; }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(201, 162, 39, 0.55), inset 0 1px 0 rgba(255,255,255,0.6); }
  50% { box-shadow: 0 8px 42px rgba(201, 162, 39, 0.9), inset 0 1px 0 rgba(255,255,255,0.6); }
}

/* ---------- 2. TRUST BAR ---------- */
.trust-bar {
  display: flex;
  background: var(--card);
  border-bottom: 1px solid var(--rule);
}
.trust-item {
  flex: 1;
  text-align: center;
  padding: 16px 6px;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.02em;
}
.trust-item span { font-size: 12px; font-weight: 300; color: var(--muted); }

/* ---------- 3. GLOBAL ---------- */
.global {
  text-align: center;
  padding: 48px 20px;
  background: var(--paper);
}
.global h2 {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.global h2 strong {
  font-size: 1.08em;
  font-weight: 900;
  color: var(--red);
}
.global p {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.9;
}
.flag-strip {
  margin-top: 18px;
  font-size: 30px;
  letter-spacing: 8px;
}

/* ---------- 4. OFFER / COUNTDOWN ---------- */
.offer {
  background:
    radial-gradient(900px 300px at 50% -20%, rgba(255, 216, 107, 0.16), transparent 60%),
    linear-gradient(120deg, #7A0C1E, #B3122B);
  color: #FFF9EF;
  text-align: center;
  padding: 38px 20px 34px;
  position: relative;
  overflow: hidden;
}
.offer-banner {
  font-family: var(--font-display);
  font-size: clamp(19px, 5vw, 24px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.offer-banner strong {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(255, 216, 107, 0.4);
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.cd-box {
  background: #4A0A17;
  border: 2px solid var(--gold);
  border-radius: 14px;
  min-width: 82px;
  padding: 12px 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3), inset 0 0 24px rgba(201, 162, 39, 0.08);
}
.cd-box span {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(255, 216, 107, 0.5);
}
.cd-box small { font-size: 12px; font-weight: 300; color: rgba(255, 233, 176, 0.85); }
.cd-sep { font-size: 30px; font-weight: 900; color: var(--gold-bright); animation: cd-blink 1s infinite; }
.offer-note {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 300;
  color: #FFD9D9;
  letter-spacing: 0.04em;
}
@keyframes cd-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- 5. BENEFITS ---------- */
.benefits { padding: 50px 20px; background: var(--card); }
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(23px, 5.5vw, 30px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin-top: 8px;
}
.benefit-list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}
.benefit {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  padding: 20px 18px;
  position: relative;
  box-shadow: 0 2px 10px rgba(138, 107, 79, 0.06);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(138, 107, 79, 0.14);
}
.benefit-num {
  position: absolute;
  right: 16px;
  top: 10px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.3);
}
.benefit h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--red-deep);
  letter-spacing: 0.02em;
}
.benefit p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---------- 6. VIDEOS ---------- */
.videos {
  padding: 50px 20px;
  background: linear-gradient(160deg, #1E080A, #3A0913);
  color: #FFF9EF;
}
.videos .section-title { color: #FFF9EF; }
.videos .section-sub { color: rgba(255, 233, 176, 0.55); }
.video-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.video-card {
  aspect-ratio: 16/9;
  border-radius: 16px;
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(201, 162, 39, 0.1), transparent 70%),
    #2A0A12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.video-play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F5C84A, #C9A227);
  color: #4A0A17;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding-left: 5px;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}
.video-card p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.video-card small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 233, 176, 0.5);
  margin-top: 5px;
}

/* ---------- 7. TESTIMONIALS ---------- */
.testimonials {
  padding: 50px 20px;
  background: var(--paper);
  text-align: center;
}
.testimonial-grid {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 20px 18px;
  position: relative;
  box-shadow: 0 2px 10px rgba(138, 107, 79, 0.06);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
}
.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #FFF9EF;
  font-family: var(--font-display);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 3px 10px var(--red-glow);
}
.t-head strong {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.t-head small {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--gold-deep);
  letter-spacing: 0.03em;
}
.testimonial p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
}

/* ---------- 8. CREDENTIALS ---------- */
.credentials {
  background:
    radial-gradient(900px 300px at 50% 120%, rgba(255, 216, 107, 0.14), transparent 60%),
    linear-gradient(160deg, #3A0913, #7A0C1E);
  color: #FFF9EF;
  text-align: center;
  padding: 50px 20px;
}
.credentials h2 {
  font-family: var(--font-display);
  font-size: clamp(21px, 5vw, 27px);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.credentials h2 strong {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(255, 216, 107, 0.4);
}
.credentials p {
  margin-top: 10px;
  font-weight: 300;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.cred-badges {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255, 249, 239, 0.08);
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 118px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.5;
}
.badge small {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 233, 176, 0.75);
  margin-top: 3px;
}

/* ---------- 8.5 FAQ ---------- */
.faq {
  padding: 56px 20px 60px;
  background: var(--paper);
}
.faq-list {
  max-width: 640px;
  margin: 30px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 4px 18px;
  box-shadow: 0 2px 10px rgba(138, 107, 79, 0.05);
  transition: box-shadow 0.2s var(--ease-out);
}
.faq-item:hover { box-shadow: 0 6px 18px rgba(138, 107, 79, 0.12); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-deep);
  transition: transform 0.2s var(--ease-out);
}
.faq-item[open] summary::after { content: "－"; }
.faq-item p {
  padding: 0 0 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---------- 9. REGISTRATION ---------- */
.registration {
  padding: 50px 20px 64px;
  background: var(--card);
  text-align: center;
}
.registration h2 {
  font-family: var(--font-display);
  font-size: clamp(21px, 5vw, 26px);
  font-weight: 900;
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.reg-sub { margin-top: 10px; font-size: 14px; font-weight: 300; color: var(--muted); }
.reg-form {
  max-width: 430px;
  margin: 30px auto 0;
  text-align: left;
  display: grid;
  gap: 16px;
}
.reg-form label {
  display: grid;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
}
.phone-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.phone-row select {
  flex: 0 0 46%;
  min-width: 0;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B5A46' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 30px;
}
.phone-row input {
  flex: 1;
  min-width: 0;
}
.reg-form input,
.reg-form select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  font-size: 15.5px;
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.reg-form input:focus,
.reg-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.reg-form .full { grid-column: 1 / -1; }
.btn-submit {
  margin-top: 8px;
  border: none;
  font-size: 18.5px;
  padding: 17px 22px;
  animation: cta-pulse 1.9s infinite;
  cursor: pointer;
}
.btn-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.privacy { font-size: 12px; font-weight: 300; color: var(--muted); text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- LUXURY POLISH — generous rhythm + elevation ---------- */
.benefits, .videos, .testimonials, .credentials, .registration {
  position: relative;
}
.benefit, .testimonial, .badge {
  border-radius: 18px;
}
.benefit {
  background:
    linear-gradient(180deg, rgba(255, 216, 107, 0.05), transparent 40%),
    var(--paper);
}
.testimonial {
  background:
    linear-gradient(180deg, rgba(255, 216, 107, 0.04), transparent 35%),
    var(--card);
}
.benefit, .testimonial, .faq-item {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 18px rgba(58, 25, 19, 0.06);
}
.benefit:hover, .testimonial:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 12px 30px rgba(58, 25, 19, 0.12);
}
.reg-form input, .reg-form select {
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 16px;
}
.reg-form label { font-size: 14px; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 249, 239, 0.55);
  text-align: center;
  padding: 28px 16px;
  font-size: 12px;
  font-weight: 300;
}
.footer-links a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 400;
}
.footer-links a:hover { text-decoration: underline; }

/* ---------- MOBILE CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99;
  text-align: center;
  background: linear-gradient(180deg, #FFE9A8 0%, #F5C84A 55%, #D9A52E 100%);
  color: #4A0A17;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17.5px;
  letter-spacing: 0.03em;
  padding: 14px 0;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.6);
}
.mobile-cta:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%) translateY(20px);
  background: var(--red-deep);
  color: #FFF9EF;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: 88vw;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- DESKTOP ---------- */
@media (min-width: 768px) {
  .hero { padding: 88px 24px 64px; }
  .hero-sub { font-size: 30px; }
  .benefit-list { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: none !important; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
