/* =========================================================
   球盟会主站 · 共享样式 /assets/site.css
   夜间赛场数据控制室：深墨绿底 + 荧光高亮 + 暖纸面板
   ========================================================= */

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ol, ul {
  margin: 0;
}

ul, ol { padding: 0; }

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

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

button { background: none; border: 0; }

a { color: inherit; }

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. 变量 ---------- */
:root {
  --ink: #0B1F16;
  --console: #06120D;
  --paper: #F4EBDD;
  --white: #E8F2EC;
  --charcoal: #2A3530;
  --lime: #C6FF3D;
  --orange: #FF6B35;
  --blue: #4DA3FF;
  --moss: #1F3B2E;
  --amber: #FFC857;

  --font-cn: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-num: 'Barlow Condensed', 'Oswald', 'DIN Alternate', 'Arial Narrow', sans-serif;
  --font-body: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --shell-max: 1440px;
  --shell-pad: clamp(1rem, 4vw, 2.5rem);
  --line: rgba(232, 242, 236, 0.12);
  --line-soft: rgba(232, 242, 236, 0.08);
  --radius-organic: 4px 4px 4px 26px;
}

/* ---------- 3. 基础排版 ---------- */
body {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    radial-gradient(110% 70% at 6% -6%, rgba(198, 255, 61, 0.10), transparent 58%),
    radial-gradient(80% 60% at 104% 8%, rgba(77, 163, 255, 0.08), transparent 62%),
    radial-gradient(70% 55% at 50% 108%, rgba(255, 107, 53, 0.07), transparent 64%);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--lime);
  color: var(--console);
}

.h-hero {
  font-family: var(--font-cn);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
}

.h-section {
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--white);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: rgba(232, 242, 236, 0.78);
  max-width: 62ch;
}

.tag-mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 242, 236, 0.62);
}

/* ---------- 4. 布局容器 ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.shell--wide { max-width: 1600px; }

.section { padding-block: clamp(3rem, 7vw, 6.5rem); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}

.band {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.band--console { background: var(--console); }
.band--moss { background: var(--moss); }

.band--paper {
  background: var(--paper);
  color: #14231B;
}

.band--paper .h-hero,
.band--paper .h-section { color: #0B1F16; }

.band--paper .lead,
.band--paper .prose,
.band--paper .tag-mono { color: rgba(20, 35, 27, 0.78); }

.band--paper .eyebrow { color: #3F6B12; }

.grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 2rem);
}

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

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  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, transform 0.2s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--console);
}

.btn-primary:hover { background: #DAFF7C; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(232, 242, 236, 0.28);
}

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

.btn-warm {
  background: var(--paper);
  color: var(--console);
}

.btn-warm:hover { background: #FFF6E7; }

/* ---------- 6. 跳转链接 ---------- */
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1.15rem;
  background: var(--lime);
  color: var(--console);
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.2s ease;
}

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

/* ---------- 7. 头部 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 18, 13, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding: 0.8rem var(--shell-pad);
}

/* 品牌 */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--white);
}

.brand-badge {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: linear-gradient(140deg, var(--lime), #8FCB1F);
  border-radius: 50% 50% 50% 6px;
  transition: transform 0.3s ease;
}

.brand-badge::after {
  content: "";
  position: absolute;
  inset: 11px;
  background: var(--console);
  border-radius: 50%;
}

.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.05); }

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

.brand-mark {
  font-family: var(--font-cn);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
}

/* 赛季轨道 */
.rail-season {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding-left: clamp(0.75rem, 1.6vw, 1.4rem);
  border-left: 1px solid rgba(232, 242, 236, 0.16);
}

.rail-season-bar {
  display: block;
  width: clamp(26px, 3vw, 48px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(198, 255, 61, 0));
}

.rail-season-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(232, 242, 236, 0.6);
  white-space: nowrap;
}

/* 移动按钮 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(232, 242, 236, 0.24);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

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

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lime);
  transition: background-color 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--lime);
  transition: transform 0.25s ease, top 0.25s 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); }

/* 导航 */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.75rem);
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.1vw, 1.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(232, 242, 236, 0.76);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--white); }

.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

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

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: clamp(0.5rem, 1.4vw, 1.25rem);
  border-left: 1px solid rgba(232, 242, 236, 0.16);
}

.nav-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

/* ---------- 8. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(4rem, 9vw, 8rem);
  background: var(--console);
  color: rgba(232, 242, 236, 0.72);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -12%;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(circle, rgba(198, 255, 61, 0.09), transparent 62%);
  pointer-events: none;
}

.footer-seasonline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: 1.75rem var(--shell-pad) 0;
}

.footer-seasonline::after {
  content: "";
  position: absolute;
  left: var(--shell-pad);
  right: var(--shell-pad);
  top: calc(1.75rem + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 255, 61, 0.85), rgba(232, 242, 236, 0.14) 58%, rgba(232, 242, 236, 0));
}

.fsl-node {
  position: relative;
  z-index: 1;
  padding: 0 0.8rem;
  background: var(--console);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(232, 242, 236, 0.48);
}

.fsl-node:first-child {
  padding-left: 0;
  color: var(--lime);
}

.footer-inner {
  position: relative;
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
}

.footer-brand-title {
  font-family: var(--font-cn);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer-brand-line {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer-brand-text {
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(232, 242, 236, 0.6);
}

.footer-nav-title,
.footer-contact-title {
  margin-bottom: 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 242, 236, 0.42);
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-list a {
  display: inline-block;
  font-size: 0.92rem;
  text-decoration: none;
  color: rgba(232, 242, 236, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: var(--lime);
  transform: translateX(3px);
}

.footer-contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-contact-key {
  flex: 0 0 3.2rem;
  padding-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.footer-contact-val {
  color: rgba(232, 242, 236, 0.78);
  word-break: break-word;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.75rem;
  padding-block: 1.25rem 0.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(232, 242, 236, 0.5);
}

.footer-base-year { font-family: var(--font-mono); letter-spacing: 0.06em; }

.footer-base-icp {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: rgba(232, 242, 236, 0.66);
}

.footer-base-note {
  margin-left: auto;
  max-width: 46ch;
}

/* ---------- 9. 面包屑 ---------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; }

.breadcrumb li + li::before {
  content: "/";
  color: rgba(232, 242, 236, 0.28);
}

.breadcrumb a {
  text-decoration: none;
  color: rgba(232, 242, 236, 0.62);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--lime); }

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

/* ---------- 10. 正文 ---------- */
.prose {
  max-width: 74ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(232, 242, 236, 0.8);
}

.prose > * + * { margin-top: 1.2em; }

.prose h2 {
  margin-top: 2.2em;
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.prose h3 {
  margin-top: 1.8em;
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--white);
}

.prose a {
  color: var(--blue);
  text-underline-offset: 0.22em;
}

.prose a:hover { color: var(--lime); }

.prose strong { color: var(--white); font-weight: 700; }

.prose ul,
.prose ol { padding-left: 1.25em; }

.prose li + li { margin-top: 0.45em; }

.prose code {
  padding: 0.12em 0.45em;
  font-family: var(--font-mono);
  font-size: 0.88em;
  color: var(--lime);
  background: var(--moss);
  border-radius: 2px;
}

.prose blockquote {
  padding-left: 1.1rem;
  border-left: 2px solid var(--orange);
  color: rgba(232, 242, 236, 0.72);
}

/* ---------- 11. 图片容器与面板 ---------- */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--moss);
  border-radius: var(--radius-organic);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--16x9 { aspect-ratio: 16 / 9; }
.media-frame--4x3 { aspect-ratio: 4 / 3; }
.media-frame--21x9 { aspect-ratio: 21 / 9; }
.media-frame--1x1 { aspect-ratio: 1 / 1; }
.media-frame--portrait { aspect-ratio: 3 / 4; }

.media-frame__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.35rem 0.7rem;
  background: var(--lime);
  color: var(--console);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-frame__caption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(232, 242, 236, 0.6);
}

.panel-paper {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: var(--paper);
  color: #14231B;
  border-radius: var(--radius-organic);
}

/* ---------- 12. 脚本注入组件 ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--orange) 68%, var(--blue));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  will-change: transform;
}

.to-top {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 2rem);
  bottom: clamp(0.9rem, 2.5vw, 2rem);
  z-index: 110;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(198, 255, 61, 0.45);
  border-radius: 50%;
  background: rgba(6, 18, 13, 0.88);
  color: var(--lime);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}

.to-top[data-visible] {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover { background: var(--moss); }

/* ---------- 13. 响应式 ---------- */
@media (max-width: 1120px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "season season"
      "nav nav";
    align-items: center;
    row-gap: 0.55rem;
    padding-block: 0.75rem;
  }

  .brand { grid-area: brand; }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: end;
  }

  .rail-season {
    grid-area: season;
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .rail-season-bar {
    flex: 1 1 auto;
    width: auto;
    background: linear-gradient(90deg, var(--lime), rgba(198, 255, 61, 0.06));
  }

  .site-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0.25rem 0 0.95rem;
    border-top: 1px solid var(--line-soft);
  }

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

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

  .nav-link {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-link::after { display: none; }

  .nav-link[aria-current="page"] {
    padding-left: 0.85rem;
    box-shadow: inset 3px 0 0 var(--orange);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 1rem 0 0;
    border-left: 0;
  }

  .nav-actions .btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
  }

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

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

  .footer-base-note {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

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

  .footer-brand { grid-column: auto; }

  .footer-nav-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .fsl-node { font-size: 0.62rem; letter-spacing: 0.12em; }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .section-head { align-items: flex-start; }

  .btn { width: 100%; }

  .nav-actions .btn,
  .section-head .btn { width: 100%; }

  .footer-nav-list { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .brand-sub { display: none; }
  .nav-toggle-label { display: none; }
  .footer-seasonline { justify-content: space-between; }
}

/* ---------- 14. 动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .brand:hover .brand-badge,
  .footer-nav-list a:hover { transform: none; }
}
