/* ==========================================================
   KAIYUN体育在线 / kaiyun赛场 — 共享样式 /assets/site.css
   技术蓝图网格 · 数据指挥舱 · 左侧导航轨
   ========================================================== */

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

/* ---------- 2. CSS Variables ---------- */
:root {
  --c-deep: #0B1B3D;
  --c-purple: #7030A0;
  --c-green: #39FF14;
  --c-orange: #FF6A00;
  --c-cream: #FFF8E7;
  --c-dark: #2B1B3D;
  --c-blue: #1E8FFF;
  --c-lime: #C0FF00;

  --c-text: #FFF8E7;
  --c-text-dim: rgba(255, 248, 231, 0.72);
  --c-text-dark: #0B1B3D;
  --c-line: rgba(255, 248, 231, 0.18);
  --c-line-strong: rgba(255, 248, 231, 0.35);

  --font-head: 'Exo 2', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Roboto Mono', 'SF Mono', 'Consolas', 'Liberation Mono', monospace;

  --header-w: 280px;
  --header-h-mobile: 64px;
  --gap: clamp(20px, 3vw, 32px);
  --max-w: 1360px;

  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. Base & Typography ---------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background-color: var(--c-deep);
  background-image:
    radial-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 231, 0.025) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
  overflow-x: hidden;
  padding-top: var(--header-h-mobile);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
}

::selection {
  background: var(--c-green);
  color: var(--c-deep);
}

#main-content {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--c-text);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: clamp(18px, 1.8vw, 22px);
}

p {
  margin-bottom: 1em;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-text-dim);
  text-transform: uppercase;
}

/* ---------- 4. Layout ---------- */
.container {
  width: min(100% - 2 * var(--gap), var(--max-w));
  margin-inline: auto;
}

.section {
  padding-block: clamp(56px, 8vw, 100px);
  position: relative;
}

.section--tight {
  padding-block: clamp(32px, 4vw, 56px);
}

.section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-green);
  flex-shrink: 0;
}

.section__title {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section__lead {
  font-size: 18px;
  color: var(--c-text-dim);
  max-width: 60ch;
}

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

[class*='col-span-'] {
  grid-column: span 12;
}

/* ---------- 5. Buttons & CTA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn--primary {
  background: var(--c-green);
  color: var(--c-text-dark);
  border-color: var(--c-green);
}

.btn--primary:hover {
  background: transparent;
  color: var(--c-green);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--c-orange);
  color: var(--c-text-dark);
  border-color: var(--c-orange);
}

.btn--accent:hover {
  background: transparent;
  color: var(--c-orange);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-line-strong);
}

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

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-green);
  color: var(--c-text-dark);
  border: 2px solid var(--c-green);
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.site-cta:hover {
  background: transparent;
  color: var(--c-green);
}

.site-cta__arrow {
  transition: transform 0.25s var(--ease);
}

.site-cta:hover .site-cta__arrow {
  transform: translateX(4px);
}

/* ---------- 6. Breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-text-dim);
  margin-bottom: clamp(24px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin: 0 8px;
  color: var(--c-green);
}

.breadcrumb__item[aria-current='page'] {
  color: var(--c-cream);
  font-weight: 600;
}

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

/* ---------- 7. Figure / Image Containers ---------- */
.figure {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(112, 48, 160, 0.35) 0%, rgba(11, 27, 61, 0.8) 100%);
  border: 1px solid var(--c-line);
}

.figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 248, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 231, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  pointer-events: none;
}

.figure--16x9 {
  aspect-ratio: 16 / 9;
}

.figure--4x3 {
  aspect-ratio: 4 / 3;
}

.figure--1x1 {
  aspect-ratio: 1;
}

.figure--2x1 {
  aspect-ratio: 2 / 1;
}

.figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-cream);
  background: rgba(11, 27, 61, 0.85);
  padding: 6px 12px;
  border-left: 2px solid var(--c-green);
}

/* ---------- 8. Cards & Boards ---------- */
.card {
  background: var(--c-cream);
  color: var(--c-text-dark);
  border: 1px solid rgba(11, 27, 61, 0.1);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card--dark {
  background: var(--c-dark);
  color: var(--c-text);
}

.card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  color: inherit;
}

.card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-orange);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.board {
  background: rgba(255, 248, 231, 0.04);
  border: 1px solid var(--c-line);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

.board::before,
.board::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.board::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--c-green);
  border-left: 3px solid var(--c-green);
}

.board::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 3px solid var(--c-orange);
  border-right: 3px solid var(--c-orange);
}

.board__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.board__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-green);
  letter-spacing: 0.12em;
}

.board__term {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-text-dim);
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 2px solid var(--c-green);
}

/* ---------- 9. Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 14px;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
}

th {
  color: var(--c-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- 10. Scroll Reveal ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

html.js [data-reveal][data-revealed='true'] {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 11. Header ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 6000;
  pointer-events: none;
}

[data-scroll-progress] {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--c-green), var(--c-blue));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 9000;
  background: var(--c-green);
  color: var(--c-text-dark);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 20px;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--c-purple);
  border-bottom: 2px solid rgba(255, 248, 231, 0.25);
  overflow-y: auto;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  min-height: var(--header-h-mobile);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__meta {
  display: none;
}

.site-cta--desktop {
  display: none;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--c-green);
  color: var(--c-text-dark);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

.site-brand__mark::after {
  content: '';
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  background: var(--c-orange);
}

.site-brand__block {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.site-brand__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--c-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-brand__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 248, 231, 0.3);
  transition: border-color 0.25s;
}

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

.nav-toggle__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-cream);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  width: min(80vw, 320px);
  background: var(--c-purple);
  border-right: 2px solid rgba(255, 248, 231, 0.25);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  padding: calc(var(--header-h-mobile) + 16px) 20px 24px;
  display: flex;
  flex-direction: column;
}

.site-nav[data-open='true'] {
  transform: translateX(0);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
}

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

.site-nav__item {
  border-bottom: 1px solid rgba(255, 248, 231, 0.14);
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  color: rgba(255, 248, 231, 0.85);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.site-nav__link:hover {
  background: rgba(255, 248, 231, 0.08);
  color: var(--c-green);
}

.site-nav__link[aria-current='page'] {
  color: var(--c-green);
  border-left-color: var(--c-green);
  background: rgba(57, 255, 20, 0.08);
}

.site-nav__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 248, 231, 0.4);
  min-width: 22px;
}

.site-nav__label {
  display: block;
  line-height: 1.2;
}

.site-nav__arrow {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}

.site-nav__link:hover .site-nav__arrow,
.site-nav__link:focus-visible .site-nav__arrow {
  opacity: 1;
  transform: translateX(0);
}

.site-nav__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 231, 0.14);
}

.site-nav__footer .site-cta {
  width: 100%;
}

.site-header__coord {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 231, 0.5);
}

.site-header__status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

body.nav-open {
  overflow: hidden;
}

/* ---------- 12. Footer ---------- */
.site-footer {
  position: relative;
  background: var(--c-dark);
  border-top: 1px solid rgba(255, 248, 231, 0.2);
  color: var(--c-text);
  padding-top: clamp(48px, 7vw, 80px);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-purple) 50%, transparent 100%);
  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.site-footer__brand-col,
.site-footer__contact-col,
.site-footer__links-col {
  grid-column: span 12;
}

.site-footer__trust {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 248, 231, 0.55);
  border-left: 2px solid var(--c-orange);
  padding-left: 14px;
  max-width: 44ch;
}

.site-footer__heading {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__heading::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255, 248, 231, 0.2);
  flex: 1;
}

.site-footer__list,
.site-footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-orange);
  flex-shrink: 0;
  min-width: 44px;
}

.site-footer__value {
  color: rgba(255, 248, 231, 0.85);
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 248, 231, 0.85);
  transition: color 0.2s;
}

.site-footer__link::before {
  content: '→';
  color: var(--c-green);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: transform 0.2s;
}

.site-footer__link:hover {
  color: var(--c-green);
}

.site-footer__link:hover::before {
  transform: translateX(3px);
}

.site-footer__bottom {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 248, 231, 0.5);
  text-align: center;
}

.site-footer__copyright,
.site-footer__icp {
  margin: 0;
}

/* ---------- 13. Responsive: Tablet (≥768px) ---------- */
@media (min-width: 768px) {
  .col-span-2 {
    grid-column: span 2;
  }
  .col-span-3 {
    grid-column: span 3;
  }
  .col-span-4 {
    grid-column: span 4;
  }
  .col-span-5 {
    grid-column: span 5;
  }
  .col-span-6 {
    grid-column: span 6;
  }
  .col-span-7 {
    grid-column: span 7;
  }
  .col-span-8 {
    grid-column: span 8;
  }
  .col-span-9 {
    grid-column: span 9;
  }
  .col-span-10 {
    grid-column: span 10;
  }
  .col-span-12 {
    grid-column: span 12;
  }

  .site-footer__brand-col {
    grid-column: span 4;
  }
  .site-footer__contact-col {
    grid-column: span 5;
  }
  .site-footer__links-col {
    grid-column: span 3;
  }
}

/* ---------- 14. Responsive: Desktop (≥1024px) ---------- */
@media (min-width: 1024px) {
  body {
    margin-left: var(--header-w);
    padding-top: 0;
  }

  .scroll-progress {
    left: var(--header-w);
  }

  .site-header {
    width: var(--header-w);
    right: auto;
    height: 100vh;
    border-bottom: none;
    border-right: 2px solid rgba(255, 248, 231, 0.25);
    display: flex;
    flex-direction: column;
    background-image:
      linear-gradient(rgba(255, 248, 231, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 248, 231, 0.045) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .site-header__top {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px 0;
    min-height: auto;
  }

  .site-header__actions {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-cta--desktop {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    box-shadow: none;
    border-right: none;
    background: transparent;
    overflow: visible;
    padding: 40px 20px;
    flex: 1;
    z-index: auto;
    transition: none;
  }

  .site-nav[data-open='true'] {
    box-shadow: none;
  }

  .site-nav__footer {
    display: none;
  }

  .site-nav__link {
    padding: 14px 10px;
    font-size: 17px;
  }

  .site-header__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 248, 231, 0.14);
    flex-shrink: 0;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- 15. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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