/* ==========================================
   UNIBET竞 · site.css
   数据控制台 × 编辑部版式
   ========================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --deep: #0B1C34;
  --deep-2: #102A43;
  --deepest: #061020;
  --orange: #FF4B1E;
  --orange-light: #FFB3A1;
  --silver: #C7D0D9;
  --sky: #2E9CE6;
  --light: #F6F8FC;
  --acid: #E6FF3F;
  --grey: #4A637B;

  --font-head: "Noto Sans CJK Black", "Source Han Sans SC", "Microsoft YaHei UI", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Cascadia Code", "Roboto Mono", Consolas, monospace;

  --header-w: 76px;
  --header-w-open: 220px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ---------- 2. 重置 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--light);
  background: var(--deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-left: var(--header-w);
  transition: padding-left var(--dur) var(--ease);
}

main {
  flex: 1 0 auto;
  width: 100%;
}

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

button {
  font: inherit;
}

/* ---------- 3. 基础排版 ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.25;
  color: var(--light);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(30px, 5vw, 64px); }
h2 { font-size: clamp(24px, 3.4vw, 42px); }
h3 { font-size: clamp(19px, 2.2vw, 28px); }
h4 { font-size: 18px; }

p {
  margin-bottom: 1em;
}

a {
  color: var(--sky);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange);
}

::selection {
  background: var(--orange);
  color: #fff;
}

/* ---------- 4. 布局容器 ---------- */
.container {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.content-narrow {
  max-width: 720px;
}

.content-wide {
  max-width: 1200px;
}

/* 网格 */
.grid {
  display: grid;
  gap: var(--gutter);
}

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--asym { grid-template-columns: minmax(0, 1fr) minmax(0, 3fr); }
.grid--asym-rev { grid-template-columns: minmax(0, 3fr) minmax(0, 1fr); }

/* ---------- 5. 头部 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background:
    linear-gradient(rgba(199, 208, 217, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 75, 30, 0.06), transparent 30%),
    var(--deepest);
  background-size: 100% 40px, auto, auto;
  border-right: 1px solid rgba(199, 208, 217, 0.1);
  overflow: hidden;
  transition: width var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--sky) 100%);
  z-index: 2000;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

/* 跳过链接 */
.skip-link {
  position: fixed;
  top: 10px;
  left: calc(var(--header-w) + 16px);
  z-index: 3000;
  padding: 10px 18px;
  background: var(--acid);
  color: var(--deepest);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(-220%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 255, 63, 0.3);
}

/* 品牌 */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 14px 16px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--light);
}

.header-brand:hover {
  color: var(--light);
}

.brand-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7b3a 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.05em;
  line-height: 1;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 4px 16px rgba(255, 75, 30, 0.35);
  position: relative;
}

.emblem-sub {
  font-size: 0.62em;
  vertical-align: super;
  color: var(--acid);
  margin-left: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

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

.brand-cn {
  color: var(--orange);
  margin-left: 1px;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
  white-space: nowrap;
}

/* 移动端按钮 */
.nav-toggle {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border: none;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(6, 16, 32, 0.45);
  transition: background var(--dur), border-radius var(--dur);
}

.nav-toggle:hover {
  background: #ff632e;
}

.toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.toggle-line {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top var(--dur) var(--ease), bottom var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.toggle-line--a { top: 5px; }
.toggle-line--b { bottom: 5px; }

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

/* 导航 */
.site-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-height: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--silver);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav-link:hover {
  background: rgba(255, 179, 161, 0.08);
  color: var(--light);
}

.nav-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
  min-width: 20px;
  text-align: right;
  flex-shrink: 0;
  transition: color var(--dur);
}

.nav-label {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--grey);
  background: transparent;
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--dur), border-color var(--dur), box-shadow var(--dur);
}

.nav-link:hover .nav-index {
  color: var(--sky);
}

.nav-link[aria-current="page"] {
  background: rgba(255, 75, 30, 0.1);
  color: var(--light);
}

.nav-link[aria-current="page"] .nav-index {
  color: var(--orange);
}

.nav-link[aria-current="page"] .nav-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 75, 30, 0.18), 0 0 12px rgba(255, 75, 30, 0.5);
}

/* 状态 */
.header-status {
  flex-shrink: 0;
  padding: 16px 12px 20px;
  border-top: 1px solid rgba(199, 208, 217, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
}

.status-ping {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.status-ping::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  animation: ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% { transform: scale(0.4); opacity: 1; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

.status-group {
  display: flex;
  flex-direction: column;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.status-line {
  font-size: 12px;
  line-height: 1.4;
  color: var(--silver);
  white-space: nowrap;
}

.status-note {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.4;
  color: var(--grey);
  white-space: nowrap;
}

/* ---------- 5.1 桌面轨道 ---------- */
@media (min-width: 1024px) {
  .site-header {
    width: var(--header-w);
  }

  .site-header:hover,
  .site-header:focus-within {
    width: var(--header-w-open);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.5);
  }

  .site-header:hover .brand-text,
  .site-header:focus-within .brand-text,
  .site-header:hover .nav-label,
  .site-header:focus-within .nav-label,
  .site-header:hover .status-group,
  .site-header:focus-within .status-group {
    max-width: 160px;
    opacity: 1;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    justify-content: center;
  }

  .header-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- 5.2 移动端 ---------- */
@media (max-width: 1023px) {
  body {
    padding-left: 0;
  }

  .site-header {
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: none;
    background: var(--orange);
    box-shadow: 0 8px 28px rgba(6, 16, 32, 0.45);
    overflow: visible;
    transition: width var(--dur) var(--ease), height var(--dur) var(--ease), border-radius var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  }

  .site-header:not([data-open]) .header-brand,
  .site-header:not([data-open]) .site-nav,
  .site-header:not([data-open]) .header-status,
  .site-header:not([data-open]) .scroll-progress {
    display: none;
  }

  .nav-toggle {
    inset: 0;
    border-radius: 16px;
    width: 56px;
    height: 56px;
  }

  .site-header[data-open] {
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    background:
      linear-gradient(rgba(199, 208, 217, 0.03) 1px, transparent 1px),
      linear-gradient(160deg, var(--deep) 0%, var(--deepest) 100%);
    background-size: 100% 44px, auto;
    overflow-y: auto;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: 72px 24px 32px;
  }

  .site-header[data-open] .nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .site-header[data-open] .toggle-line--a {
    top: 9px;
    transform: rotate(45deg);
  }

  .site-header[data-open] .toggle-line--b {
    bottom: 9px;
    transform: rotate(-45deg);
  }

  .site-header[data-open] .header-brand {
    display: flex;
    flex-shrink: 0;
    padding: 8px 0 24px;
  }

  .site-header[data-open] .brand-text {
    max-width: none;
    opacity: 1;
  }

  .site-header[data-open] .site-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0;
    min-height: 0;
  }

  .site-header[data-open] .nav-link {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 12px;
  }

  .site-header[data-open] .nav-link + .nav-link {
    margin-top: 4px;
  }

  .site-header[data-open] .nav-index {
    font-size: 13px;
    min-width: 26px;
  }

  .site-header[data-open] .nav-label {
    font-size: 17px;
    font-weight: 700;
    max-width: none;
    opacity: 1;
  }

  .site-header[data-open] .nav-dot {
    width: 8px;
    height: 8px;
  }

  .site-header[data-open] .header-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4px 4px;
    gap: 8px;
  }

  .site-header[data-open] .status-group,
  .site-header[data-open] .status-note {
    max-width: none;
    opacity: 1;
  }

  .site-header[data-open] .status-line {
    font-size: 13px;
  }

  .skip-link {
    left: 16px;
    top: 8px;
  }
}

/* ---------- 6. 页脚 ---------- */
.site-footer {
  position: relative;
  background:
    linear-gradient(rgba(199, 208, 217, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 208, 217, 0.025) 1px, transparent 1px),
    var(--deepest);
  background-size: 36px 36px;
  border-top: 1px solid rgba(199, 208, 217, 0.08);
  color: var(--silver);
  font-size: 14px;
  margin-top: auto;
  padding-top: 56px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 60vw);
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 70%, transparent 100%);
  border-radius: 0 3px 3px 0;
}

.footer-inner {
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 40px;
}

.footer-block {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--light);
  margin-bottom: 16px;
}

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

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

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--light);
  letter-spacing: -0.02em;
}

.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
}

.footer-statement {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 42ch;
  border-left: 2px solid rgba(255, 75, 30, 0.5);
  padding-left: 14px;
}

.footer-console {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(199, 208, 217, 0.12);
}

.footer-link {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur), padding-left var(--dur) var(--ease);
}

.footer-link:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-link + .footer-link {
  margin-top: 2px;
}

.contact-line {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 4px;
  word-break: break-all;
}

.contact-note {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--grey);
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(199, 208, 217, 0.08);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  margin: 0;
}

.footer-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  margin: 0;
}

/* ---------- 7. 返回顶部 ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 208, 217, 0.18);
  border-radius: 12px;
  background: var(--deep-2);
  color: var(--silver);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--dur), transform var(--dur), background var(--dur), color var(--dur), border-color var(--dur);
}

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

.back-to-top:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.back-to-top-arrow {
  display: block;
  line-height: 1;
}

@media (max-width: 1023px) {
  .back-to-top {
    right: 20px;
    bottom: 92px;
  }
}

/* ---------- 8. 共享组件 ---------- */

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur), box-shadow var(--dur), transform var(--dur), opacity var(--dur);
}

.btn:hover {
  background: #ff632e;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 75, 30, 0.35);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(199, 208, 217, 0.3);
  color: var(--silver);
}

.btn--ghost:hover {
  background: rgba(199, 208, 217, 0.06);
  border-color: rgba(199, 208, 217, 0.6);
  color: var(--light);
  box-shadow: none;
}

/* 面包屑 */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  padding: 18px 0;
}

.breadcrumbs a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--dur);
}

.breadcrumbs a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.breadcrumbs .breadcrumbs-current {
  color: var(--silver);
}

/* 数据卡片 */
.data-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent), var(--deep-2);
  border: 1px solid rgba(199, 208, 217, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
}

.data-card:hover {
  border-color: rgba(255, 75, 30, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* 章节标签 */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange-light);
  text-transform: uppercase;
}

.section-tag::before {
  content: "//";
  color: var(--grey);
  font-size: 12px;
}

/* 等宽索引 */
.index-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

/* 斜切标题 */
.slanted-title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.2;
  color: var(--light);
  transform: skewX(-3deg);
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--orange);
}

/* 图片占位容器 */
.aspect-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 75, 30, 0.06), transparent),
    var(--deep-2);
  border: 1px solid rgba(199, 208, 217, 0.06);
}

.aspect-wide { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-portrait { aspect-ratio: 3 / 4; }

.aspect-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 9. 响应式 ---------- */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--asym,
  .grid--asym-rev {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-legal-block {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .site-header {
    bottom: 16px;
    right: 16px;
  }

  .site-header[data-open] {
    padding: 68px 18px 28px;
  }

  .site-header[data-open] .nav-link {
    padding: 14px 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 84px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* ---------- 10. 辅助与可访问性 ---------- */
.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;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .status-ping::after {
    animation: none;
  }

  .skip-link {
    transition: none;
  }
}
