/* =========================================================
   电竞中国 Site CSS
   全站共享样式 — 赛博朋克 × 高原星空
   ========================================================= */

:root {
  color-scheme: dark;

  --bg-main: #0B0E14;
  --bg-card: #111827;
  --bg-raised: #1A2332;
  --neon-blue: #00F0FF;
  --neon-purple: #9D00FF;
  --gold: #FFD700;
  --danger: #FF3B3B;
  --text-main: #E5E7EB;
  --text-muted: #9CA3AF;

  --grad-main: linear-gradient(135deg, #00F0FF 0%, #9D00FF 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  --grad-progress: linear-gradient(90deg, #00F0FF, #9D00FF 85%, rgba(255, 215, 0, 0.7));

  --font-heading: "Orbitron", "Rajdhani", "Bahnschrift SemiCondensed", "DIN Alternate", "Arial Narrow", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;

  --header-strip-h: 28px;
  --header-bar-h: 68px;
  --header-h: calc(var(--header-strip-h) + var(--header-bar-h));
  --rail-w: 220px;
  --container-w: 1200px;
  --radius: 14px;
  --border-soft: rgba(0, 240, 255, 0.12);
  --shadow-glow: 0 0 24px rgba(0, 240, 255, 0.08);
}

/* ---------- Reset ---------- */

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

* {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--bg-main);
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 12%, rgba(0, 240, 255, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 62%, rgba(255, 255, 255, 0.18) 0%, transparent 100%),
    radial-gradient(2px 2px at 88% 72%, rgba(157, 0, 255, 0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 88%, rgba(255, 255, 255, 0.22) 0%, transparent 100%),
    radial-gradient(ellipse at 20% 0%, rgba(157, 0, 255, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #9df3ff;
}

img {
  object-fit: cover;
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.12);
}

/* ---------- 基础排版 ---------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
}

p {
  text-wrap: pretty;
}

/* ---------- 布局基础 ---------- */

.main-content {
  display: block;
  width: 100%;
  min-height: 60vh;
  padding-top: var(--header-h);
  position: relative;
  z-index: 1;
}

.page-shell {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 32px 24px 72px;
}

@media (min-width: 1180px) {
  .main-content {
    padding-right: var(--rail-w);
  }
}

/* ---------- 共享头部 ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-strip {
  height: var(--header-strip-h);
  background: rgba(0, 240, 255, 0.05);
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
}

.header-icp {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 5px 24px;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 16px;
  color: var(--text-muted);
}

.header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: var(--header-bar-h);
  padding: 0 24px;
  gap: 16px;
}

@media (min-width: 1180px) {
  .header-topbar {
    padding-right: calc(var(--rail-w) + 28px);
  }
}

/* -- 品牌 -- */

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

.brand-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--grad-main);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
}

.brand-glyph-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--bg-main);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--neon-blue);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-main);
  white-space: nowrap;
}

.brand-footer .brand-name {
  font-size: 20px;
}

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

/* -- 头右操作区 -- */

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

.header-entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.header-entry::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
  flex-shrink: 0;
}

.header-entry:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.16);
}

@media (max-width: 1179px) {
  .header-entry {
    display: none;
  }
}

/* -- 移动端抽屉按钮 -- */

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.15);
}

.toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--neon-blue);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* -- 侧边轨道导航 -- */

.site-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  width: var(--rail-w);
  padding: 28px 18px 22px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.97) 0%, rgba(11, 14, 20, 0.98) 100%);
  border-left: 1px solid rgba(0, 240, 255, 0.10);
  box-shadow: -10px 0 32px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.site-nav[data-open="true"] {
  transform: translateX(0);
}

.nav-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nav-list::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.50) 0%, rgba(0, 240, 255, 0.08) 55%, rgba(157, 0, 255, 0.40) 100%);
}

.nav-item + .nav-item {
  margin-top: 2px;
}

.nav-link {
  position: relative;
  display: block;
  padding: 12px 16px 12px 42px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.25s, background 0.25s, text-shadow 0.25s;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(0, 240, 255, 0.5);
  background: var(--bg-main);
  transition: background 0.25s, box-shadow 0.25s;
}

.nav-link:hover {
  color: var(--neon-blue);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.07), transparent);
}

.nav-link:hover::before,
.nav-link[aria-current="page"]::before {
  background: var(--neon-blue);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}

.nav-link[aria-current="page"] {
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.45);
}

.nav-foot {
  margin-top: auto;
  padding: 16px 12px;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
}

.nav-foot-online {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.8);
  flex-shrink: 0;
}

.nav-foot-season {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
}

@media (min-width: 1180px) {
  .site-nav {
    transform: none;
    box-shadow: none;
  }
}

/* -- 滚动进度条 -- */

.scroll-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 0;
  height: 3px;
  z-index: 995;
  background: var(--grad-progress);
  pointer-events: none;
}

@media (min-width: 1180px) {
  .scroll-progress {
    right: var(--rail-w);
  }
}

/* ---------- 共享页脚 ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, var(--bg-main) 100%);
  border-top: 1px solid rgba(157, 0, 255, 0.18);
  margin-top: 32px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue) 30%, var(--neon-purple) 70%, transparent);
  opacity: 0.65;
}

.footer-shell {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 48px 24px 20px;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

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

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 34em;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 16px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover {
  color: var(--neon-blue);
  padding-left: 4px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 240, 255, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-copy,
.footer-icp {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
  }
}

/* ---------- 跳转到主内容 ---------- */

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1200;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- 通用按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 240, 255, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 240, 255, 0.28);
}

.btn-outline {
  border: 1px solid rgba(0, 240, 255, 0.45);
  color: var(--neon-blue);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.06);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.12);
}

.btn-gold {
  background: var(--grad-gold);
  color: #111;
  box-shadow: 0 2px 16px rgba(255, 215, 0, 0.16);
}

.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.25);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 12px;
  border-radius: 5px;
}

.btn-lg {
  padding: 15px 38px;
  font-size: 16px;
  border-radius: 8px;
}

/* ---------- 面包屑 ---------- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 6px 0 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 10px;
  color: var(--neon-purple);
}

.breadcrumb-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--neon-blue);
}

.breadcrumb-current {
  color: var(--neon-blue);
}

/* ---------- 区块标题 ---------- */

.section-head {
  margin-bottom: 28px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: "// ";
  color: var(--neon-purple);
  font-weight: 700;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.section-desc {
  margin-top: 12px;
  color: var(--text-muted);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- 卡片 ---------- */

.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.10);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-top: 2px solid rgba(0, 240, 255, 0.4);
  border-left: 2px solid rgba(0, 240, 255, 0.4);
  border-radius: var(--radius) 0 0 0;
  pointer-events: none;
}

.card-label {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 14px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.card-glow {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card-glow:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.07), 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* ---------- Bento 栅格 ---------- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.bento-cell {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.10);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.04), rgba(157, 0, 255, 0.04));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-cell:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.07);
}

.bento-cell:hover::after {
  opacity: 1;
}

.bento-feature {
  grid-column: span 2;
  min-height: 260px;
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.95) 0%, rgba(157, 0, 255, 0.08) 100%);
  border-color: rgba(157, 0, 255, 0.25);
}

.bento-wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .bento-cell {
    grid-column: span 3;
  }
  .bento-feature {
    grid-column: span 8;
  }
  .bento-wide {
    grid-column: span 6;
  }
}

/* ---------- 媒体容器 ---------- */

.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.12), rgba(0, 240, 255, 0.08));
  border: 1px solid rgba(0, 240, 255, 0.12);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.media-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.media-frame-ratio-square {
  aspect-ratio: 1 / 1;
}

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

.media-frame:empty::after {
  content: "IMG";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(0, 240, 255, 0.35);
}

/* ---------- 数据展示 ---------- */

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ---------- 数据表格 ---------- */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.10);
  text-align: left;
}

.data-table th {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.04);
}

.data-table tr:hover td {
  background: rgba(0, 240, 255, 0.03);
}

/* ---------- 分隔线 ---------- */

.divider {
  display: block;
  height: 1px;
  width: 100%;
  margin: 32px 0;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.28), transparent);
}

/* ---------- 辅助 ---------- */

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

/* ---------- 响应式修正 ---------- */

@media (max-width: 767px) {
  .page-shell {
    padding: 24px 16px 56px;
  }

  .header-topbar {
    padding: 0 16px;
  }

  .site-nav {
    width: min(320px, 85vw);
  }

  .footer-shell {
    padding: 36px 16px 20px;
  }
}

@media (max-width: 1179px) and (min-width: 768px) {
  .page-shell {
    margin-right: 0;
  }
}

@media (max-width: 1179px) {
  .main-content {
    padding-right: 0;
  }

  .scroll-progress {
    right: 0;
  }
}

/* ---------- 减少动态偏好 ---------- */

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

  .btn,
  .nav-link,
  .card,
  .bento-cell,
  .footer-link {
    transform: none !important;
  }
}
