/* ============================================================
   三亿体育中国站 · 共享样式 /assets/site.css
   夜间球场记分牌：墨绿底 + 荧光青数据 + 琥珀金与电光紫高亮
   ============================================================ */

/* ---------- 1. 变量 ---------- */
:root {
  --ink: #051C17;
  --turf: #0B2F26;
  --board: #0E3B3A;
  --cyan: #3DF2C0;
  --amber: #F7B63F;
  --violet: #8F6BFF;
  --wine: #7C2340;
  --indigo: #211A44;
  --paper: #F2F7F5;
  --moss: #9FB8AF;
  --line: rgba(61, 242, 192, 0.20);
  --line-soft: rgba(242, 247, 245, 0.12);
  --rail-w: 272px;
  --topbar-h: 68px;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shadow-card: 0 22px 46px -30px rgba(0, 0, 0, 0.95);
  --ease: cubic-bezier(0.22, 0.7, 0.24, 1);
}

/* ---------- 2. reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

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

ul,
ol { margin: 0; padding: 0; list-style: none; }

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

a { color: inherit; }

button { font: inherit; color: inherit; }

h1,
h2,
h3,
h4 { line-height: 1.22; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

::selection { background: var(--cyan); color: #04211B; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ---------- 3. 页面基座 ---------- */
body {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    radial-gradient(1100px 620px at 88% -6%, rgba(61, 242, 192, 0.10), transparent 62%),
    radial-gradient(780px 520px at -8% 72%, rgba(143, 107, 255, 0.13), transparent 60%),
    linear-gradient(180deg, #051C17 0%, #04140F 58%, #061F19 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(61, 242, 192, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 242, 192, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 88%);
}

#main-content:focus-visible {
  outline: 2px dashed var(--cyan);
  outline-offset: 8px;
}

/* ---------- 4. 工具类 ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.moss { color: var(--moss); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

[data-reveal] { opacity: 1; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 5. 跳转链接 ---------- */
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 300;
  transform: translateY(-190%);
  padding: 10px 16px;
  background: var(--cyan);
  color: #04211B;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.22s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- 6. 页头 / 轨道 ---------- */
.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail-w);
  z-index: 80;
  background: linear-gradient(180deg, rgba(11, 47, 38, 0.97) 0%, rgba(5, 28, 23, 0.99) 100%);
  border-right: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 26px 22px 22px;
}

/* 品牌 */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  text-decoration: none;
}

.brand__glyph {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  flex: none;
  width: 46px;
  height: 46px;
  padding-top: 9px;
  background: var(--board);
  border: 1px solid var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 66%, 66% 100%, 0 100%);
}

.brand__glyph-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.brand__glyph-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  color: var(--amber);
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand__name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--paper);
  transform: skewX(-3deg);
}

.brand__note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.brand--footer .brand__name { font-size: 23px; }

/* 移动目录按钮 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: rgba(14, 59, 58, 0.75);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.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: 2px;
  background: var(--cyan);
  transition: transform 0.24s var(--ease);
}

.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-4px) rotate(-45deg); }

/* 导航 */
.site-nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 242, 192, 0.4) transparent;
}

.site-nav__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}

.site-nav__count { color: rgba(159, 184, 175, 0.72); }

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 9px 12px;
  border-left: 2px solid transparent;
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-link__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.nav-link:hover {
  background: rgba(61, 242, 192, 0.08);
  border-left-color: var(--cyan);
  color: var(--cyan);
  transform: translateX(2px);
}

.nav-link:hover .nav-link__idx { color: var(--cyan); }

.nav-link[aria-current="page"] {
  background: linear-gradient(90deg, rgba(61, 242, 192, 0.18), rgba(61, 242, 192, 0) 82%);
  border-left-color: var(--cyan);
  color: var(--paper);
  font-weight: 700;
}

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

/* 数据舱 */
.site-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.data-capsule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: rgba(14, 59, 58, 0.55);
  border: 1px dashed rgba(247, 182, 63, 0.45);
}

.data-capsule::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 20px;
  height: 20px;
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.data-capsule__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--cyan);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 242, 192, 0.55); opacity: 1; }
  60% { box-shadow: 0 0 0 7px rgba(61, 242, 192, 0); opacity: 0.75; }
}

.capsule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
}

.capsule-cell { min-width: 0; }

.capsule-cell--wide { grid-column: 1 / -1; }

.capsule-cell dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.capsule-cell dd {
  margin: 3px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--cyan);
}

.capsule-cell--wide dd { font-size: 20px; color: var(--paper); }

.capsule-link {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1px dashed rgba(159, 184, 175, 0.55);
  padding-bottom: 2px;
}

.capsule-link:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

/* 滚动进度 */
.rail-progress {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 2px;
  background: rgba(61, 242, 192, 0.12);
  overflow: hidden;
}

.rail-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  transform-origin: top center;
  transform: scaleY(var(--p, 0));
}

/* ---------- 7. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: none;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn--primary {
  background: var(--cyan);
  color: #04211B;
  box-shadow: 5px 5px 0 rgba(61, 242, 192, 0.18);
}

.btn--primary:hover {
  background: #6BF7D2;
  transform: translateY(-2px);
  box-shadow: 5px 7px 0 rgba(61, 242, 192, 0.24);
}

.btn--ghost {
  background: rgba(14, 59, 58, 0.5);
  border-color: var(--line);
  color: var(--paper);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.site-nav__cta { width: 100%; }

/* ---------- 8. 容器与网格 ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 44px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }

/* ---------- 9. 标题组 / 标签 ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.section-head__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head__title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 900;
  letter-spacing: 0.01em;
  transform: skewX(-2deg);
}

.section-head__note {
  max-width: 64ch;
  color: var(--moss);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  background: rgba(14, 59, 58, 0.6);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--amber { border-color: rgba(247, 182, 63, 0.5); color: var(--amber); }
.tag--violet { border-color: rgba(143, 107, 255, 0.5); color: var(--violet); }
.tag--wine { border-color: rgba(124, 35, 64, 0.9); background: rgba(124, 35, 64, 0.35); color: #F6C7D6; }

/* ---------- 10. 面板 / 卡片 ---------- */
.panel {
  position: relative;
  padding: clamp(16px, 2vw, 26px);
  background: linear-gradient(180deg, rgba(14, 59, 58, 0.72), rgba(11, 47, 38, 0.88));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease);
}

.panel::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 26px;
  height: 26px;
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 242, 192, 0.5);
}

.panel--amber { border-color: rgba(247, 182, 63, 0.34); }
.panel--violet { border-color: rgba(143, 107, 255, 0.34); }
.panel--wine { background: linear-gradient(180deg, rgba(124, 35, 64, 0.5), rgba(11, 47, 38, 0.88)); }

/* ---------- 11. 图片容器基础规则 ---------- */
.media-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 59, 58, 0.95), rgba(5, 28, 23, 0.98)),
    repeating-linear-gradient(45deg, rgba(61, 242, 192, 0.08) 0 2px, transparent 2px 12px);
  border: 1px solid var(--line-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.06);
}

.media-frame--wide { aspect-ratio: 16 / 9; }
.media-frame--panorama { aspect-ratio: 21 / 9; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame--square { aspect-ratio: 1 / 1; }

.media-frame__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  background: rgba(5, 28, 23, 0.82);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.media-frame__caption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: var(--paper);
  font-size: 13px;
  text-shadow: 0 2px 10px rgba(5, 28, 23, 0.95);
}

/* ---------- 12. 面包屑 ---------- */
.breadcrumb {
  padding: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(159, 184, 175, 0.5);
}

.breadcrumb a {
  color: var(--moss);
  text-decoration: none;
}

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

/* ---------- 13. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(48px, 7vw, 96px);
  background: linear-gradient(180deg, rgba(33, 26, 68, 0.62) 0%, rgba(11, 47, 38, 0.5) 46%, rgba(5, 28, 23, 0.98) 100%);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(36px, 5vw, 66px) clamp(18px, 4vw, 44px) 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer-brand__tag {
  max-width: 34ch;
  color: var(--moss);
  font-size: 15px;
}

.footer-brand__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(159, 184, 175, 0.78);
}

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

.footer-col__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--paper);
  transform: skewX(-2deg);
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col__link {
  color: var(--moss);
  font-size: 15px;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 8px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-col__link:hover {
  color: var(--cyan);
  border-left-color: var(--cyan);
}

.round-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.round-strip__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.round-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.round-strip__item {
  padding: 5px 11px;
  background: rgba(11, 47, 38, 0.68);
  border: 1px solid var(--line-soft);
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.round-strip__item.is-current {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #04211B;
  font-weight: 700;
}

.round-strip__note {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(159, 184, 175, 0.8);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 28px;
  padding-top: 6px;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--moss);
}

.footer-address,
.footer-legal {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(159, 184, 175, 0.8);
}

.footer-legal { color: rgba(159, 184, 175, 0.68); }

/* ---------- 14. 平板 ---------- */
@media (max-width: 1099px) {
  body { padding-top: var(--topbar-h); }

  .site-header {
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--topbar-h);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: 100%;
    padding: 0 16px;
  }

  .brand__glyph { width: 38px; height: 38px; padding-top: 7px; }
  .brand__glyph-num { font-size: 18px; }
  .brand__name { font-size: 17px; }
  .brand__note { font-size: 10px; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    flex: none;
    width: min(88vw, 340px);
    padding: 22px 18px 26px;
    background: linear-gradient(180deg, #0B2F26 0%, #051C17 100%);
    border-right: 1px solid var(--line);
    visibility: hidden;
    transform: translateX(-104%);
    transition: transform 0.28s var(--ease), visibility 0.28s linear;
  }

  .site-nav[data-open] {
    visibility: visible;
    transform: translateX(0);
  }

  .rail-progress {
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;
    width: auto;
    height: 2px;
  }

  .rail-progress__bar {
    transform-origin: left center;
    transform: scaleX(var(--p, 0));
  }

  body.is-nav-open { overflow: hidden; }

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

/* ---------- 15. 网格折叠 ---------- */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 3; }
  .col-5 { grid-column: span 6; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 6; }
  .col-8 { grid-column: span 6; }
}

/* ---------- 16. 手机 ---------- */
@media (max-width: 620px) {
  body { font-size: 16px; }

  .brand__note { display: none; }

  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 { grid-column: span 2; }

  .footer-inner { grid-template-columns: minmax(0, 1fr); }
  .round-strip__note { margin-left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .btn { width: 100%; }

  .site-nav__cta { width: 100%; }
}

/* ---------- 17. 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .live-dot { animation: none; }
}
