/* ==========================================================
   博业体育APP — 全站共享样式
   File: /assets/site.css
   设计语言：目录型内容地图 / 悬浮胶囊导航 / 切角面板 /
   速度线 / 展览标签 / 说明牌 / 编号章节体系
   ========================================================== */

/* ---------- 1. CSS 变量 ---------- */
:root {
  --color-bg: #0a1428;
  --color-bg-deep: #071020;
  --color-bg-panel: #10213d;
  --color-bg-card: #1b2b4b;
  --color-accent: #00e676;
  --color-accent-soft: #69ffb4;
  --color-warn: #ff4d00;
  --color-warn-soft: #ff7a45;
  --color-text: #f5f7fa;
  --color-text-dim: #a0aab8;
  --color-border: #2e3d5c;

  --font-head: "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --content-max: 1240px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --shadow-float: 0 12px 44px rgba(0, 0, 0, 0.5);
}

/* ---------- 2. Reset 与基础 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(0, 230, 118, 0.07), transparent 60%),
    radial-gradient(800px 420px at 5% 0%, rgba(255, 77, 0, 0.05), transparent 55%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-soft);
}

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

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.3;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ---------- 3. 可访问性与焦点 ---------- */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  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: 12px 20px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--color-bg);
}

/* ---------- 4. 常用布局 ---------- */
.content-shell {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.site-main {
  display: block;
  min-height: 55vh;
  padding-bottom: 24px;
}

.section {
  position: relative;
  padding-block: clamp(48px, 8vw, 88px);
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 36px;
}

.section-index {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.section-title {
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: -0.02em;
}

.section-desc {
  width: 100%;
  max-width: 68ch;
  margin: 0;
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.8;
}

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

.grid-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- 5. 头部（悬浮胶囊浮岛） ---------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  margin-top: 14px;
  padding: 0 clamp(16px, 3vw, 32px);
}

.header-shell {
  max-width: 1320px;
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 20px;
  background: linear-gradient(180deg, rgba(16, 33, 61, 0.92), rgba(10, 20, 40, 0.9));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(46, 61, 92, 0.85);
  border-radius: 999px;
  box-shadow:
    var(--shadow-float),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 0;
  height: 3px;
  pointer-events: none;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--color-warn), var(--color-accent));
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* ---------- 6. 品牌 ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.35);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 16px;
  height: 3px;
  background: var(--color-bg);
  border-radius: 2px;
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  background: var(--color-warn);
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}

.brand:hover .brand-name {
  color: var(--color-accent);
}

.brand-slogan {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-text-dim);
  white-space: nowrap;
}

/* ---------- 7. 导航 ---------- */
.site-nav {
  margin-inline: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list a {
  display: block;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-text-dim);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-list a:hover {
  color: var(--color-text);
  background: rgba(0, 230, 118, 0.1);
}

.nav-list a[aria-current="page"] {
  color: var(--color-bg);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.07);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  white-space: nowrap;
}

.brand-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.9);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ---------- 8. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-soft);
  color: var(--color-bg);
}

.btn-warn {
  background: var(--color-warn);
  color: #ffffff;
}

.btn-warn:hover {
  background: var(--color-warn-soft);
  color: var(--color-bg);
}

.btn-ghost {
  background: rgba(245, 247, 250, 0.04);
  border-color: var(--color-border);
  color: var(--color-text);
}

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

.header-cta {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
}

/* ---------- 9. 移动导航按钮 ---------- */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--color-accent);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) 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(-7px) rotate(-45deg);
}

/* ---------- 10. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(48px, 8vw, 96px);
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 40%, var(--color-warn) 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-brand {
  align-items: flex-start;
}

.footer-brand-name {
  font-size: 22px;
  margin: 0 0 4px;
}

.footer-slogan {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.footer-about {
  max-width: 34em;
  margin: 0;
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.8;
}

.footer-title {
  align-self: flex-start;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-nav-list,
.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--color-text-dim);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.footer-nav-list a::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--color-accent);
}

.footer-nav-list a:hover {
  color: var(--color-text);
  transform: translateX(2px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-accent);
}

.footer-support {
  margin: 18px 0 0;
  color: var(--color-text-dim);
  font-size: 12px;
  line-height: 1.6;
}

.footer-support strong {
  color: var(--color-warn-soft);
  font-weight: 700;
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--color-border);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  color: var(--color-text-dim);
  font-size: 13px;
}

.footer-trust {
  flex-basis: 100%;
  max-width: 82ch;
  margin: 0 0 6px;
  line-height: 1.7;
}

.footer-copy,
.footer-icp {
  margin: 0;
}

.footer-icp {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ---------- 11. 面包屑 ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--color-text-dim);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs-sep {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  opacity: 0.6;
}

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

/* ---------- 12. 信息面板与目录 ---------- */
.panel-cut {
  position: relative;
  padding: clamp(20px, 4vw, 40px);
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.data-card {
  position: relative;
  padding: 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px 14px 14px 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.data-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: background 0.2s ease;
}

.data-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--color-warn);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.data-card:hover::after {
  background: var(--color-warn);
}

.data-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.data-card p {
  margin: 0;
  color: var(--color-text-dim);
  font-size: 14px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.toc-grid a {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 20px;
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: 4px 14px 14px 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.toc-grid a:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-card);
  transform: translateY(-3px);
}

.toc-index {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  background: rgba(0, 230, 118, 0.08);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
}

.toc-name {
  align-self: end;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
}

.toc-desc {
  align-self: start;
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.5;
}

/* ---------- 13. 标签、说明牌与指标 ---------- */
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

.tag-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dim);
}

.chip[data-variant="accent"] {
  background: rgba(0, 230, 118, 0.1);
  border-color: rgba(0, 230, 118, 0.4);
  color: var(--color-accent);
}

.chip[data-variant="warn"] {
  background: rgba(255, 77, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.4);
  color: var(--color-warn-soft);
}

.desc-plate {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 20px;
  margin: 0;
  padding: 20px 24px;
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-warn);
  border-radius: 4px 12px 12px 4px;
}

.desc-plate dt {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.desc-plate dd {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
}

.stat-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

.stat-value {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
}

a.stat-value:hover {
  color: var(--color-warn);
}

/* ---------- 14. 图片容器 ---------- */
.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px 4px 12px 12px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame::after {
  content: attr(data-caption);
  display: none;
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 4px 10px;
  background: rgba(10, 20, 40, 0.82);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  pointer-events: none;
}

.image-frame[data-caption]::after {
  display: block;
}

.image-frame[data-ratio="wide"] {
  aspect-ratio: 16 / 9;
}

.image-frame[data-ratio="square"] {
  aspect-ratio: 1 / 1;
}

.image-frame[data-ratio="tall"] {
  aspect-ratio: 4 / 5;
}

.image-frame[data-ratio="card"] {
  aspect-ratio: 4 / 3;
}

/* ---------- 15. 装饰元素 ---------- */
.deco-line {
  display: block;
  width: 90px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(0, 230, 118, 0.1));
}

.deco-diagonal {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(0, 230, 118, 0.22);
  transform: rotate(45deg);
  pointer-events: none;
}

.deco-diagonal[data-variant="warn"] {
  border-color: rgba(255, 77, 0, 0.28);
}

.deco-diagonal[data-variant="panel"] {
  width: 140px;
  height: 140px;
  border-color: rgba(0, 230, 118, 0.14);
}

.speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -35deg,
    rgba(0, 230, 118, 0.06) 0px,
    rgba(0, 230, 118, 0.06) 1px,
    transparent 1px,
    transparent 18px
  );
}

/* ---------- 16. 响应式 ---------- */
@media (max-width: 1120px) {
  .header-inner {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 5;
    margin-inline: 0;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(46, 61, 92, 0.8);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 4px 0 12px;
  }

  .nav-list a {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-meta {
    display: none;
  }
}

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-slogan {
    display: none;
  }

  .header-inner {
    padding: 10px 10px 10px 16px;
  }

  .grid-trio {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .desc-plate {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* ---------- 17. 动效降级 ---------- */
@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;
    transition-delay: 0s !important;
  }
}
