/* =========================================================
   半岛体育CN中国区官网 · 共享样式表 /assets/site.css
   夜间战术室 · 模块化 Bento · 深海墨蓝 / 半岛沙金 / 信号橙
   ========================================================= */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid rgba(159, 179, 200, .16); margin: 0; }

/* ---------- 2. 设计令牌 ---------- */
:root {
  --ink-900: #071A2B;
  --ink-850: #0A2137;
  --ink-800: #0E2A44;
  --ink-700: #123A5A;
  --gold: #D6A15B;
  --signal: #FF6B35;
  --signal-soft: #FF8557;
  --cyan-start: #2DD4BF;
  --cyan-end: #2563EB;
  --pitch: #1F8A70;
  --card-red: #B84A4A;
  --card-yellow: #C9A227;
  --text: #EAF2F8;
  --text-dim: #9FB3C8;
  --canvas: #F4F7FA;

  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --shell-max: 1280px;
  --gutter: clamp(1rem, 3.2vw, 2.5rem);
  --header-h: 66px;
  --radius: 2px;
  --hairline: 1px solid rgba(159, 179, 200, .16);
  --hairline-strong: 1px solid rgba(159, 179, 200, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 3. 基础排版 ---------- */
html { scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .005em;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.02em; line-height: 1.22; color: var(--text); }
h1 { font-size: clamp(1.85rem, 4.6vw, 3.15rem); }
h2 { font-size: clamp(1.35rem, 2.8vw, 2.05rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
::selection { background: var(--gold); color: var(--ink-900); }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; border-radius: var(--radius); }
#main-content { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* ---------- 4. 跳转与滚动锁 ---------- */
.skip-link {
  position: fixed;
  top: -4.5rem;
  left: 1rem;
  z-index: 200;
  padding: .62rem 1.1rem;
  background: var(--gold);
  color: var(--ink-900);
  font-size: .84rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: .75rem; }
html[data-nav-open] { overflow: hidden; }

/* ---------- 5. 头部命令栏 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 26, 43, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(159, 179, 200, .14);
}
.header-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
}
.header-brand { flex: 0 0 auto; }
.brand-link { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--ink-900);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
.brand-text { display: block; }
.brand-name {
  display: block;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--text);
}
.brand-domain {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .06em;
  color: var(--text-dim);
  line-height: 1.5;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.nav-list { display: flex; align-items: center; gap: 1px; flex-wrap: nowrap; }
.nav-item { flex: 0 0 auto; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: .34rem;
  padding: .58rem .58rem;
  font-size: .8rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--text-dim);
  white-space: nowrap;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav-link:hover { color: var(--text); background: rgba(159, 179, 200, .08); }
.nav-index {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .04em;
  color: rgba(159, 179, 200, .55);
  transition: color .18s var(--ease);
}
.nav-link:hover .nav-index { color: var(--gold); }
.nav-link[aria-current="page"] { color: var(--text); background: rgba(214, 161, 91, .1); }
.nav-link[aria-current="page"] .nav-index { color: var(--gold); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .58rem;
  right: .58rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
}
.nav-foot { display: flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.nav-status { display: flex; align-items: center; gap: .5rem; margin: 0; }
.round-badge {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  background: rgba(214, 161, 91, .08);
  border: 1px solid rgba(214, 161, 91, .45);
  border-radius: var(--radius);
  padding: .14rem .4rem;
}
.status-text { font-size: .7rem; letter-spacing: .04em; color: var(--text-dim); white-space: nowrap; }
.nav-utility-link {
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--text-dim);
  padding: .42rem .5rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav-utility-link:hover { color: var(--gold); background: rgba(159, 179, 200, .08); }
.utility-cta {
  display: inline-flex;
  align-items: center;
  padding: .44rem .82rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0B1420;
  background: var(--signal);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.utility-cta:hover { background: var(--signal-soft); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  color: var(--text-dim);
  border: var(--hairline-strong);
  border-radius: var(--radius);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle-label { font-size: .68rem; letter-spacing: .16em; }
.nav-toggle-bars { position: relative; display: block; width: 16px; height: 10px; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s var(--ease), top .2s var(--ease), bottom .2s var(--ease);
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] { color: var(--gold); border-color: rgba(214, 161, 91, .5); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 4px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { bottom: 4px; transform: rotate(-45deg); }

/* 头部下缘滚动进度 */
.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan-start), var(--gold) 55%, var(--signal));
}

/* ---------- 6. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 6rem);
  background: var(--ink-850);
  border-top: 1px solid rgba(159, 179, 200, .14);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(214, 161, 91, 0) 68%);
  opacity: .75;
}
.footer-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.75rem) var(--gutter) clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.footer-intro { flex: 1 1 270px; min-width: 0; }
.footer-brand { display: block; font-size: 1.1rem; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.footer-summary { margin: .8rem 0 1.15rem; max-width: 34ch; font-size: .86rem; line-height: 1.8; color: var(--text-dim); }
.footer-round {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  margin: 0;
  padding: .42rem .72rem;
  background: rgba(18, 58, 90, .45);
  border: var(--hairline);
  border-radius: var(--radius);
}
.footer-round-label { font-size: .62rem; letter-spacing: .18em; color: var(--text-dim); }
.footer-round-value { font-family: var(--font-mono); font-size: 1rem; font-weight: 600; color: var(--gold); }

.footer-columns {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.footer-column-title {
  margin: 0 0 1rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.footer-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-link {
  display: inline-block;
  font-size: .85rem;
  color: var(--text);
  opacity: .78;
  transition: opacity .18s var(--ease), color .18s var(--ease), padding-left .18s var(--ease);
}
.footer-link:hover { opacity: 1; color: var(--gold); padding-left: .3rem; }

.footer-contact { flex: 1 1 300px; min-width: 0; }
.contact-list { display: flex; flex-direction: column; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem 0;
  border-bottom: 1px dashed rgba(159, 179, 200, .16);
}
.contact-key { flex: 0 0 auto; min-width: 2.6rem; font-size: .62rem; letter-spacing: .16em; color: var(--text-dim); }
.contact-value {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: .76rem;
  line-height: 1.6;
  color: var(--text);
  word-break: break-all;
}
.copy-btn {
  flex: 0 0 auto;
  padding: .16rem .42rem;
  font-size: .64rem;
  letter-spacing: .1em;
  color: var(--text-dim);
  border: 1px solid rgba(159, 179, 200, .22);
  border-radius: var(--radius);
  transition: color .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.copy-btn:hover { color: var(--gold); border-color: rgba(214, 161, 91, .5); }
.copy-btn[data-copied] { color: var(--pitch); border-color: var(--pitch); background: rgba(31, 138, 112, .12); }
.footer-note { margin: 1rem 0 0; font-size: .72rem; line-height: 1.85; color: var(--text-dim); }

.footer-legal { background: rgba(7, 26, 43, .62); border-top: 1px solid rgba(159, 179, 200, .12); }
.footer-legal-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  font-size: .72rem;
  color: var(--text-dim);
}
.footer-legal-icp { margin: 0; font-family: var(--font-mono); letter-spacing: .04em; }
.footer-legal-copy { margin: 0; }

/* ---------- 7. 页面骨架 ---------- */
.shell { width: 100%; max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--gutter); }
.shell-narrow { max-width: 860px; }
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: .9rem;
  border-bottom: var(--hairline);
}
.section-head h2, .section-head h3 { margin: 0; }
.eyebrow {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}
.lede { font-size: clamp(.95rem, 1.4vw, 1.06rem); line-height: 1.85; color: var(--text-dim); max-width: 62ch; }
.annot {
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.annot-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--text-dim);
}

/* ---------- 8. 面包屑 ---------- */
.breadcrumbs { padding: 1.35rem 0 .2rem; }
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--text-dim);
}
.breadcrumb-list li { display: inline-flex; align-items: center; }
.breadcrumb-list li::after { content: "/"; margin-left: .4rem; color: rgba(159, 179, 200, .38); }
.breadcrumb-list li:last-child::after { content: ""; margin-left: 0; }
.breadcrumb-list a { transition: color .18s var(--ease); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list [aria-current="page"] { color: var(--text); }

/* ---------- 9. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn-primary { background: var(--signal); color: #0B1420; }
.btn-primary:hover { background: var(--signal-soft); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink-900); }
.btn-gold:hover { background: #E4B478; transform: translateY(-1px); }
.btn-ghost { color: var(--text); border-color: rgba(159, 179, 200, .3); }
.btn-ghost:hover { color: var(--gold); border-color: rgba(214, 161, 91, .55); }

/* ---------- 10. 网格 · Bento · 面板 ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(.75rem, 1.6vw, 1.25rem); }
.panel {
  position: relative;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  background: var(--ink-800);
  border: var(--hairline);
  border-radius: var(--radius);
}
.panel--flat { background: transparent; }
.panel--rail { border-left: 2px solid var(--gold); }

/* ---------- 11. 图片 / 地图容器 ---------- */
.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--ink-800), var(--ink-900));
}
.media-frame > img,
.media-frame > svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame--16x9 { aspect-ratio: 16 / 9; }
.media-frame--4x3 { aspect-ratio: 4 / 3; }
.media-frame--1x1 { aspect-ratio: 1 / 1; }
.media-frame--21x9 { aspect-ratio: 21 / 9; }
.media-frame--grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(18, 58, 90, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 58, 90, .8) 1px, transparent 1px);
  background-size: 34px 34px;
}
.media-frame--map {
  background:
    radial-gradient(circle at 32% 38%, rgba(45, 212, 191, .16), transparent 46%),
    radial-gradient(circle at 70% 62%, rgba(37, 99, 235, .18), transparent 50%),
    linear-gradient(160deg, var(--ink-700), var(--ink-900));
}

/* ---------- 12. 标签 / 状态 ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .22rem .55rem;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .06em;
  color: var(--text-dim);
  border: 1px solid rgba(159, 179, 200, .24);
  border-radius: var(--radius);
}
.tag--home { color: var(--cyan-start); border-color: rgba(45, 212, 191, .45); }
.tag--away { color: #7FA6F0; border-color: rgba(37, 99, 235, .5); }
.tag--live { color: var(--signal); border-color: rgba(255, 107, 53, .5); }
.tag--done { color: var(--pitch); border-color: rgba(31, 138, 112, .5); }
.tag--warn { color: var(--card-yellow); border-color: rgba(201, 162, 39, .5); }
.tag--risk { color: var(--card-red); border-color: rgba(184, 74, 74, .5); }

/* ---------- 13. 竖向轮次轴 ---------- */
.round-rail {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: .8rem;
  border-left: 1px solid rgba(159, 179, 200, .18);
}
.rail-item {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  padding: .18rem 0;
  color: var(--text-dim);
  transition: color .18s var(--ease);
}
.rail-item:hover { color: var(--text); }
.rail-item.is-active { color: var(--signal); }

/* ---------- 14. 显现与返回顶部 ---------- */
html[data-js] [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
html[data-js] [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(7, 26, 43, .92);
  border: 1px solid rgba(214, 161, 91, .45);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.to-top[data-visible] { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--ink-900); background: var(--gold); }

/* ---------- 15. 断点 ---------- */
@media (max-width: 1220px) {
  .status-text { display: none; }
}

@media (max-width: 1023px) {
  :root { --header-h: 62px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.1rem var(--gutter) 3rem;
    background: var(--ink-900);
    border-top: 1px solid rgba(159, 179, 200, .14);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .site-nav[data-open] { opacity: 1; visibility: visible; transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: var(--hairline); }
  .nav-link {
    display: flex;
    justify-content: flex-start;
    gap: .75rem;
    padding: .95rem .2rem;
    font-size: .95rem;
    border-radius: 0;
  }
  .nav-link[aria-current="page"] { background: none; color: var(--gold); }
  .nav-link[aria-current="page"]::after {
    left: 0;
    right: auto;
    top: .75rem;
    bottom: .75rem;
    width: 3px;
    height: auto;
  }
  .nav-foot {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: var(--hairline);
  }
  .nav-status { justify-content: flex-start; }
  .status-text { display: inline; }
  .nav-utility-link { padding: .5rem .2rem; font-size: .85rem; }
  .utility-cta { justify-content: center; padding: .75rem 1rem; font-size: .85rem; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .footer-shell { flex-direction: column; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .footer-legal-inner { flex-direction: column; align-items: flex-start; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .brand-domain { display: none; }
  .nav-toggle-label { display: none; }
}

/* ---------- 16. 减少运动 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html[data-js] [data-reveal] { opacity: 1 !important; transform: none !important; }
  .to-top { transform: none; }
}
