@font-face {
  font-family: "JingNanMaiYuan";
  src: url("./font/荆南麦圆体.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --rose-700: #be123c;
  --rose-600: #e11d48;
  --rose-400: #fb7185;
  --blue-600: #2563eb;
  --blue-300: #93c5fd;
  --yellow-300: #fde047;
  --green-400: #4ade80;
  --ink: #3f1232;
  --muted-ink: #6b4760;
  --paper: #fff7fb;
  --surface: #ffffff;
  --surface-rose: #fff1f2;
  --border: #fecdd3;
  --shadow: 0 18px 0 rgba(190, 18, 60, 0.16), 0 26px 46px rgba(136, 19, 55, 0.18);
  --shadow-blue: 0 16px 0 rgba(37, 99, 235, 0.14), 0 26px 42px rgba(37, 99, 235, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  color-scheme: light;
  font-family: "JingNanMaiYuan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 224, 71, 0.55), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(147, 197, 253, 0.58), transparent 26%),
    linear-gradient(135deg, #fff7fb 0%, #fff1f2 48%, #eef7ff 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 14px;
  color: #fff;
  background: var(--rose-700);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px clamp(16px, 4vw, 36px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(136, 19, 55, 0.12);
}

.brand,
.nav-links,
.hero-actions,
.hero-notes,
.word-actions,
.ticker-track,
.control-pill {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 1.18rem;
}

.brand-mark,
.card-icon,
.play-button {
  display: inline-grid;
  place-items: center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted-ink);
  font-weight: 800;
  transition: transform 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: #fff1f2;
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--rose-600);
  box-shadow: 0 7px 0 rgba(190, 18, 60, 0.22);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--rose-600);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100dvh - 100px);
  padding-top: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-700);
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.6rem);
  line-height: 0.94;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  color: var(--muted-ink);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero-lede {
  max-width: 620px;
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-600), var(--blue-600));
  box-shadow: 0 10px 0 rgba(190, 18, 60, 0.2), 0 18px 34px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 0 rgba(37, 99, 235, 0.1), 0 18px 34px rgba(136, 19, 55, 0.1);
}

.hero-download-copy {
  margin: 12px 0 22px;
  color: var(--rose-700);
  font-weight: 900;
}

.hero-notes {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  padding: 10px 14px;
  border: 1px solid rgba(254, 205, 211, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted-ink);
}

.hero-notes strong {
  color: var(--rose-700);
}

.hero-stage {
  position: relative;
  min-height: 580px;
}

.app-carousel {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 10px;
}

.app-slides {
  position: relative;
  aspect-ratio: 645 / 1331;
  overflow: hidden;
  border-radius: 42px;
  background: transparent;
}

.app-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-slide {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(190, 18, 60, 0.24);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: var(--rose-600);
}

.clay-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.clay-orbit-one {
  right: 8%;
  top: 4%;
  width: 118px;
  height: 118px;
  background: var(--yellow-300);
  box-shadow: 0 16px 0 rgba(234, 179, 8, 0.2);
}

.clay-orbit-two {
  left: 2%;
  bottom: 12%;
  width: 88px;
  height: 88px;
  background: var(--green-400);
  box-shadow: 0 14px 0 rgba(22, 163, 74, 0.17);
}

.phone-mockup {
  position: relative;
  width: min(390px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding: 24px;
  border: 12px solid #33132b;
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.88)),
    radial-gradient(circle at 60% 0, rgba(253, 224, 71, 0.4), transparent 30%);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.phone-top span:first-child {
  width: 82px;
  height: 8px;
  border-radius: 999px;
  background: #4b253f;
}

.phone-top span:last-child {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4b253f;
}

.app-card,
.word-card,
.listen-panel,
.mini-screen,
.clay-card,
.stats-card,
.notice-card {
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.progress-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
}

.progress-card small,
.listen-panel span,
.answer-row span,
.stats-card span {
  display: block;
  color: var(--muted-ink);
  font-weight: 700;
}

.progress-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.8rem;
}

.mini-ring {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-weight: 900;
  background: conic-gradient(var(--blue-600) 72%, #dbeafe 0);
}

.word-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(160deg, #fff 0%, #ffe4e6 100%);
}

.unit-chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 900;
}

.word-card h2 {
  margin: 0 0 4px;
  color: var(--rose-700);
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-size: 3.15rem;
}

.word-actions {
  gap: 10px;
  margin-top: 22px;
}

.word-actions button {
  min-height: 46px;
  flex: 1;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--rose-600);
  font-weight: 900;
  cursor: pointer;
}

.word-actions button + button {
  color: var(--ink);
  background: var(--yellow-300);
}

.listen-panel {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border-radius: 24px;
}

.play-button {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 20px;
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 8px 0 rgba(37, 99, 235, 0.18);
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.52);
}

.ticker-track {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ticker span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--rose-700);
  background: #fff;
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.library-grid,
.feature-grid,
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.clay-card {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-xl);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.clay-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}

.library-card.large {
  grid-row: span 2;
  background: linear-gradient(150deg, #fff 0%, #ffe4e6 52%, #dbeafe 100%);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 22px;
  color: #fff;
}

.card-icon.rose {
  background: var(--rose-600);
  box-shadow: 0 9px 0 rgba(190, 18, 60, 0.18);
}

.card-icon.blue {
  background: var(--blue-600);
  box-shadow: 0 9px 0 rgba(37, 99, 235, 0.16);
}

.card-icon.yellow {
  color: var(--ink);
  background: var(--yellow-300);
  box-shadow: 0 9px 0 rgba(202, 138, 4, 0.16);
}

.book-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.book-stack span {
  display: block;
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  background: var(--rose-600);
  box-shadow: 0 7px 0 rgba(190, 18, 60, 0.2);
  font-weight: 900;
}

.book-stack span:nth-child(2) {
  background: var(--blue-600);
}

.book-stack span:nth-child(3) {
  color: var(--ink);
  background: var(--yellow-300);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 18px;
  color: var(--muted-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 0 rgba(136, 19, 55, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: var(--rose-600);
}

.feature-showcase {
  position: relative;
  min-height: 360px;
  margin-bottom: 24px;
}

.feature-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
  min-height: 360px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(219, 234, 254, 0.72));
  box-shadow: var(--shadow-blue);
}

.feature-panel.active {
  display: grid;
}

.panel-kicker {
  color: var(--blue-600);
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-weight: 900;
}

.mini-screen {
  min-height: 260px;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
}

.mini-screen h4 {
  margin: 8px 0 2px;
  color: var(--rose-700);
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-size: 3.2rem;
}

.answer-row {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding: 16px;
  border-radius: 20px;
  background: #fff1f2;
}

.photo-screen {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  background: repeating-linear-gradient(180deg, #fff 0 34px, #eff6ff 35px 36px);
}

.photo-screen span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 14px;
  background: #dcfce7;
  font-weight: 900;
}

.photo-screen .wrong {
  background: #fee2e2;
  color: #991b1b;
}

.scan-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 44%;
  height: 4px;
  border-radius: 999px;
  background: var(--blue-600);
  opacity: 0.75;
}

.timeline-screen {
  display: grid;
  gap: 14px;
  align-content: center;
}

.timeline-screen div {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 18px;
  background: #fff1f2;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
}

.clay-card.compact {
  min-height: 220px;
}

.clay-card.compact > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--rose-600);
}

.dictation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: center;
}

.dictation-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ffe4e6, #dbeafe);
  box-shadow: var(--shadow);
}

.control-pill {
  min-height: 86px;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.control-pill svg {
  color: var(--blue-600);
}

.stats-card {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
}

.stats-card strong {
  display: block;
  margin: 4px 0;
  color: var(--rose-700);
  font-family: "JingNanMaiYuan", system-ui, sans-serif;
  font-size: 3.2rem;
}

.notice-card {
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
}

.notice-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--rose-600);
}

.notice-card.good {
  background: linear-gradient(150deg, #fff, #dcfce7);
}

.support-guide {
  padding-top: 68px;
}

.guide-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 24px;
}

.guide-card {
  min-height: 210px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-blue);
}

.guide-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--blue-600);
}

.guide-card h3 {
  margin-top: 0;
}

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

.guide-table-wrap {
  overflow-x: auto;
  margin-top: 64px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.guide-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(254, 205, 211, 0.78);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: #fff1f2;
  font-weight: 900;
}

.guide-table td:first-child {
  color: var(--rose-700);
  font-weight: 900;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
  color: var(--muted-ink);
  text-align: center;
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
}

.footer-meta {
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(63, 18, 50, 0.42);
  backdrop-filter: blur(12px);
}

.qr-modal[hidden] {
  display: none;
}

.qr-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 34px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(63, 18, 50, 0.28);
  text-align: center;
}

.qr-dialog h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 7vw, 3rem);
}

.qr-dialog img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 18px;
}

.qr-dialog p:last-child {
  margin: 0;
  color: var(--muted-ink);
}

.qr-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--ink);
  background: #fff1f2;
  cursor: pointer;
}

:focus-visible {
  outline: 4px solid rgba(37, 99, 235, 0.42);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(136, 19, 55, 0.16);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero,
  .dictation,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
  }

  .app-carousel {
    width: min(330px, 88vw);
  }

  .library-grid,
  .feature-grid,
	  .notice-grid,
	  .guide-highlights {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .library-card.large {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 12px;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 58px 0;
  }

  .nav-shell {
    min-height: 58px;
    padding-left: 12px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .site-footer {
    text-align: center;
  }

  .footer-brand,
  .footer-meta {
    justify-items: center;
  }

  .btn {
    width: 100%;
  }

  .phone-mockup {
    min-height: 520px;
    padding: 18px;
    border-width: 9px;
    border-radius: 40px;
  }

  .app-carousel {
    width: min(300px, 84vw);
  }

  .app-slides {
    border-radius: 38px;
  }

  .word-card h2,
  .mini-screen h4 {
    font-size: 2.45rem;
  }

	  .library-grid,
	  .feature-grid,
	  .notice-grid,
	  .guide-highlights,
	  .dictation-board {
	    grid-template-columns: 1fr;
	  }

  .stats-card {
    grid-column: auto;
  }

  .feature-panel {
    padding: 20px;
  }
}

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