:root {
  --brand: #1a3a34;
  --gold: #c9a87c;
  --red: #8b3a2a;
  --ivory: #f5f0e6;
  --grey: #6c7a75;
  --moss: #4d6b5a;
  --terra: #b5653d;
  --cream: #eaddcb;
  --font-display: "宋体", "SimSun", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --header-h: 76px;
  --radius: 2px;
  --shadow-sm: 0 2px 10px rgba(26, 58, 52, 0.08);
  --shadow-md: 0 12px 30px rgba(26, 58, 52, 0.15);
  --shadow-gold: 0 6px 24px rgba(201, 168, 124, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--brand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--red) 45%, transparent 95%);
  z-index: 950;
  pointer-events: none;
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--brand);
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1.25rem;
  z-index: 2000;
  background: var(--gold);
  color: var(--brand);
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(26, 58, 52, 0.88) 0%, rgba(26, 58, 52, 0.35) 70%, rgba(26, 58, 52, 0) 100%);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header[data-scrolled] {
  background: rgba(26, 58, 52, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}

@media (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  z-index: 10;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-seal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 124, 0.06);
}

.brand-seal::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 168, 124, 0.45);
}

.brand-seal::after {
  content: "尊";
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--ivory);
  line-height: 1.1;
}

.brand-sub {
  margin-top: 0.1rem;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.header-nav {
  justify-self: center;
}

@media (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  gap: 0.25rem;
}

.header-nav a {
  position: relative;
  display: block;
  padding: 0.6rem 0.8rem;
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.header-nav a:hover {
  color: var(--gold);
}

.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.header-fav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201, 168, 124, 0.55);
  border-radius: 1.5rem;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header-fav:hover {
  background: rgba(201, 168, 124, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 124, 0.2);
}

.fav-icon {
  font-size: 0.85rem;
  color: var(--gold);
  line-height: 1;
}

.fav-text {
  font-size: 0.8rem;
}

@media (max-width: 420px) {
  .fav-text {
    display: none;
  }

  .header-fav {
    padding: 0.45rem 0.7rem;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 230, 0.28);
  border-radius: 50%;
  transition: border-color 0.3s, background-color 0.3s;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 124, 0.08);
}

.toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.25s, background-color 0.3s;
}

.nav-toggle:hover .toggle-line {
  background: var(--gold);
}

.nav-toggle.is-active .toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}

.nav-toggle.is-active .toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  background: var(--brand);
  border-left: 1px solid rgba(201, 168, 124, 0.35);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
}

.side-nav[data-open] {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.side-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.45;
}

.side-nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-top: 2px solid rgba(201, 168, 124, 0.2);
  border-right: 2px solid rgba(201, 168, 124, 0.2);
  pointer-events: none;
}

.side-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.25rem 2rem 2rem;
  overflow-y: auto;
}

.side-nav-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 124, 0.25);
  margin-bottom: 1.5rem;
}

.side-nav-titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.side-nav-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--moss);
  text-transform: uppercase;
}

.side-nav-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0.12em;
}

.side-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ivory);
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}

.side-nav-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  color: var(--gold);
}

.side-nav-menu {
  flex: 1;
}

.side-nav-menu ol {
  display: flex;
  flex-direction: column;
}

.side-nav-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0.75rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
  color: rgba(245, 240, 230, 0.88);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: background-color 0.3s, color 0.3s, padding-left 0.35s var(--ease);
}

.side-nav-menu a:hover {
  background: rgba(201, 168, 124, 0.08);
  color: var(--gold);
  padding-left: 1.2rem;
}

.side-nav-menu a[aria-current="page"] {
  color: var(--gold);
}

.side-nav-menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gold);
}

.nav-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
}

.nav-label {
  flex: 1;
}

.nav-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}

.side-nav-menu a:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.side-nav-foot {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.5rem 1.25rem 1rem;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  overflow: hidden;
}

.side-nav-foot::after {
  content: "尊";
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201, 168, 124, 0.08);
  line-height: 1;
  pointer-events: none;
}

.side-nav-help,
.side-nav-mail {
  position: relative;
  z-index: 1;
}

.side-nav-help {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.55);
}

.side-nav-mail {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s;
}

.side-nav-mail:hover {
  color: var(--cream);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(9, 20, 17, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.nav-overlay[data-open] {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.site-footer {
  position: relative;
  background: var(--brand);
  color: var(--ivory);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--red), var(--moss), transparent);
  opacity: 0.7;
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 124, 0.08);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--ivory);
  line-height: 1.1;
}

.footer-logo-sub {
  margin-top: 0.1rem;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.footer-trust {
  margin-top: 1.25rem;
  color: rgba(245, 240, 230, 0.7);
  font-size: 0.9rem;
  max-width: 42ch;
  line-height: 1.75;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: rgba(245, 240, 230, 0.75);
  font-size: 0.92rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.footer-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin: 0 0 1.25rem;
}

.footer-contact li {
  color: rgba(245, 240, 230, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.55);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(245, 240, 230, 0.65);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-icp {
  margin-left: auto;
  letter-spacing: 0.05em;
  color: rgba(201, 168, 124, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

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

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--brand);
}

.btn-dark {
  background: var(--brand);
  color: var(--ivory);
}

.btn-dark:hover {
  background: #0f2b26;
  color: var(--gold);
}

.btn-terra {
  background: var(--terra);
  color: var(--ivory);
}

.btn-terra:hover {
  background: #93421f;
  color: var(--ivory);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  border-radius: 0.15rem;
  background: rgba(201, 168, 124, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 124, 0.4);
}

.badge-red {
  background: rgba(139, 58, 42, 0.1);
  color: var(--red);
  border-color: rgba(139, 58, 42, 0.4);
}

.badge-green {
  background: rgba(77, 107, 90, 0.15);
  color: var(--moss);
  border-color: rgba(77, 107, 90, 0.4);
}

.panel {
  background: var(--cream);
  border: 1px solid rgba(26, 58, 52, 0.1);
  border-radius: 0.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.panel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.panel-highlight {
  border-top: 3px solid var(--gold);
}

.panel-dark {
  background: var(--brand);
  color: var(--ivory);
}

.panel-dark:hover {
  box-shadow: 0 14px 34px rgba(26, 58, 52, 0.3);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--moss) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(109, 122, 117, 0.3);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.25);
}

.timeline-meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--brand);
}

.timeline-copy {
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
}

.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2.5rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--grey);
  opacity: 0.6;
}

.breadcrumb a {
  transition: color 0.3s;
}

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

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

.prose {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 1.25;
  margin: 2rem 0 0.75rem;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201, 168, 124, 0.4);
}

.prose p {
  margin: 0 0 1.25rem;
}

.prose a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.prose a:hover {
  color: var(--red);
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose blockquote {
  border-left: 3px solid var(--gold);
  margin: 0 0 1.25rem;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 168, 124, 0.08);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-tight {
  padding: 2rem 0;
}

.section-alt {
  background: var(--cream);
}

.page-head {
  padding: calc(var(--header-h) + 3.5rem) 0 2.5rem;
  background: var(--brand);
  color: var(--ivory);
  margin-bottom: 3rem;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0.75rem 0 0.25rem;
  letter-spacing: 0.05em;
}

.page-head .page-sub {
  color: rgba(245, 240, 230, 0.6);
  font-size: 1rem;
  max-width: 60ch;
}

.page-head .breadcrumb,
.page-head .breadcrumb a {
  color: rgba(245, 240, 230, 0.7);
}

.page-head .breadcrumb li + li::before {
  color: rgba(245, 240, 230, 0.4);
}

.page-head .breadcrumb a:hover {
  color: var(--gold);
}

.page-head .breadcrumb [aria-current="page"] {
  color: var(--gold);
}

.figure {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(26, 58, 52, 0.08);
  aspect-ratio: 4 / 3;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.figure:hover img {
  transform: scale(1.04);
}

.figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.5rem 0.8rem;
  background: linear-gradient(to top, rgba(26, 58, 52, 0.88), transparent);
  color: var(--ivory);
  font-size: 0.85rem;
  margin: 0;
}

.figure-frame {
  border: 1px solid rgba(201, 168, 124, 0.5);
}

.figure-wide {
  aspect-ratio: 16 / 7;
}

.figure-portrait {
  aspect-ratio: 3 / 4;
}

.figure-square {
  aspect-ratio: 1;
}

.figure-auto {
  aspect-ratio: auto;
}

@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;
  }
}
