/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: #121212;
  color: #F0F0F0;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(139, 0, 0, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(183, 28, 28, 0.14), transparent 50%),
    linear-gradient(180deg, #121212 0%, #0D0D0D 100%);
}

/* ===== Variables ===== */
:root {
  --brand-red: #D50000;
  --night-black: #121212;
  --milano-gold: #FFD700;
  --signal-red: #FF5252;
  --deep-red: #8B0000;
  --card-gray: #1E1E1E;
  --pure-white: #FFFFFF;
  --soft-white: #F0F0F0;
  --line-gold: #FFC107;
  --muted-red: #B71C1C;
  --bg: #121212;
  --bg-card: #1E1E1E;
  --text: #FFFFFF;
  --text-soft: #F0F0F0;
  --accent: #D50000;
  --gold: #FFD700;
  --font-heading: 'PingFang SC', 'Helvetica Neue', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --header-top-height: 32px;
  --header-masthead-height: 84px;
  --header-nav-height: 50px;
  --header-height: calc(var(--header-top-height) + var(--header-masthead-height) + var(--header-nav-height));
  --container-width: 1240px;
  --pad-x: 24px;
}

@media (max-width: 768px) {
  :root {
    --header-top-height: 0px;
    --header-masthead-height: 62px;
    --header-nav-height: 48px;
    --header-height: calc(var(--header-top-height) + var(--header-masthead-height) + var(--header-nav-height));
    --pad-x: 16px;
  }
}

/* ===== Main content ===== */
#main-content {
  display: block;
  padding-top: var(--header-height);
}

/* ===== Utility ===== */
.sr-only {
  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: -80px;
  left: 16px;
  z-index: 300;
  padding: 10px 22px;
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: top 0.25s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
}
.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #F57F17 100%);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}
.btn-gold:hover {
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
  transform: translateY(-1px);
}
.btn-red {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.btn-red:hover {
  background: var(--signal-red);
  border-color: var(--signal-red);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--soft-white);
}
.btn-outline:hover {
  border-color: var(--line-gold);
  color: var(--line-gold);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ===== Reading Progress ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--milano-gold) 100%);
  z-index: 400;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(18, 18, 18, 0.68);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 32px 32px;
}
.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.97);
  border-bottom-color: rgba(255, 215, 0, 0.18);
}

/* --- top strip --- */
.header-top {
  height: var(--header-top-height);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.header-stamp {
  font-weight: 700;
  letter-spacing: 0.24em;
}
.header-coord {
  color: rgba(255, 215, 0, 0.5);
  letter-spacing: 0.22em;
}
.header-season {
  color: rgba(255, 255, 255, 0.4);
}

/* --- masthead --- */
.header-masthead {
  min-height: var(--header-masthead-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.brand-lock {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  vertical-align: middle;
}
.brand-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 50px;
  background: linear-gradient(160deg, var(--brand-red) 0%, var(--deep-red) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.brand-flag::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 18px;
  height: 2px;
  background: var(--milano-gold);
}

.brand-heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.brand-cn {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.14em;
  line-height: 1.1;
  color: var(--pure-white);
}
.brand-en {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--signal-red);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.4); }
  50% { opacity: 0.55; box-shadow: 0 0 0 4px rgba(255, 82, 82, 0); }
}

/* --- nav --- */
.header-nav {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 18, 18, 0.55);
}
.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--pure-white);
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.nav-toggle:hover {
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.05);
}
.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
  pointer-events: none;
}
.nav-toggle-icon i {
  display: block;
  height: 2px;
  background: var(--pure-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
  display: block;
  padding: 14px 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-item::before {
  content: attr(data-index);
  display: inline-block;
  margin-right: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--milano-gold);
  vertical-align: super;
  letter-spacing: 0.02em;
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--milano-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-item:hover {
  color: var(--pure-white);
}
.nav-item:hover::after {
  transform: scaleX(1);
}
.nav-item[aria-current="page"] {
  color: var(--milano-gold);
}
.nav-item[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ===== Footer ===== */
.site-footer {
  background: #0D0D0D;
  margin-top: 80px;
  position: relative;
}
.footer-rule {
  height: 3px;
  background:
    linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 90px, var(--milano-gold) 90px, var(--milano-gold) 170px, rgba(255, 255, 255, 0.06) 170px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 48px;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand-lock {
  gap: 10px;
}
.footer-brand-lock .brand-cn {
  font-size: 1.35rem;
}
.footer-brand-lock .brand-en {
  font-size: 0.54rem;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  max-width: 360px;
}
.footer-claim {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 360px;
}

.footer-section {
  min-width: 0;
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--pure-white);
  margin: 0 0 16px;
}
.footer-heading::after {
  content: "";
  flex: 0 0 26px;
  height: 1px;
  background: var(--line-gold);
}
.footer-heading-index {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--milano-gold);
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.6;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
  color: var(--milano-gold);
  padding-left: 4px;
}
.footer-links a:focus-visible {
  outline: 2px solid var(--milano-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.footer-contact-label {
  display: block;
  color: var(--milano-gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-contact-value {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  word-break: break-all;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #0A0A0A;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px 24px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.02em;
}

/* ===== Page Header ===== */
.page-header {
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--milano-gold));
}
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  color: var(--pure-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 680px;
  line-height: 1.7;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--milano-gold);
}
.breadcrumb li + li::before {
  content: "/";
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.22);
}
.breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
  position: relative;
}
.section-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.035);
  position: absolute;
  top: 24px;
  left: 0;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.03em;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  color: var(--pure-white);
  margin: 0 0 8px;
  position: relative;
  padding-left: 16px;
  line-height: 1.25;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-red), var(--milano-gold));
}
.section-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  padding-left: 16px;
  letter-spacing: 0.04em;
}

/* ===== Card ===== */
.card {
  background: linear-gradient(160deg, rgba(30, 30, 30, 0.92), rgba(24, 24, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 26px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 215, 0, 0.06);
}
.card-label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  text-transform: uppercase;
  border-bottom-right-radius: 4px;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--pure-white);
  margin-bottom: 8px;
}
.card-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ===== Grids ===== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.25), transparent);
  border: none;
  margin: 32px 0;
}

/* ===== Image Frame ===== */
.image-frame {
  position: relative;
  background: var(--card-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.image-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.image-frame-portrait::before {
  padding-bottom: 125%;
}
.image-frame-square::before {
  padding-bottom: 100%;
}
.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  color: var(--pure-white);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ===== TOC ===== */
.toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.toc-link {
  display: block;
  padding: 9px 18px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.toc-link:hover {
  color: var(--pure-white);
  border-left-color: var(--signal-red);
}
.toc-link.is-active {
  color: var(--milano-gold);
  border-left-color: var(--milano-gold);
  background: rgba(255, 215, 0, 0.03);
}

/* ===== Reveal ===== */
.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-enabled [data-reveal][data-revealed] {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  .header-masthead {
    flex-wrap: nowrap;
  }
  .header-status {
    display: none;
  }
  .brand-cn {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
  .brand-en {
    font-size: 0.52rem;
    letter-spacing: 0.28em;
  }
  .brand-flag {
    width: 36px;
    height: 42px;
    font-size: 1.05rem;
  }
  .header-meta {
    gap: 10px;
  }

  .header-nav-inner {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(14, 14, 14, 0.98);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
    padding: 8px 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  .header-nav[data-open] .nav-list {
    display: flex;
  }
  .nav-item {
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .section {
    padding: 48px 0;
  }
}

/* ===== Focus ===== */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.55);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reading-progress {
    transition: none;
  }
  .live-dot {
    animation: none;
  }
}
