:root {
  --red: #9E2B25;
  --red-dark: #7A1E1A;
  --red-bright: #C0392B;
  --green: #2D5A27;
  --green-bright: #3E7D36;
  --gray: #8A8D8F;
  --ink: #4A4A4A;
  --paper: #F5E6C8;
  --paper-light: #FAF3E6;
  --black: #1A1A1A;
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 250ms;
  --font-heading: "思源黑体", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", "Liberation Mono", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(0deg, rgba(138, 141, 143, 0.05) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 15% 12%, rgba(158, 43, 37, 0.04) 0, transparent 38%);
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 16px;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

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

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button {
  font: inherit;
  border: 0;
  cursor: pointer;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  color: var(--red);
  -webkit-text-stroke: 1px rgba(122, 30, 26, 0.72);
  text-shadow: 2px 2px 0 rgba(122, 30, 26, 0.12);
}

h1 {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

::selection {
  background: var(--red);
  color: var(--paper-light);
}

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-main {
  position: relative;
  background: rgba(250, 243, 230, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 141, 143, 0.3);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--red);
  border: 2px solid var(--red-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--paper-light);
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 var(--red-dark);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-nav {
  display: block;
  margin-inline: auto;
}

.nav-pill-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.nav-pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid transparent;
  transition:
    background-color var(--speed) var(--ease),
    color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease),
    transform var(--speed) var(--ease);
}

.nav-pill-link:hover {
  background: rgba(158, 43, 37, 0.08);
  color: var(--red);
  border-color: rgba(158, 43, 37, 0.3);
}

.nav-pill-link[aria-current="page"] {
  background: var(--red);
  border-color: var(--red-dark);
  color: var(--paper-light);
  box-shadow: 0 3px 0 var(--red-dark);
}

.nav-pill-link.is-live {
  border-color: rgba(192, 57, 43, 0.45);
}

.nav-pill-link[aria-current="page"].is-live {
  border-color: var(--red-dark);
}

.nav-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  margin-left: 0.4rem;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55);
  animation: pulse-dot 1.8s infinite;
}

.nav-pill-link[aria-current="page"] .nav-live-dot {
  background: var(--paper-light);
  box-shadow: none;
  animation: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.edition-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 90, 39, 0.1);
  border: 1px dashed rgba(45, 90, 39, 0.45);
  color: var(--green);
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.edition-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--red-dark);
  background: var(--red);
  color: var(--paper-light);
  align-items: center;
  justify-content: center;
  transition: background-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.nav-toggle:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-toggle-bars {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition: background-color var(--speed) var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--speed) var(--ease), top var(--speed) var(--ease);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--red-dark);
  color: var(--paper-light);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(26, 26, 26, 0.4);
  transition: top var(--speed) var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-bright), var(--red));
  z-index: 5;
}

.site-footer {
  background: var(--black);
  color: rgba(250, 243, 230, 0.8);
  border-top: 6px solid var(--red);
  margin-top: 5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 3rem 2.5rem;
}

.footer-brand .brand-mark {
  background: var(--red);
  border-color: #000;
}

.footer-brand .brand-name {
  color: var(--paper-light);
}

.footer-tagline {
  color: var(--red-bright);
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  border-left: 3px solid var(--red);
  padding-left: 0.6rem;
}

.footer-trust {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250, 243, 230, 0.6);
  margin-top: 1rem;
}

.footer-heading {
  color: var(--paper-light);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(138, 141, 143, 0.3);
  padding-bottom: 0.5rem;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(250, 243, 230, 0.75);
  text-decoration: none;
  transition: color var(--speed) var(--ease), padding-left var(--speed) var(--ease);
}

.footer-links a:hover {
  color: var(--paper-light);
  padding-left: 4px;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(250, 243, 230, 0.7);
  margin-top: 1rem;
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 243, 230, 0.15);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(250, 243, 230, 0.5);
  font-size: 0.8rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper-light);
  border: 2px solid var(--red-dark);
  box-shadow: 0 4px 0 var(--red-dark);
  font-family: var(--font-data);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.section-block {
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .section-block {
    padding-block: 5rem;
  }
}

.section--dark {
  background: var(--black);
  color: rgba(250, 243, 230, 0.82);
  border-block: 4px solid var(--red-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--paper-light);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.section--red {
  background: rgba(158, 43, 37, 0.08);
  border-block: 1px solid rgba(158, 43, 37, 0.18);
}

.section--green {
  background: rgba(45, 90, 39, 0.07);
  border-block: 1px solid rgba(45, 90, 39, 0.15);
}

.section--green h2,
.section--green h3 {
  color: var(--green);
  -webkit-text-stroke: 1px rgba(45, 90, 39, 0.3);
  text-shadow: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0 0.5rem;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--gray);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--red);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.hero-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  padding-block: 3rem 4.5rem;
}

.hero-preview__content {
  min-width: 0;
}

.hero-preview__media {
  min-width: 0;
}

.with-rail {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.timeline-rail {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(138, 141, 143, 0.4);
  margin: 1rem 0 0 0.25rem;
  padding-left: 1.2rem;
}

.timeline-rail__item {
  position: relative;
  padding: 0.25rem 0 1.4rem;
}

.timeline-rail__item::before {
  content: "";
  position: absolute;
  left: -1.62rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper-light);
  border: 2px solid var(--red);
}

.timeline-rail__item.is-current::before {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(192, 57, 43, 0.18);
}

.timeline-rail em {
  display: block;
  font-style: normal;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--gray);
}

.timeline-rail strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--red);
}

.chapter-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.chapter-toc a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 141, 143, 0.4);
  background: rgba(250, 243, 230, 0.7);
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 0.8rem;
  text-decoration: none;
  transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.chapter-toc a:hover {
  border-color: var(--red);
  color: var(--red);
}

.chapter-toc a.is-current {
  background: var(--red);
  border-color: var(--red-dark);
  color: var(--paper-light);
  box-shadow: 0 3px 0 var(--red-dark);
}

.panel-card {
  background: var(--paper-light);
  border: 1px solid rgba(138, 141, 143, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 0 rgba(26, 26, 26, 0.04);
}

.panel-card--accent {
  border-top: 4px solid var(--red);
}

.panel-card--tilt {
  transform: rotate(-0.7deg);
}

.panel-card--tilt:nth-child(even) {
  transform: rotate(0.7deg);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.data-grid__item {
  grid-column: span 12;
}

@media (min-width: 640px) {
  .data-grid__item {
    grid-column: span 6;
  }
}

@media (min-width: 960px) {
  .data-grid__item {
    grid-column: span 4;
  }
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.25rem;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 1rem;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--paper-light);
  border-radius: 1rem;
  overflow: hidden;
  font-family: var(--font-data);
  font-size: 0.875rem;
}

.data-table caption {
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: left;
  padding: 0.85rem 1rem;
  color: var(--red);
  background: rgba(158, 43, 37, 0.07);
  border-bottom: 1px solid rgba(158, 43, 37, 0.2);
}

.data-table th {
  text-align: left;
  padding: 0.8rem 1rem;
  background: var(--red);
  color: var(--paper-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.data-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(138, 141, 143, 0.18);
  color: var(--ink);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(250, 243, 230, 0.5);
}

.data-table .is-up {
  color: var(--green-bright);
  font-weight: 700;
}

.data-table .is-down {
  color: var(--red-bright);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(138, 141, 143, 0.14);
  color: var(--ink);
  border: 1px solid rgba(138, 141, 143, 0.3);
}

.badge--live {
  background: var(--red);
  border-color: var(--red-dark);
  color: var(--paper-light);
}

.badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.8s infinite;
}

.badge--green {
  background: rgba(45, 90, 39, 0.12);
  color: var(--green);
  border-color: rgba(45, 90, 39, 0.3);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--paper-light);
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.9rem;
}

.super-number {
  font-family: var(--font-data);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  font-weight: 700;
  color: var(--red-bright);
  text-shadow: 2px 2px 0 rgba(122, 30, 26, 0.25);
}

.note-block {
  border-left: 4px solid var(--green);
  background: rgba(45, 90, 39, 0.07);
  padding: 1rem 1.25rem;
  border-radius: 0 1rem 1rem 0;
  font-size: 0.875rem;
  color: var(--ink);
}

.note-block--red {
  border-left-color: var(--red);
  background: rgba(158, 43, 37, 0.07);
}

.footnote-line {
  font-size: 0.8rem;
  color: var(--gray);
  border-top: 1px dashed var(--gray);
  padding-top: 0.5rem;
  margin-top: 1.5rem;
}

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

.article-prose p {
  margin-bottom: 1rem;
}

.article-prose h2,
.article-prose h3,
.article-prose h4 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(158, 43, 37, 0.12), rgba(45, 90, 39, 0.08));
  border: 1px solid rgba(138, 141, 143, 0.25);
  min-height: 220px;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.media-frame--motion img {
  filter: blur(1px) saturate(0.8) contrast(1.08);
  transform: scale(1.03);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(26, 26, 26, 0.06) 0 2px, transparent 2px 6px),
    linear-gradient(120deg, rgba(158, 43, 37, 0.14), rgba(45, 90, 39, 0.06));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.media-frame__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 40%, rgba(192, 57, 43, 0.25) 40% 41%, transparent 41%),
    radial-gradient(circle at 78% 18%, rgba(158, 43, 37, 0.3) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(250, 243, 230, 0.18) 0 1px, transparent 1px 28px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.media-frame--ratio {
  aspect-ratio: 4 / 3;
}

.media-frame--ratio-wide {
  aspect-ratio: 16 / 9;
}

.countdown-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  font-family: var(--font-data);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--red-bright);
  font-weight: 700;
  background: var(--paper-light);
  border: 1px solid rgba(192, 57, 43, 0.4);
  padding: 0.6rem 0.8rem;
  border-radius: 0.75rem;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(192, 57, 43, 0);
  }
}

@media (max-width: 959.98px) {
  .header-inner {
    gap: 0.75rem;
  }

  .edition-tag {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    margin: 0;
    background: var(--black);
    border: 1px solid rgba(158, 43, 37, 0.5);
    border-radius: 1.5rem;
    padding: 0.75rem;
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.35);
    z-index: 110;
  }

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

  .nav-pill-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
  }

  .nav-pill-link {
    justify-content: space-between;
    color: var(--paper-light);
    padding: 0.85rem 1.1rem;
    border-radius: 1rem;
    border-color: transparent;
  }

  .nav-pill-link:hover {
    background: rgba(158, 43, 37, 0.2);
    color: var(--paper-light);
    border-color: transparent;
  }

  .nav-pill-link[aria-current="page"] {
    background: var(--red);
    color: var(--paper-light);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem 2rem;
  }

  .with-rail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-rail {
    position: static;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .hero-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 2rem 3rem;
  }
}

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

  .brand-mark {
    transform: none;
  }

  .panel-card--tilt,
  .panel-card--tilt:nth-child(even) {
    transform: none;
  }

  .media-frame--motion img {
    transform: none;
    filter: none;
  }

  .nav-live-dot,
  .badge--live::before {
    animation: none;
  }
}
