:root {
  --color-space: #0A1128;
  --color-midnight: #111C3D;
  --color-teal: #0F766E;
  --color-wine: #6D1A3B;
  --color-indigo: #3E2A5C;
  --color-ember: #FF5C38;
  --color-coral: #FF8A5C;
  --color-gold: #F7C948;
  --color-lead: #F2F5FA;
  --color-fog: #B7C0D0;
  --grid-line: rgba(247, 201, 72, 0.18);

  --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-display: "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", monospace;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --content-w: 1280px;
  --header-h: 78px;
  --gap: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-lead);
  background-color: var(--color-space);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  display: block;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-lead);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--color-ember);
  color: var(--color-lead);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-space);
}

::-webkit-scrollbar-thumb {
  background: var(--color-midnight);
  border: 1px solid var(--grid-line);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1d2b55;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 48px, var(--content-w));
  margin-inline: auto;
}

#main-content {
  min-height: 60vh;
  scroll-margin-top: 100px;
}

.text-display {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.02em;
}

.text-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.text-lead {
  color: var(--color-lead);
}

.text-fog {
  color: var(--color-fog);
}

.text-ember {
  color: var(--color-ember);
}

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

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.section {
  padding-block: clamp(72px, 8vw, 120px);
}

.section--space {
  background-color: var(--color-space);
}

.section--midnight {
  background-color: var(--color-midnight);
}

.section--teal {
  background-color: var(--color-teal);
}

.section--wine {
  background-color: var(--color-wine);
}

.section--indigo {
  background-color: var(--color-indigo);
}

.blueprint-grid {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--align-center {
  align-items: center;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 56px;
}

.page-hero__index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-ember);
  margin: 0 0 16px;
}

.page-hero__index::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
}

.page-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-hero__desc {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 16px;
  color: var(--color-fog);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-ember), var(--color-coral));
  color: var(--color-lead);
  box-shadow: 0 6px 24px rgba(255, 92, 56, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 92, 56, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: rgba(247, 201, 72, 0.12);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-space);
}

.btn--gold:hover {
  background: #ffda63;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 201, 72, 0.35);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-midnight), #0d1832);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-ember), var(--color-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 201, 72, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.card:hover::before {
  opacity: 1;
}

.card--glass {
  background: rgba(242, 245, 250, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 201, 72, 0.3);
  background: rgba(247, 201, 72, 0.12);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag--teal {
  border-color: rgba(15, 118, 110, 0.45);
  background: rgba(15, 118, 110, 0.2);
  color: #64d5cb;
}

.tag--wine {
  border-color: rgba(109, 26, 59, 0.6);
  background: rgba(109, 26, 59, 0.35);
  color: #ef9ab8;
}

.tag--ember {
  border-color: rgba(255, 92, 56, 0.4);
  background: rgba(255, 92, 56, 0.15);
  color: var(--color-coral);
}

.data {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-lead);
  font-variant-numeric: tabular-nums;
}

.data--accent {
  color: var(--color-ember);
}

.chapter {
  margin: 0 0 48px;
}

.chapter__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 200;
  line-height: 1;
  color: var(--color-ember);
  opacity: 0.9;
}

.chapter__rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 12px 0 8px;
  border: none;
  background: linear-gradient(90deg, var(--color-ember), var(--color-gold));
}

.chapter__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.section-head__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 200;
  line-height: 1;
  color: var(--color-ember);
}

.section-head__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 4px 0 0;
}

.section-head__desc {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  color: var(--color-fog);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-fog);
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  font-family: var(--font-mono);
  color: rgba(247, 201, 72, 0.5);
}

.breadcrumb__link {
  color: var(--color-fog);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__link:hover {
  color: var(--color-gold);
}

.breadcrumb__item[aria-current="page"] {
  color: var(--color-lead);
  font-weight: 600;
}

.figure {
  overflow: hidden;
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-lg);
  background: var(--color-midnight);
}

.figure__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-fog);
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 92, 56, 0.12), rgba(62, 42, 92, 0.25));
  background-size: 24px 24px, 24px 24px, 100% 100%;
}

.figure__placeholder::before {
  content: "IMAGE PLACEHOLDER";
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: rgba(247, 201, 72, 0.7);
}

.figure__placeholder::after {
  content: attr(data-caption);
  display: block;
}

.article {
  max-width: 760px;
}

.article > p {
  margin-bottom: 1.5em;
}

.article a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(247, 201, 72, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.article a:hover {
  text-decoration-color: var(--color-gold);
}

blockquote {
  margin: 2rem 0;
  padding: 16px 24px;
  border-left: 2px solid var(--color-gold);
  border-radius: 0 16px 16px 0;
  background: rgba(247, 201, 72, 0.06);
  color: var(--color-fog);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  color: var(--color-space);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2000;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--color-ember), var(--color-coral), var(--color-gold));
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: var(--color-space);
  color: var(--color-gold);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: rgba(247, 201, 72, 0.1);
  box-shadow: 0 12px 32px rgba(247, 201, 72, 0.2);
}

.back-to-top[hidden] {
  display: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1500;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  pointer-events: auto;
  width: min(100%, calc(var(--content-w) - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-pill);
  background: rgba(10, 17, 40, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  pointer-events: none;
}

.site-header[data-scrolled="true"] .site-header__inner {
  background: rgba(10, 17, 40, 0.92);
  border-color: rgba(247, 201, 72, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-ember), var(--color-gold));
  color: var(--color-space);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(247, 201, 72, 0.35), 0 4px 16px rgba(255, 92, 56, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__cn {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--color-lead);
}

.brand__en {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-fog);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 6px;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-fog);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav__link:hover {
  color: var(--color-lead);
  background-color: rgba(242, 245, 250, 0.08);
}

.site-nav__link[aria-current="page"] {
  color: var(--color-lead);
  background: linear-gradient(135deg, var(--color-ember), #ff4d35);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 92, 56, 0.3);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(247, 201, 72, 0.4);
  border-radius: var(--radius-pill);
  background: var(--color-midnight);
  color: var(--color-lead);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(247, 201, 72, 0.15);
}

.nav-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-ember);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 92, 56, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(255, 92, 56, 0);
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--grid-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(242, 245, 250, 0.06);
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-lead);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

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

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

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

.site-footer__main {
  position: relative;
  padding: 72px 0 56px;
  background-color: var(--color-midnight);
  border-top: 1px solid var(--grid-line);
}

.site-footer__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 0.8fr;
  gap: 48px;
}

.site-footer__brand .brand {
  margin-bottom: 18px;
}

.site-footer__slogan {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-lead);
}

.site-footer__note {
  max-width: 42ch;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-fog);
}

.site-footer__mono {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(247, 201, 72, 0.5);
}

.site-footer__col {
  min-width: 0;
}

.site-footer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-footer__title::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-ember), var(--color-gold));
}

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

.site-footer__links li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-fog);
}

.site-footer__links a {
  color: var(--color-fog);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-gold);
}

.site-footer__contact-list .site-footer__links {
  gap: 8px;
}

.site-footer__bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--grid-line);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-fog);
}

@media (min-width: 1081px) {
  .site-footer__legal {
    border-left: 1px solid var(--grid-line);
    padding-left: 24px;
  }
}

@media (max-width: 1080px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .site-header__inner {
    width: min(100%, calc(100vw - 24px));
    padding: 8px 10px 8px 14px;
    border-radius: 20px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .brand__cn {
    font-size: 14px;
  }

  .brand__en {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--grid-line);
    border-radius: var(--radius-lg);
    background: rgba(10, 17, 40, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav__link {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--radius-md);
  }

  .nav-cta {
    margin-top: 6px;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, var(--color-ember), var(--color-coral));
    box-shadow: 0 6px 24px rgba(255, 92, 56, 0.35);
  }

  .nav-cta:hover {
    box-shadow: 0 8px 28px rgba(255, 92, 56, 0.45);
  }

  .page-hero {
    padding: calc(var(--header-h) + 40px) 0 40px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1000px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .container {
    width: min(100% - 32px, var(--content-w));
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
