/* ==========================================================
   365体育亚洲 / 365-arena.com.cn
   全站共享样式：Site CSS
   ========================================================== */

/* ---------- 设计变量 ---------- */
:root {
  --green-950: #071B16;
  --green-900: #0B2E24;
  --green-800: #1F5E45;
  --green-600: #2E7D5B;
  --gold: #D9A441;
  --gold-bright: #E8BC5F;
  --red: #D64541;
  --bone: #F5F1E8;
  --sand: #E7DCC8;
  --ink: #161514;

  --font-heading: "Rajdhani", "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", "SF Mono", "Cascadia Code", Consolas, monospace;

  --container: 1200px;
  --radius: 8px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow-card: 0 10px 30px rgba(7, 27, 22, .07);

  --link: var(--gold);
  --link-hover: var(--gold-bright);

  color-scheme: dark;
}

/* ---------- Reset 与基础 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone);
  background-color: var(--green-900);
  background-image:
    linear-gradient(rgba(245, 241, 232, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, .028) 1px, transparent 1px);
  background-size: 44px 44px;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: var(--link); text-decoration: none; transition: color .2s ease, border-color .2s ease; }
a:hover { color: var(--link-hover); text-decoration: underline; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
summary { cursor: pointer; }

::selection { background: var(--gold); color: var(--green-950); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--green-950); }
::-webkit-scrollbar-thumb { background: var(--green-800); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }

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

/* ---------- 无障碍 ---------- */
.sr-only {
  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: 10px; left: 10px; z-index: 999;
  background: var(--gold); color: var(--green-950);
  font-weight: 700; padding: 10px 18px; border-radius: 4px;
  transform: translateY(-200%); transition: transform .2s ease;
  text-decoration: none;
}
.skip-link:hover { text-decoration: none; color: var(--green-950); }
.skip-link:focus { transform: translateY(0); }

/* ---------- 布局容器 ---------- */
.container { width: min(var(--container), 92vw); margin-inline: auto; }

.page-main {
  background: var(--bone);
  color: var(--ink);
  min-height: 62vh;
  scroll-margin-top: 116px;
  --link: var(--green-600);
  --link-hover: var(--green-900);
  color-scheme: light;
}
.page-main:focus { outline: none; }
.page-main:focus-visible { outline: none; }
@media (min-width: 960px) { .page-main { scroll-margin-top: 182px; } }

/* ---------- 栅格 ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1100px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .7em 1.4em; border: 1px solid transparent; border-radius: 4px;
  font-weight: 600; font-size: .95rem; line-height: 1.2; text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold); border-color: var(--gold); color: var(--green-950);
  box-shadow: 0 6px 18px rgba(217, 164, 65, .28);
}
.btn-gold:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  color: var(--green-950); box-shadow: 0 8px 22px rgba(217, 164, 65, .36);
}

.btn-ghost { background: transparent; border-color: rgba(245, 241, 232, .28); color: var(--bone); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--green-950); }

.btn-sm { padding: .5em 1em; font-size: .82rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- 卡片与面板 ---------- */
.card {
  background: var(--bone);
  border: 1px solid rgba(11, 46, 36, .14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card-dark {
  background: var(--green-900);
  border: 1px solid rgba(217, 164, 65, .18);
  color: var(--bone);
  --link: var(--gold);
  --link-hover: var(--gold-bright);
}
.card-flat { box-shadow: none; }

.note-panel {
  background: var(--sand);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
  font-size: .9rem; line-height: 1.8; color: var(--ink);
}

details.panel {
  background: var(--sand);
  border: 1px solid rgba(11, 46, 36, .14);
  border-radius: 6px;
  overflow: hidden;
}
details.panel + details.panel { margin-top: 12px; }
details.panel > summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 18px; font-weight: 700; font-size: .95rem;
}
details.panel > summary::-webkit-details-marker { display: none; }
details.panel > summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.1rem;
  color: var(--green-800); transition: transform .25s ease;
}
details.panel[open] > summary { border-bottom: 1px solid rgba(11, 46, 36, .12); }
details.panel[open] > summary::after { transform: rotate(45deg); }
details.panel .panel-body { padding: 14px 18px 16px; font-size: .92rem; line-height: 1.8; color: rgba(22, 21, 20, .8); }

/* ---------- 图例与索引 ---------- */
.field-legend {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  padding: 10px 16px; background: rgba(11, 46, 36, .07);
  border: 1px solid rgba(11, 46, 36, .12); border-radius: 6px;
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink); letter-spacing: .02em; }
.legend-swatch { width: 10px; height: 10px; border-radius: 2px; background: var(--gold); flex: 0 0 auto; }
.legend-swatch-live { background: var(--red); }
.legend-swatch-green { background: var(--green-600); }

.coord-label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  color: rgba(22, 21, 20, .55); text-transform: uppercase;
}
.card-dark .coord-label { color: rgba(245, 241, 232, .55); }

/* ---------- 标题与文字 ---------- */
.kicker {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.12; color: var(--ink); letter-spacing: .01em;
}
.section-intro { font-size: 1rem; line-height: 1.85; color: rgba(22, 21, 20, .72); }

.big-num {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.big-num-gold { color: var(--gold); }
.card-dark .big-num { color: var(--gold); }

mark { background: rgba(217, 164, 65, .3); color: inherit; padding: 0 .25em; border-radius: 2px; }

/* ---------- 面包屑 ---------- */
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 20px 0 4px; font-size: .82rem; color: rgba(22, 21, 20, .6);
}
.breadcrumbs a { text-decoration: none; border-bottom: 1px dotted currentColor; }
.breadcrumbs a:hover { border-bottom-color: currentColor; }
.breadcrumbs .crumb-sep { color: rgba(22, 21, 20, .3); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- 媒体容器 ---------- */
.media-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-800);
  border: 1px dashed rgba(217, 164, 65, .45);
  border-radius: 6px;
  display: grid; place-items: center;
  color: rgba(245, 241, 232, .6); font-size: .8rem;
}
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px; font-size: .76rem; color: var(--bone);
  background: linear-gradient(180deg, transparent, rgba(7, 27, 22, .85));
}
.media-ratio-wide { aspect-ratio: 16 / 9; }

/* ---------- 筛选按钮 ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .55em 1.15em; border-radius: 999px;
  border: 1px solid rgba(22, 21, 20, .18);
  background: transparent; color: var(--ink);
  font-size: .85rem; font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--green-800); text-decoration: none; }
.filter-btn[aria-pressed="true"],
.filter-btn.is-active { background: var(--green-900); border-color: var(--green-900); color: var(--gold); }

.card-dark .filter-btn { border-color: rgba(245, 241, 232, .3); color: var(--bone); }
.card-dark .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.card-dark .filter-btn[aria-pressed="true"],
.card-dark .filter-btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--green-950); }

[data-filter-target].is-filtered { display: none; }

/* ---------- 徽标与标签 ---------- */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .2em .7em; border-radius: 999px;
  background: rgba(214, 69, 65, .14); border: 1px solid rgba(214, 69, 65, .4);
  color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
}
.live-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: live-pulse 1.8s ease-in-out infinite;
}
.tag {
  display: inline-block; padding: .2em .7em; border-radius: 999px;
  background: rgba(46, 125, 91, .12); color: var(--green-800);
  font-size: .72rem; font-weight: 600;
}

/* ---------- 入场显现（JS 协议） ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

[data-count], [data-year] { font-variant-numeric: tabular-nums; }

/* ==========================================================
   头部
   ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--green-900);
  box-shadow: 0 1px 0 rgba(217, 164, 65, .22);
}

/* ---- 顶部核对条 ---- */
.header-topbar {
  background: var(--green-950);
  border-bottom: 1px solid rgba(245, 241, 232, .08);
  font-size: .76rem;
}
.header-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 7px 0;
}
.header-domain-note {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(245, 241, 232, .6); letter-spacing: .02em;
}
.domain-pin {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex: 0 0 auto;
  animation: live-pulse 2s ease-in-out infinite;
}
.domain-code { font-family: var(--font-mono); color: var(--gold); letter-spacing: .04em; }
.header-quick { display: inline-flex; align-items: center; gap: 10px; }
.quick-link { color: rgba(245, 241, 232, .72); font-weight: 500; }
.quick-link:hover { color: var(--gold); text-decoration: none; }
.quick-sep { color: rgba(245, 241, 232, .3); }

/* ---- 品牌行 ---- */
.header-main { background: var(--green-900); }
.header-main-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}

.site-brand { display: inline-flex; align-items: center; gap: 12px; }
.site-brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1em; height: 1.35em;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: var(--green-950); border-radius: 4px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.7rem; line-height: 1; letter-spacing: .02em;
  box-shadow: 0 3px 10px rgba(217, 164, 65, .3);
}
.brand-body { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.18rem; letter-spacing: .06em; color: var(--bone);
}
.brand-sub {
  font-family: var(--font-mono); font-size: clamp(.56rem, 1.8vw, .68rem);
  letter-spacing: .1em; color: var(--gold); text-transform: uppercase;
  margin-top: 3px; white-space: nowrap;
}
.brand-sub-short { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---- 汉堡按钮 ---- */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 42px;
  border: 1px solid rgba(217, 164, 65, .35); border-radius: 4px;
  background: rgba(217, 164, 65, .06);
  transition: background .2s ease, border-color .2s ease;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(217, 164, 65, .12); }
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--gold); content: ""; position: relative;
  transition: transform .28s var(--ease), background .2s ease;
}
.nav-toggle-lines::before { position: absolute; top: -7px; }
.nav-toggle-lines::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-7px) rotate(-45deg); }

/* ---- 导航轨道（移动端默认折叠） ---- */
.site-nav {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
  background: var(--green-950);
}
.site-nav[data-open] { grid-template-rows: 1fr; }
.site-nav-inner { overflow: hidden; min-height: 0; }

.nav-track {
  position: relative;
  display: flex; flex-direction: column;
  padding: 4px 0 10px;
  border-top: 1px solid rgba(217, 164, 65, .16);
}
.nav-list { display: flex; flex-direction: column; }
.nav-item { width: 100%; }
.nav-link {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 12px 4px; color: rgba(245, 241, 232, .82);
  font-weight: 600; font-size: .95rem;
  border-bottom: 1px dashed rgba(217, 164, 65, .16);
}
.nav-link:hover { color: var(--gold); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--gold); }
.nav-index {
  font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .06em; color: rgba(217, 164, 65, .5);
  min-width: 2ch;
}
.nav-link[aria-current="page"] .nav-index { color: var(--gold); font-weight: 700; }
.nav-label { display: inline-flex; align-items: center; letter-spacing: .05em; }

.nav-coord { display: none; }
.nav-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 0 2px;
  font-size: .7rem; letter-spacing: .03em; color: rgba(245, 241, 232, .5);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  flex: 0 0 auto; animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 69, 65, .4); }
  50% { box-shadow: 0 0 0 6px rgba(214, 69, 65, 0); }
}

/* ---- 滚动进度 ---- */
.scroll-progress {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 5; pointer-events: none;
}

/* ==========================================================
   页脚
   ========================================================== */
.site-footer {
  position: relative;
  background: var(--green-950);
  color: rgba(245, 241, 232, .72);
  border-top: 2px solid var(--gold);
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 14px,
    transparent 14px 26px,
    var(--red) 26px 32px,
    transparent 32px 52px);
  opacity: .35; pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr;
  gap: 40px;
  padding: 56px 0 44px;
}

.footer-brand-col { min-width: 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand:hover { text-decoration: none; }
.footer-brand .brand-sub { letter-spacing: .08em; }

.footer-motto {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.15rem; letter-spacing: .1em; color: var(--gold);
  margin-top: 16px;
}
.trust-statement {
  border-left: 2px solid var(--gold);
  padding-left: 14px; margin-top: 12px;
  font-size: .82rem; line-height: 1.85;
  color: rgba(245, 241, 232, .55);
  max-width: 46ch;
}

.footer-col-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: .82rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 164, 65, .22);
  padding-bottom: 10px; margin-bottom: 16px;
}
.footer-links li + li { margin-top: 9px; }
.footer-links a { color: rgba(245, 241, 232, .65); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); text-decoration: none; }

.footer-contact-col { min-width: 0; }
.footer-contact-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding-bottom: 12px;
}
.footer-contact-list li + li {
  border-top: 1px dashed rgba(217, 164, 65, .16);
  padding-top: 12px;
}
.contact-label {
  font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(217, 164, 65, .6);
}
.contact-value {
  font-family: var(--font-mono); font-size: .84rem;
  color: var(--bone); word-break: break-all;
}

.footer-bottom { border-top: 1px solid rgba(245, 241, 232, .1); }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 8px 24px;
  padding: 18px 0;
  font-size: .78rem; letter-spacing: .03em;
  color: rgba(245, 241, 232, .42);
}
.copyright { font-family: var(--font-mono); }
.icp { font-family: var(--font-mono); }

/* ==========================================================
   响应式
   ========================================================== */
@media (min-width: 960px) {
  .site-nav { display: block; grid-template-rows: none; }
  .site-nav-inner { overflow: visible; }

  .nav-track {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    padding: 0;
  }
  .nav-track::before,
  .nav-track::after {
    content: "";
    position: absolute; top: 5px; bottom: 5px; width: 3px;
    border-radius: 3px; background: var(--gold); opacity: .45;
    pointer-events: none;
  }
  .nav-track::before { left: 0; }
  .nav-track::after { right: 0; }

  .nav-list { flex-direction: row; justify-content: center; gap: 4px; }
  .nav-item { width: auto; }
  .nav-link {
    width: auto; padding: 15px 14px;
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover { border-bottom-color: rgba(217, 164, 65, .45); }
  .nav-link[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav-link[aria-current="page"]:hover { text-decoration: none; }

  .nav-coord {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: .62rem;
    letter-spacing: .18em; color: rgba(245, 241, 232, .32);
    writing-mode: vertical-rl; transform: rotate(180deg);
    padding: 10px 14px 10px 4px;
    border-right: 1px solid rgba(217, 164, 65, .18);
    white-space: nowrap;
  }

  .nav-status {
    display: inline-flex; justify-content: flex-end;
    padding: 0 4px 0 18px;
    border-left: 1px solid rgba(217, 164, 65, .18);
  }

  .nav-toggle { display: none; }
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 0 32px; }
}

@media (max-width: 640px) {
  .header-topbar-inner { padding: 6px 0; }
  .header-quick { display: none; }
  .header-domain-note { line-height: 1.6; }

  .header-main-inner { padding: 10px 0; gap: 10px; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-sm { padding: .45em .8em; font-size: .75rem; }

  .nav-toggle { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .site-brand { gap: 8px; }
  .brand-mark { font-size: 1.35rem; width: 2em; height: 1.3em; }
  .brand-name { font-size: .98rem; }
  .brand-sub-full { display: none; }
  .brand-sub-short { display: inline; }

  .footer-grid { grid-template-columns: 1fr; padding: 36px 0 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   动效降级
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  body { scroll-behavior: auto; }
  .live-dot, .domain-pin, .live-badge::before { animation: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .btn:active, .nav-link, .skip-link { transform: none; }
}
