:root {
  --bg: #17120f;
  --bg-soft: #241914;
  --panel: #fff8ec;
  --panel-2: #f6ebda;
  --text: #221813;
  --muted: #735f52;
  --line: rgba(73, 48, 34, 0.18);
  --red: #c93b2f;
  --red-dark: #8e241f;
  --gold: #f0b94b;
  --green: #27745b;
  --ink: #12100f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 12, 8, 0.2);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 185, 75, 0.16), transparent 30%),
    linear-gradient(180deg, #1b130f 0%, #2b1a12 26%, #fff8ec 26%, #fff8ec 100%);
  line-height: 1.72;
  letter-spacing: 0;
}

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

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

:focus-visible {
  outline: 3px solid rgba(240, 185, 75, 0.82);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.container {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 18, 15, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  width: min(100% - 36px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #211611;
  border-radius: 8px;
  border: 2px solid rgba(240, 185, 75, 0.68);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(240, 185, 75, 0.16);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: inset 0 -2px 0 rgba(240, 185, 75, 0.72);
}

.nav-links a.nav-download {
  gap: 7px;
  margin-left: 8px;
  color: #1b0f0b;
  background: linear-gradient(180deg, #ffd779, var(--gold));
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(240, 185, 75, 0.24);
}

.nav-links a.nav-download svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-links a.nav-download:hover,
.nav-links a.nav-download.active {
  color: #1b0f0b;
  background: linear-gradient(180deg, #ffe29a, #f0b94b);
  box-shadow: 0 10px 24px rgba(240, 185, 75, 0.36);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 70px 0 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.96) 0%, rgba(23, 18, 15, 0.82) 46%, rgba(23, 18, 15, 0.64) 100%),
    url("img/tu5-clean.jpg") 88% center / auto 122% no-repeat;
  filter: saturate(0.95);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #fff8ec);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.text-mark,
.text-key {
  font-weight: 800;
  letter-spacing: 0;
}

.text-mark {
  color: var(--red-dark);
  text-shadow: none;
}

.text-key {
  color: #5a1d17;
  background: linear-gradient(180deg, transparent 58%, rgba(240, 185, 75, 0.44) 58%);
  padding: 0 2px;
  border-radius: 3px;
}

.hero .text-mark,
.intro-section .text-mark,
.intro-section .text-key {
  color: #ffe0a0;
  text-shadow: 0 1px 10px rgba(240, 185, 75, 0.2);
}

.intro-section .text-key {
  background: linear-gradient(180deg, transparent 58%, rgba(240, 185, 75, 0.22) 58%);
}

h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: 0;
  color: #ffd879;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-primary {
  color: #1b0f0b;
  background: linear-gradient(180deg, #ffd779, var(--gold));
  box-shadow: 0 12px 28px rgba(240, 185, 75, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(240, 185, 75, 0.42);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(240, 185, 75, 0.72);
  background: rgba(240, 185, 75, 0.14);
}

.btn.small {
  min-height: 44px;
  padding: 10px 15px;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}

.hero-stats li {
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-stats li:hover {
  transform: translateY(-3px);
  background: rgba(240, 185, 75, 0.14);
  border-color: rgba(240, 185, 75, 0.32);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-media,
.image-card,
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-media:hover,
.image-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(22, 12, 8, 0.28);
}

.hero-media img,
.image-card img,
.gallery-item img {
  transition: transform 0.36s ease, filter 0.36s ease;
}

.hero-media:hover img,
.image-card:hover img,
.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.hero-media img {
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #211611;
}

.cover-frame,
.screenshot-frame {
  position: relative;
}

.cover-frame::before,
.screenshot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cover-frame::before {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.72) 0%, rgba(23, 18, 15, 0.22) 28%, transparent 52%),
    linear-gradient(180deg, transparent 0%, transparent 74%, rgba(23, 18, 15, 0.72) 100%);
}

.screenshot-frame::before {
  background: linear-gradient(180deg, transparent 0%, transparent 72%, rgba(23, 18, 15, 0.74) 100%);
}

.cover-frame figcaption,
.screenshot-frame figcaption {
  position: relative;
  z-index: 2;
}

figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 248, 236, 0.94);
}

.section {
  padding: 82px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
}

.section-copy h2,
.section-head h2,
.faq-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
  color: #8e241f;
}

.section-copy h2::after,
.section-head h2::after,
.faq-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.section-copy p,
.section-head p,
.faq-copy p {
  color: var(--muted);
}

.section-copy .section-kicker,
.section-head .section-kicker,
.faq-copy .section-kicker {
  color: var(--gold);
}

.intro-section .section-copy h2 {
  color: #ffd879;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.intro-section .section-copy p:not(.section-kicker) {
  color: rgba(255, 248, 236, 0.84);
}

.intro-section .section-kicker {
  color: #ffd879;
}

.section-head {
  max-width: 780px;
  margin: 0 0 34px;
}

.section-head.compact {
  max-width: 860px;
}

.image-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: #211611;
}

.image-crop-bottom img {
  object-position: center;
}

.image-crop-top img {
  object-position: center center;
}

.feature-band {
  background:
    linear-gradient(180deg, rgba(36, 25, 20, 0.98), rgba(48, 29, 19, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
  color: var(--white);
}

.feature-band .section-head h2,
.feature-band .section-head p {
  color: var(--white);
}

.feature-band .section-head h2 {
  color: #ffd879;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
}

.feature-band .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.guide-card,
.guide-columns,
.timeline-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.94);
}

.feature-card {
  min-height: 218px;
  padding: 22px;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 185, 75, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 75, 0.52);
  background: #fffdf7;
  box-shadow: 0 18px 38px rgba(15, 9, 6, 0.2);
}

.feature-card:hover::after {
  opacity: 1;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe2a0, var(--gold));
  color: #281208;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card:hover .icon-badge {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 10px 20px rgba(240, 185, 75, 0.28);
}

.feature-card h3,
.guide-card h3,
.timeline-item h3,
.guide-columns h3 {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}

.feature-card p,
.guide-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.tactics-section {
  background: var(--panel-2);
}

.strategy-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.strategy-list div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.strategy-list div:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.86);
  border-left-color: var(--gold);
}

.strategy-list span {
  color: var(--muted);
}

.guide-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guide-card {
  padding: 22px;
  box-shadow: 0 12px 30px rgba(83, 50, 27, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 59, 47, 0.28);
  box-shadow: 0 18px 40px rgba(83, 50, 27, 0.16);
}

.guide-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff8ec, #f3dfbf);
}

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

.guide-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  background: #fffdf7;
}

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

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--green);
  transition: transform 0.2s ease, background 0.2s ease;
}

.check-list li:hover::before {
  transform: rotate(45deg) scale(1.08);
  background: var(--gold);
}

.gallery-section {
  background: #fffdf7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 22px 24px 22px 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 0 4px 4px 0;
}

.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 185, 75, 0.46);
  box-shadow: 0 16px 34px rgba(83, 50, 27, 0.14);
}

.timeline-item time {
  display: inline-block;
  color: var(--red-dark);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 8px;
}

.faq-section {
  background: var(--panel-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fffdf7;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(240, 185, 75, 0.5);
  box-shadow: 0 12px 28px rgba(83, 50, 27, 0.12);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-list summary:hover {
  color: var(--red-dark);
  background: rgba(240, 185, 75, 0.1);
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.friend-links {
  padding: 46px 0 42px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(48, 29, 19, 0.98), rgba(23, 18, 15, 0.98)),
    repeating-linear-gradient(135deg, rgba(240, 185, 75, 0.06) 0 1px, transparent 1px 22px);
  border-top: 1px solid rgba(240, 185, 75, 0.18);
}

.friend-links h2 {
  margin: 0 0 22px;
  color: #ffd879;
  font-size: 28px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border-radius: 999px;
  color: #1b0f0b;
  background: #fff8ec;
  border: 1px solid rgba(240, 185, 75, 0.42);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.friend-link-list a:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #ffd879, var(--gold));
  box-shadow: 0 14px 30px rgba(240, 185, 75, 0.26);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--bg);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}

.footer-grid p {
  margin: 0;
  max-width: 620px;
}

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

.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(23, 18, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .nav-links a.nav-download {
    margin-left: 0;
    margin-top: 6px;
    min-height: 42px;
  }

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

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: 50px;
  }

  .section-copy h2,
  .section-head h2,
  .faq-copy h2 {
    font-size: 31px;
  }

  .feature-grid,
  .guide-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .guide-columns {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .gallery-item.tall img {
    min-height: 0;
    aspect-ratio: auto;
  }
}

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

  .brand span {
    font-size: 18px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-stats li {
    width: 100%;
  }

  .cover-frame::before {
    background: linear-gradient(180deg, transparent 0%, transparent 82%, rgba(23, 18, 15, 0.55) 100%);
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 38px;
  }

  .section-copy h2,
  .section-head h2,
  .faq-copy h2 {
    font-size: 26px;
  }

  .feature-grid,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-card.large {
    grid-column: auto;
  }

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

  .footer-grid {
    align-items: flex-start;
  }

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

  .friend-links {
    padding: 38px 0 34px;
  }

  .friend-links h2 {
    font-size: 24px;
  }

  .friend-link-list {
    justify-content: flex-start;
  }

  .friend-link-list a {
    width: 100%;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
