/* =========================================================
   OB体育·新站 — /assets/site.css
   深空蓝数据控制台 · 共享层
   ========================================================= */

/* ---------- 设计令牌 ---------- */
:root {
  --c-bg: #0B1026;
  --c-bg-deep: #060818;
  --c-bg-2: #1A1A2E;
  --c-green: #39FF14;
  --c-orange: #FF6F00;
  --c-text: #E8ECF4;
  --c-text-2: #A0A8B8;
  --c-cyan: #4FC3F7;
  --c-line: #2A2F45;
  --c-paper: #F2E8D5;
  --c-amber: #FFD166;

  --font-body: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "Cascadia Code", Menlo, Consolas, "Liberation Mono", monospace;

  --shell: 1280px;
  --shell-pad: clamp(16px, 4vw, 48px);
  --section-space: clamp(48px, 8vw, 96px);

  --dur: 240ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font: inherit;
  color: inherit;
}

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

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

/* ---------- 工具类 ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section {
  padding-block: var(--section-space);
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--c-green);
  color: var(--c-bg-deep);
  border-radius: 4px;
  transform: translateY(-200%);
  transition: transform var(--dur) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- 滚动进度条 ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c-green), var(--c-amber));
  z-index: 2500;
  pointer-events: none;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.btn__label {
  display: inline-block;
}

.btn__ico {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.9em;
  line-height: 1;
}

.btn--neon {
  background: var(--c-green);
  color: var(--c-bg-deep);
}

.btn--neon:hover {
  background: #52ff2e;
  box-shadow: 0 6px 24px rgba(57, 255, 20, 0.25);
  transform: translateY(-1px);
}

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

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

.btn--sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
}

.btn--corner {
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

/* ---------- 头部 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg);
  transition: box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hdr-top {
  position: relative;
  border-bottom: 1px solid var(--c-line);
}

.hdr-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-green), rgba(57, 255, 20, 0));
  z-index: 1;
}

.hdr-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

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

.hdr-nav {
  background: var(--c-bg-2);
}

@media (min-width: 900px) {
  .hdr-nav {
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
  }
}

.hdr-nav__inner {
  position: relative;
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  background: var(--c-paper);
  color: var(--c-bg);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.brand__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--c-text-2);
}

/* ---------- 主导航 ---------- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  color: var(--c-text-2);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.site-nav__link:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.03);
}

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

.site-nav__link[aria-current="page"] {
  color: var(--c-text);
  border-bottom-color: var(--c-green);
}

.site-nav__link[aria-current="page"] .site-nav__idx {
  color: var(--c-green);
}

.site-nav__idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
  color: var(--c-cyan);
  transition: color var(--dur) var(--ease);
}

.site-nav__label {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* 版本芯片 */
.ver-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 7px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  background: var(--c-orange);
  color: var(--c-bg);
  text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background-color var(--dur) var(--ease);
}

.ver-chip:hover {
  background: #ff8a1e;
}

.ver-chip__dot {
  width: 6px;
  height: 6px;
  background: var(--c-bg);
  border-radius: 50%;
}

/* ---------- 移动端菜单开关 ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: var(--c-bg-2);
  transition: border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}

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

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-green);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

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

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

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

/* ---------- 头部响应式 ---------- */
@media (max-width: 899px) {
  .hdr-top__inner {
    min-height: 64px;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 6px 16px;
    border-top: 1px solid var(--c-line);
    background: var(--c-bg-2);
  }

  .site-nav[data-open] {
    display: flex;
    animation: navFadeIn 0.22s var(--ease);
  }

  .site-nav__link {
    justify-content: space-between;
    padding: 14px 6px;
    border-bottom: 1px solid var(--c-line);
    border-bottom-color: var(--c-line);
  }

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

  .ver-chip {
    margin-left: 0;
    align-self: flex-start;
    margin-top: 14px;
    margin-bottom: 4px;
  }
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 479px) {
  .brand__tag {
    display: none;
  }

  .brand__mark {
    font-size: 1rem;
    padding: 8px 10px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .hdr-download .btn__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .hdr-download .btn__ico {
    margin: 0;
  }
}

/* ---------- 页脚 ---------- */
.site-footer {
  position: relative;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
              var(--c-green) 0,
              var(--c-green) 160px,
              var(--c-orange) 160px,
              var(--c-orange) 220px,
              transparent 220px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-block: 56px 40px;
}

.footer-col {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 8px 10px;
  background: var(--c-paper);
  color: var(--c-bg);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand__name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-brand__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-text-2);
}

.footer-trust {
  max-width: 480px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.footer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text);
}

.footer-head__idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-green);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.footer-link {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  font-size: 0.9375rem;
  color: var(--c-text-2);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.footer-link::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-green);
  transition: transform var(--dur) var(--ease);
}

.footer-link:hover {
  color: var(--c-text);
}

.footer-link:hover::before {
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-line__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
}

.footer-line__value {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--c-text-2);
  overflow-wrap: anywhere;
}

.footer-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-text-2);
}

.footer-bottom {
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-line);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 20px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--c-text-2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal__link {
  font-size: 0.8125rem;
  color: var(--c-text-2);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.footer-legal__link:hover {
  color: var(--c-green);
}

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 599px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px 32px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    padding-block: 16px;
  }

  .footer-legal {
    gap: 16px;
  }
}

/* ---------- 通用组件：眉题与章节头 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--c-cyan);
}

.eyebrow::before {
  content: "//";
  color: var(--c-green);
  font-weight: 700;
}

.section-head {
  margin-bottom: 40px;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
  max-width: 20ch;
}

.section-desc {
  margin-top: 16px;
  max-width: 480px;
  font-size: 1rem;
  color: var(--c-text-2);
}

/* ---------- 通用组件：状态面板 ---------- */
.panel {
  position: relative;
  padding: 24px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 8px;
}

.panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 3px;
  background: var(--c-green);
  border-radius: 8px 0 0 0;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-cyan);
}

.panel__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.panel__body {
  font-size: 0.9375rem;
  color: var(--c-text-2);
}

/* ---------- 通用组件：标签 ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-text-2);
}

.chip--green {
  color: var(--c-green);
  border-color: rgba(57, 255, 20, 0.35);
}

.chip--orange {
  color: var(--c-orange);
  border-color: rgba(255, 111, 0, 0.35);
}

.chip--data {
  color: var(--c-cyan);
  border-color: rgba(79, 195, 247, 0.3);
}

/* ---------- 通用组件：栅格 ---------- */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 699px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- 通用组件：图片容器 ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 8px;
}

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

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

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

.img-frame--square {
  aspect-ratio: 1 / 1;
}

.img-frame--wide {
  aspect-ratio: 21 / 9;
}

.img-frame__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--c-line);
}

/* ---------- 通用组件：标签页 ---------- */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}

.tabs__btn {
  appearance: none;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}

.tabs__btn:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.03);
}

.tabs__btn[aria-selected="true"] {
  color: var(--c-text);
  border-bottom-color: var(--c-green);
}

.tabs__panel {
  color: var(--c-text-2);
}

/* ---------- 通用组件：检索框 ---------- */
.search-bar {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 6px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.search-bar:focus-within {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.15);
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  color: var(--c-text);
}

.search-bar__input::placeholder {
  color: var(--c-text-2);
  opacity: 0.7;
}

.search-bar__btn {
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--c-green);
  color: var(--c-bg);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease);
}

.search-bar__btn:hover {
  background: #52ff2e;
}

/* ---------- 通用组件：迷你日历 ---------- */
.mini-cal {
  border: 1px solid var(--c-line);
  background: var(--c-bg-2);
  border-radius: 8px;
  overflow: hidden;
}

.mini-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--c-cyan);
  border-bottom: 1px solid var(--c-line);
}

.mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px 12px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  color: var(--c-text);
}

.mini-cal__dow {
  padding-block: 4px 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--c-text-2);
}

.mini-cal__day {
  padding-block: 6px;
  border-radius: 4px;
}

.mini-cal__day--muted {
  color: var(--c-text-2);
  opacity: 0.45;
}

.mini-cal__day--today {
  background: var(--c-green);
  color: var(--c-bg);
  font-weight: 700;
}

/* ---------- 通用组件：面包屑 ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 16px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--c-text-2);
}

.breadcrumb a {
  color: var(--c-cyan);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

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

.breadcrumb__sep {
  color: var(--c-line);
}

.breadcrumb__current {
  color: var(--c-text);
}

/* ---------- 通用组件：斜纹装饰 ---------- */
.diag-stripes {
  height: 6px;
  background: repeating-linear-gradient(45deg,
              var(--c-green) 0,
              var(--c-green) 6px,
              transparent 6px,
              transparent 12px);
  opacity: 0.18;
}

/* ---------- 滚动显现 ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease),
              transform 0.5s var(--ease);
}

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

/* ---------- 减弱动效 ---------- */
@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;
  }
}
