/* ================================================================
   博亚竞界 · 全场档案更新库
   共享样式 /assets/site.css
   ================================================================ */

/* ---------- 1. Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 16px);
}
body {
  min-height: 100vh;
  background-color: var(--deep-space);
  background-image: var(--scanlines);
  color: var(--star-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
::selection {
  background: var(--neon-green);
  color: var(--deep-space);
}

/* ---------- 2. Design Tokens ---------- */
:root {
  --deep-space: #0A1128;
  --panel-blue: #121B3C;
  --neon-green: #00FF99;
  --signal-orange: #FF6A00;
  --star-white: #EAF0FF;
  --nebula-gray: #9DA9C9;
  --orbit-line: #26335E;
  --radar-cyan: #33E3FF;
  --magma-grad: linear-gradient(135deg, #FF6A00 0%, #FFB300 100%);

  --font-display: "Archivo Black", "Noto Sans SC", "Alibaba PuHuiTi", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "Roboto Mono", "Consolas", monospace;

  --topbar-h: 36px;
  --header-h: 72px;
  --header-total: calc(var(--topbar-h) + var(--header-h));
  --container-w: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 18px;
  --border-w: 2px;
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.28);
  --shadow-hard: 4px 4px 0 0 rgba(0, 255, 153, 0.15);
  --scanlines: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* ---------- 3. 基础排版 ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--star-white);
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
p {
  line-height: 1.7;
}
strong {
  color: var(--star-white);
  font-weight: 600;
}

/* ---------- 4. 通用工具 ---------- */
.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;
}
.container {
  width: min(100% - 2 * var(--gutter), var(--container-w));
  margin-inline: auto;
}
.page-body {
  padding-top: calc(var(--header-total) + var(--space-3));
  padding-bottom: var(--space-7);
}
#main-content {
  scroll-margin-top: calc(var(--header-total) + 10px);
}
#main-content:focus {
  outline: none;
}
::selection {
  background: var(--neon-green);
  color: var(--deep-space);
}

/* ---------- 5. 焦点可见 ---------- */
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 6. 滚动条 ---------- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--deep-space);
}
::-webkit-scrollbar-thumb {
  background: var(--orbit-line);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--radar-cyan);
}

/* ---------- 7. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn:active {
  transform: translateY(2px);
}
.btn-primary {
  background: var(--magma-grad);
  color: var(--deep-space);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(255, 106, 0, 0.42);
}
.btn-ghost {
  background: transparent;
  color: var(--neon-green);
  border-color: var(--neon-green);
}
.btn-ghost:hover {
  background: var(--neon-green);
  color: var(--deep-space);
}
.btn-ghost--orange {
  color: var(--signal-orange);
  border-color: var(--signal-orange);
}
.btn-ghost--orange:hover {
  background: var(--signal-orange);
  color: var(--deep-space);
}
.btn-compact {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}

/* ---------- 8. 头部 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 17, 40, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--orbit-line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}
.header-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.6);
  z-index: 5;
  transition: width 0.08s linear;
}
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 300;
  transform: translateY(-320%);
  background: var(--deep-space);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: var(--radius-s);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
.header-topbar {
  background: rgba(10, 17, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--orbit-line);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-h);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--nebula-gray);
}
.header-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
}
.header-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--signal-orange);
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--neon-green);
  font-weight: 600;
}
.header-main {
  position: relative;
}
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-glyph {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--neon-green);
  color: var(--deep-space);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--shadow-hard);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--star-white);
}
.brand-sub {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--nebula-gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav {
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 2rem);
}
.nav-list a {
  display: block;
  position: relative;
  padding: 0.5rem 0.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--star-white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-list a:hover {
  color: var(--neon-green);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-list a[aria-current="page"] {
  color: var(--neon-green);
}
.nav-mobile-action {
  display: none;
}
.btn-header-action {
  flex: 0 0 auto;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 2px solid var(--orbit-line);
  background: var(--panel-blue);
  border-radius: var(--radius-s);
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon-green);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 9. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: var(--space-7);
  border-top: 2px solid var(--orbit-line);
  background: linear-gradient(180deg, var(--panel-blue) 0%, var(--deep-space) 65%);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(154, 169, 201, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.footer-panel {
  padding: var(--space-4);
  border-bottom: 1px solid var(--orbit-line);
}
.footer-panel:last-child {
  border-bottom: none;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 0.75rem;
}
.footer-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--signal-orange);
}
.footer-brand-title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
}
.footer-brand-mark {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 255, 153, 0.12);
  border: 1px solid rgba(0, 255, 153, 0.35);
  border-radius: var(--radius-s);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footer-about {
  margin-top: 1rem;
  max-width: 44ch;
  color: var(--nebula-gray);
  font-size: 0.925rem;
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--star-white);
}
.footer-heading::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--signal-orange);
  flex: 0 0 auto;
}
.footer-links li + li {
  margin-top: 0.65rem;
}
.footer-links a {
  display: inline-block;
  color: var(--nebula-gray);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--radar-cyan);
  transform: translateX(4px);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
}
.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--orbit-line);
}
.footer-contact-list li:last-child {
  border-bottom: none;
}
.contact-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--neon-green);
  text-transform: uppercase;
}
.contact-value {
  color: var(--star-white);
  font-size: 0.95rem;
  word-break: break-all;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid var(--orbit-line);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-block: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--nebula-gray);
}
.footer-note {
  color: var(--nebula-gray);
}
.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- 10. 返回顶部 ---------- */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(10, 17, 40, 0.88);
  border: 2px solid var(--signal-orange);
  border-radius: var(--radius-s);
  color: var(--signal-orange);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease,
    background-color 0.2s ease, color 0.2s ease;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--signal-orange);
  color: var(--deep-space);
}
.back-top-arrow {
  font-size: 1.3rem;
  line-height: 1;
}

/* ---------- 11. 面包屑 ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--nebula-gray);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs li + li::before {
  content: "/";
  color: var(--orbit-line);
}
.breadcrumbs a {
  color: var(--radar-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: var(--neon-green);
}
.breadcrumbs [aria-current="page"] {
  color: var(--neon-green);
  font-weight: 600;
}

/* ---------- 12. 网格 / Bento 面板 ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}
.bento-cell {
  position: relative;
  display: block;
  grid-column: 1 / -1;
  padding: var(--space-4);
  background: var(--panel-blue);
  border: 2px solid var(--orbit-line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.bento-cell:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 24px rgba(0, 255, 153, 0.08), var(--shadow-soft);
  transform: translateY(-2px);
}
@media (min-width: 700px) {
  .bento-cell--span-3 { grid-column: span 3; }
  .bento-cell--span-4 { grid-column: span 4; }
  .bento-cell--span-6 { grid-column: span 6; }
  .bento-cell--span-8 { grid-column: span 8; }
}

/* ---------- 13. 章节标题 ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: var(--space-5);
}
.section-head .section-title {
  margin: 0;
}
.section-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neon-green);
  letter-spacing: 0.12em;
  padding-bottom: 0.4rem;
  white-space: nowrap;
}

/* ---------- 14. 数据标签/数值 ---------- */
.data-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--nebula-gray);
}
.data-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--neon-green);
}
.data-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 255, 153, 0.1);
  border: 1px solid rgba(0, 255, 153, 0.4);
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--neon-green);
}
.data-tag--orange {
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.4);
  color: var(--signal-orange);
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.7);
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* ---------- 15. 首屏与正文 ---------- */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-lead {
  max-width: 52ch;
  font-size: 1.15rem;
  color: var(--nebula-gray);
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--star-white);
}
.prose {
  max-width: 68ch;
  color: var(--nebula-gray);
}
.prose p + p {
  margin-top: 1rem;
}
.prose a {
  color: var(--radar-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose strong {
  color: var(--star-white);
}

/* ---------- 16. 图片容器 ---------- */
.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--panel-blue);
  border: 2px solid var(--orbit-line);
  border-radius: var(--radius-m);
}
.media-frame--16-9 { aspect-ratio: 16 / 9; }
.media-frame--4-3 { aspect-ratio: 4 / 3; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--16-9 img,
.media-frame--4-3 img,
.media-frame--square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame--placeholder {
  display: grid;
  place-items: center;
  border-style: dashed;
  background: repeating-linear-gradient(-45deg, rgba(38, 51, 94, 0.35) 0 2px, transparent 2px 12px);
}
.media-frame--placeholder::after {
  content: attr(data-media-label);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--nebula-gray);
  text-transform: uppercase;
}

/* ---------- 17. 滚动显现 ---------- */
[data-observe] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-observe].in-view {
  opacity: 1;
  transform: none;
}

/* ---------- 18. 响应式 ---------- */
@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }
  .btn-header-action {
    display: none;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 17, 40, 0.98);
    border-bottom: 2px solid var(--orbit-line);
    box-shadow: var(--shadow-soft);
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .site-nav[data-open] {
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list a {
    padding: 0.9rem 0.4rem;
    border-bottom: 1px solid var(--orbit-line);
    font-size: 1.05rem;
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  .nav-mobile-action {
    display: flex;
    width: 100%;
    margin-top: 1.35rem;
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .footer-brand { grid-column: span 4; }
  .footer-index { grid-column: span 3; }
  .footer-legal { grid-column: span 2; }
  .footer-contact { grid-column: span 3; }
  .footer-panel {
    border-bottom: none;
    border-right: 1px solid var(--orbit-line);
  }
  .footer-contact {
    border-right: none;
  }
}
@media (max-width: 640px) {
  :root {
    --topbar-h: 32px;
    --header-h: 60px;
  }
  .brand-glyph {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .header-mark {
    display: none;
  }
  .header-topbar-inner {
    justify-content: center;
  }
  .back-top {
    width: 44px;
    height: 44px;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ---------- 19. 动效可访问性 ---------- */
@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;
  }
  [data-observe] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .status-dot {
    animation: none;
  }
}
