/* ============================================
   斗球主站 · /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, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
table { border-collapse: collapse; width: 100%; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

/* ---------- 2. 变量 ---------- */
:root {
  --ink-950: #080C18;
  --indigo-900: #101A3C;
  --indigo-700: #1B2A66;
  --cyan-400: #1FE0D0;
  --cyan-100: #B9FFF7;
  --paper-50: #F6F1E7;
  --paper-300: #DDD3C2;
  --amber-500: #FF8A34;
  --graphite-700: #39404F;
  --violet-500: #7C5CFF;

  --font-display: "Inter Tight", "Archivo", "Noto Sans SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-num: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --gutter: 20px;
  --dur: 240ms;
}

/* ---------- 3. 基底 ---------- */
body {
  background: var(--ink-950);
  color: var(--paper-50);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .01em;
  padding-top: 68px;
  padding-bottom: 98px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
}

h1 { font-size: clamp(34px, 6vw, 82px); font-weight: 900; letter-spacing: -.04em; }
h2 { font-size: clamp(26px, 3.6vw, 52px); font-weight: 900; letter-spacing: -.035em; }
h3 { font-size: clamp(19px, 2vw, 26px); }
h4 { font-size: 17px; }

::selection { background: var(--cyan-400); color: var(--ink-950); }

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
}

/* ---------- 4. 布局 ---------- */
.shell {
  width: min(1440px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section { padding: clamp(52px, 7vw, 104px) 0; position: relative; }
.section--ink { background: var(--ink-950); color: var(--paper-50); }
.section--indigo { background: var(--indigo-900); color: var(--paper-50); }
.section--paper { background: var(--paper-50); color: var(--graphite-700); }
.section--paper h1,
.section--paper h2,
.section--paper h3,
.section--paper h4 { color: var(--ink-950); }
.section--paper .eyebrow { color: var(--indigo-700); }
.section--paper a:not(.btn) {
  color: var(--indigo-700);
  text-decoration: underline;
  text-decoration-color: var(--amber-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.section + .section { border-top: 4px solid var(--cyan-400); }
.section--paper + .section--paper { border-top-color: var(--ink-950); }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-7-5 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.grid-5-7 { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

/* ---------- 5. 文字组件 ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 118px);
  line-height: .94;
  letter-spacing: -.045em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-400);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  flex: none;
}

.lede {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--cyan-100);
  max-width: 36em;
}
.section--paper .lede { color: var(--graphite-700); }

.prose { max-width: 36em; font-size: 16px; line-height: 1.85; }
.prose > * + * { margin-top: 1.05em; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.1em; }
.prose li { position: relative; padding-left: .9em; }
.prose li + li { margin-top: .4em; }
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--amber-500);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cyan-100);
}
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li::after { content: "/"; opacity: .45; }
.crumbs li:last-child::after { content: ""; }
.crumbs a:hover { color: var(--cyan-400); }
.crumbs [aria-current="page"] { color: var(--amber-500); }

/* ---------- 6. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  border: 2px solid transparent;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn-solid {
  background: var(--amber-500);
  color: var(--ink-950);
  border-color: var(--amber-500);
  box-shadow: 6px 6px 0 0 rgba(31, 224, 208, .32);
}
.btn-solid:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 rgba(31, 224, 208, .5);
}
.btn-line {
  background: transparent;
  color: var(--cyan-400);
  border-color: var(--cyan-400);
}
.btn-line:hover {
  transform: translate(2px, 2px);
  background: rgba(31, 224, 208, .1);
  box-shadow: 4px 4px 0 0 rgba(31, 224, 208, .28);
}
.section--paper .btn-line { color: var(--indigo-700); border-color: var(--indigo-700); }
.section--paper .btn-line:hover { background: rgba(27, 42, 102, .08); box-shadow: 4px 4px 0 0 rgba(27, 42, 102, .22); }

/* ---------- 7. 面板 / 数据 / 标签 ---------- */
.panel {
  background: var(--indigo-900);
  border: 2px solid var(--indigo-700);
  box-shadow: 10px 10px 0 0 rgba(8, 12, 24, .72);
  padding: clamp(20px, 2.4vw, 32px);
}
.panel--edge { border-color: var(--cyan-400); }
.panel--paper {
  background: var(--paper-50);
  border-color: var(--ink-950);
  box-shadow: 10px 10px 0 0 var(--paper-300);
  color: var(--graphite-700);
}

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--cyan-400);
}
.stat-num--amber { color: var(--amber-500); }
.section--paper .stat-num { color: var(--ink-950); }
.section--paper .stat-num--amber { color: var(--ink-950); text-decoration: underline; text-decoration-color: var(--amber-500); text-decoration-thickness: 6px; text-underline-offset: 6px; }
.stat-key {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-100);
}
.section--paper .stat-key { color: var(--indigo-700); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 2px solid var(--indigo-700);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--cyan-100);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.tag:hover { border-color: var(--cyan-400); color: var(--cyan-400); }
.tag--active {
  background: var(--cyan-400);
  border-color: var(--cyan-400);
  color: var(--ink-950);
}

.table { font-size: 15px; }
.table th, .table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--paper-300);
  vertical-align: top;
}
.table th {
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-700);
  border-bottom-color: var(--ink-950);
}
.table td[data-num], .table th[data-num] {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}
.table tbody tr { transition: box-shadow var(--dur) var(--ease); }
.table tbody tr:hover { box-shadow: inset 4px 0 0 0 var(--amber-500); }

/* ---------- 8. 折叠 / 媒体 ---------- */
.fold {
  border: 2px solid var(--indigo-700);
  background: rgba(16, 26, 60, .62);
}
.fold + .fold { margin-top: -2px; }
.fold summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  font-weight: 600;
}
.fold summary::after {
  content: "+";
  font-family: var(--font-num);
  color: var(--cyan-400);
  font-size: 18px;
  line-height: 1;
}
.fold[open] summary { border-bottom: 2px solid var(--indigo-700); }
.fold[open] summary::after { content: "\2013"; }
.fold-body { padding: 16px 18px; color: var(--cyan-100); }
.section--paper .fold { background: #FFFDF8; border-color: var(--ink-950); }
.section--paper .fold summary::after { color: var(--indigo-700); }
.section--paper .fold-body { color: var(--graphite-700); }

.media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--indigo-900);
  border: 2px solid var(--indigo-700);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--3x4 { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 21 / 9; }
.media--duotone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(16, 26, 60, .78), rgba(31, 224, 208, .2));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.media-caption {
  margin-top: 10px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--cyan-100);
}
.section--paper .media { border-color: var(--ink-950); background: var(--paper-300); }
.section--paper .media-caption { color: var(--indigo-700); }

/* ---------- 9. 页头 ---------- */
.site-header {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.brand-island,
.nav-rail,
.hud,
.skip-link { pointer-events: auto; }
.read-progress { pointer-events: none; }

.skip-link {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -220%);
  z-index: 90;
  padding: 10px 18px;
  background: var(--amber-500);
  color: var(--ink-950);
  border: 2px solid var(--ink-950);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.read-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(27, 42, 102, .9);
}
.read-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan-400);
  transition: width .12s linear;
}

/* 品牌浮岛 */
.brand-island {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 84;
  background: var(--ink-950);
  border: 2px solid var(--cyan-400);
  box-shadow: 6px 6px 0 0 rgba(27, 42, 102, .95);
}
.brand { display: flex; align-items: center; gap: 12px; padding: 8px 14px; }
.brand-mark {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  background: var(--cyan-400);
  color: var(--ink-950);
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.brand-note {
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--cyan-100);
}

/* 悬浮胶囊导航 */
.nav-rail { position: absolute; z-index: 84; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px;
  border-radius: 999px;
  transition: background-color var(--dur) var(--ease);
}
.nav-toggle:hover { background: rgba(31, 224, 208, .1); }
.nav-dots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.nav-dots i { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-400); transition: background-color var(--dur) var(--ease); }
.nav-toggle:hover .nav-dots i { background: var(--amber-500); }
.nav-toggle-text {
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--cyan-100);
}

.scope-pill {
  display: none;
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--cyan-400);
  border: 1px solid var(--indigo-700);
  background: rgba(31, 224, 208, .08);
  border-radius: 999px;
  padding: 3px 8px;
}

.nav-panel {
  background: var(--ink-950);
  border: 2px solid var(--cyan-400);
  box-shadow: 10px 10px 0 0 rgba(27, 42, 102, .9);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
}
.nav-rail[data-open] .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-index {
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cyan-100);
  margin-bottom: 14px;
}

.nav-list { counter-reset: navitem; display: flex; flex-direction: column; gap: 2px; }
.nav-list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 10px;
  font-size: 15px;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.nav-list a::before {
  counter-increment: navitem;
  content: "0" counter(navitem);
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--cyan-400);
  opacity: .75;
}
.nav-list a:hover { background: rgba(31, 224, 208, .1); border-left-color: var(--cyan-400); }
.nav-list a[aria-current="page"] {
  color: var(--amber-500);
  background: rgba(255, 138, 52, .12);
  border-left-color: var(--amber-500);
}
.nav-list a[aria-current="page"]::before { color: var(--amber-500); opacity: 1; }

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--indigo-700);
}
.nav-actions .btn { width: 100%; }

.scope-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--indigo-700);
}
.scope-label {
  flex: 1 0 100%;
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cyan-100);
}
.scope-btn {
  font-family: var(--font-num);
  font-size: 12px;
  padding: 6px 12px;
  border: 2px solid var(--indigo-700);
  color: var(--cyan-100);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.scope-btn:hover { border-color: var(--cyan-400); color: var(--cyan-400); }
.scope-btn[aria-pressed="true"] {
  background: var(--cyan-400);
  border-color: var(--cyan-400);
  color: var(--ink-950);
}

/* HUD 状态面板 */
.hud {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 84;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(16, 26, 60, .94);
  border: 2px solid var(--indigo-700);
  box-shadow: 6px 6px 0 0 rgba(8, 12, 24, .7);
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--cyan-100);
}
.hud-key { color: var(--cyan-400); }
.hud-value {
  max-width: 24ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--paper-50);
}
.hud-num { color: var(--amber-500); font-weight: 700; }

/* 口径数据切换协议 */
html[data-scope="pc"] [data-scope-view]:not([data-scope-view="pc"]),
html[data-scope="mobile"] [data-scope-view]:not([data-scope-view="mobile"]),
html[data-scope="all"] [data-scope-view]:not([data-scope-view="all"]) { display: none; }

/* ---------- 10. 页脚 ---------- */
.site-footer {
  position: relative;
  background: var(--ink-950);
  color: var(--paper-50);
  border-top: 4px solid var(--cyan-400);
  padding: clamp(46px, 6vw, 84px) 0 32px;
}
.footer-shell {
  width: min(1440px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: clamp(22px, 3vw, 48px);
}
.footer-col { min-width: 0; }
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
}
.footer-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--cyan-100);
  max-width: 26em;
}
.footer-legal {
  margin-top: 16px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--cyan-400);
}
.footer-title {
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list li { font-size: 14px; line-height: 1.7; color: var(--cyan-100); }
.footer-list a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer-list a:hover { color: var(--cyan-400); border-bottom-color: var(--cyan-400); }
.footer-list-plain li { color: var(--cyan-100); }
.footer-list-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--indigo-700);
}
.footer-list-docs a {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--cyan-400);
  border-bottom: 1px solid rgba(31, 224, 208, .45);
}
.footer-list-docs a:hover { color: var(--paper-50); border-bottom-color: var(--paper-50); }
.footer-cta { margin-top: 18px; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 26px;
  margin-top: clamp(30px, 4vw, 54px);
  padding-top: 20px;
  border-top: 2px solid var(--indigo-700);
}
.footer-meta {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--cyan-100);
}

/* ---------- 11. 显现 ---------- */
html[data-reveal] .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
html[data-reveal] .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- 12. 响应式 ---------- */
@media (min-width: 1024px) {
  :root { --gutter: 40px; }
  body { padding-top: 78px; padding-bottom: 0; padding-left: 112px; }

  .brand-note { font-size: 10px; }

  .nav-rail {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    background: rgba(16, 26, 60, .95);
    border: 2px solid var(--indigo-700);
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(8, 12, 24, .55);
  }
  .scope-pill { display: inline-block; }
  .nav-toggle { flex-direction: column; gap: 7px; width: 100%; }

  .nav-panel {
    position: absolute;
    left: 100%;
    top: 50%;
    width: min(320px, 32vw);
    max-height: 78vh;
    transform: translate(6px, -50%);
  }
  .nav-rail[data-open] .nav-panel { transform: translate(16px, -50%); }
}

@media (max-width: 1023px) {
  .nav-rail {
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(16, 26, 60, .97);
    border: 2px solid var(--indigo-700);
    border-radius: 999px;
    box-shadow: 8px 8px 0 0 rgba(8, 12, 24, .6);
  }
  .nav-toggle { flex-direction: row; }
  .nav-panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    width: min(520px, calc(100vw - 32px));
    max-height: min(66vh, 540px);
    transform: translate(-50%, 8px);
  }
  .nav-rail[data-open] .nav-panel { transform: translate(-50%, 0); }

  .hud { display: none; }

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

@media (max-width: 900px) {
  .grid-7-5, .grid-5-7 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 767px) {
  .brand-island { top: 12px; left: 12px; }
  .brand-note { display: none; }
  .brand-mark { width: 30px; height: 30px; font-size: 12px; }
  .brand { padding: 7px 12px; gap: 10px; }
}

@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 13. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
