/* ============================================================
   小鸟体育看台 — 共享样式 / assets/site.css
   DNA：看台视角 · 数据叙事 · 12° 斜向 · 玻璃层与实色层并置
   ============================================================ */

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

* { margin: 0; }

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

body { min-height: 100vh; }

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

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

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

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

:focus-visible {
  outline: 2px solid #B7FF3C;
  outline-offset: 3px;
}

/* ---------- 2. 变量 ---------- */
:root {
  /* 色彩节奏 */
  --bg: #0E1116;
  --bg-2: #171B22;
  --line: #232A34;
  --blue: #1F6FEB;
  --blue-deep: #0B3C8C;
  --orange: #FF6B1A;
  --lime: #B7FF3C;
  --violet: #7C4DFF;
  --ink: #F2F5F8;
  --muted: #9AA7B8;

  /* 尺寸 */
  --shell: 1280px;
  --pad: clamp(16px, 4vw, 40px);
  --skew: -12deg;
  --radius: 2px;

  /* 字号 5 档 */
  --fs-1: clamp(56px, 10.5vw, 160px);
  --fs-2: clamp(36px, 6vw, 72px);
  --fs-3: clamp(26px, 3.6vw, 40px);
  --fs-4: 22px;
  --fs-5: 15px;

  /* 动效 */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-in: 260ms;

  /* 字体 */
  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "IBM Plex Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

/* ---------- 3. 基础排版 ---------- */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-5);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 900;
  overflow-wrap: break-word;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.num-lg {
  font-family: var(--font-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-3);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* 标题尺 */
.t-display {
  font-size: var(--fs-1);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.t-band {
  font-size: var(--fs-2);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.t-block {
  font-size: var(--fs-3);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.t-outline {
  color: var(--orange);
}

@supports (-webkit-text-stroke: 1px orange) {
  .t-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--orange);
  }
}

/* ---------- 4. 壳层与节奏 ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(48px, 7vw, 96px); }

.band {
  position: relative;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.slice {
  height: clamp(24px, 4vw, 56px);
  background: var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* 12 列不对称网格 */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
}

.col-main { grid-column: 1 / span 7; }
.col-side { grid-column: 8 / span 5; }

/* ---------- 5. 组件 ---------- */
/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: var(--fs-5);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 6px 13px; font-size: 13px; }

.btn--accent {
  background: var(--orange);
  color: #0E1116;
}

.btn--accent:hover { background: #FF8A49; }

.btn--solid {
  background: var(--blue);
  color: #FFFFFF;
}

.btn--solid:hover { background: #3A83F0; }

.btn--lime {
  background: var(--lime);
  color: #0E1116;
}

.btn--lime:hover { background: #CBFF70; }

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--blue);
  background: rgba(31, 111, 235, 0.12);
}

/* 标签 */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  white-space: nowrap;
}

.tag--live {
  color: var(--lime);
  border-color: rgba(183, 255, 60, 0.4);
  background: rgba(183, 255, 60, 0.08);
}

.tag--hot {
  color: var(--orange);
  border-color: rgba(255, 107, 26, 0.4);
  background: rgba(255, 107, 26, 0.08);
}

/* 面包屑 */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 20px;
  font-size: 13px;
  color: var(--muted);
}

.crumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crumbs li + li::before {
  content: "/";
  color: var(--line);
}

.crumbs a:hover { color: var(--lime); }

.crumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* 正文 */
.prose {
  max-width: 42ch;
  font-size: var(--fs-5);
  line-height: 1.8;
  color: var(--ink);
}

.prose > * + * { margin-top: 1.4em; }

.prose h2 {
  font-size: var(--fs-3);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: var(--fs-4);
  font-weight: 800;
}

.prose strong { color: var(--lime); font-weight: 800; }

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul { display: grid; gap: 0.5em; }

.prose li {
  padding-left: 18px;
  position: relative;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--blue);
  transform: skewX(var(--skew));
}

/* 竖排旁注 */
.side-note {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  user-select: none;
}

/* 数据块 */
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-3);
  line-height: 1;
  color: var(--lime);
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
}

/* 玻璃层 */
.glass {
  background: rgba(23, 27, 34, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--violet);
  border-radius: var(--radius);
  padding: 18px;
}

/* 图片容器基类 */
.media {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--4x5 { aspect-ratio: 4 / 5; }
.media--1x1 { aspect-ratio: 1 / 1; }

.media__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--ink);
  background: linear-gradient(0deg, rgba(14, 17, 22, 0.88), rgba(14, 17, 22, 0));
  pointer-events: none;
}

.media--cut::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: rgba(23, 27, 34, 0.72);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-top: 1px solid var(--violet);
  clip-path: polygon(0 22px, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* 可展开索引 */
.xlist { border-top: 1px solid var(--line); }

.xitem { border-bottom: 1px solid var(--line); }

.xitem__head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  text-align: left;
}

.xitem__idx {
  font-family: var(--font-mono);
  font-size: var(--fs-5);
  font-weight: 500;
  color: var(--blue);
}

.xitem__name {
  font-size: var(--fs-4);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.xitem__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.xitem[data-open] .xitem__idx { color: var(--lime); }

.xitem__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms var(--ease);
}

.xitem[data-open] .xitem__body { grid-template-rows: 1fr; }

.xitem__body > div { overflow: hidden; }

.xitem__body .prose { padding-bottom: 20px; }

/* 横向轨道 */
.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.rail > * {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
}

.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); }

/* 滚动显现 */
.reveal { opacity: 1; transform: none; }

html.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-in) var(--ease), transform var(--t-in) var(--ease);
}

html.has-js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 回到顶部 */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
  z-index: 60;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.to-top:hover {
  color: var(--lime);
  border-color: var(--lime);
}

/* ---------- 6. 跳过链接 ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 16px;
  font-weight: 800;
  color: #0E1116;
  background: var(--lime);
  border-radius: var(--radius);
  transform: translateY(-220%);
  transition: transform 0.18s var(--ease);
}

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

/* ---------- 7. 页头 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(14, 17, 22, 0.96);
  border-bottom: 1px solid var(--line);
}

/* 赔率条 */
.odds {
  max-height: 56px;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  transition: max-height var(--t-in) var(--ease), opacity 0.2s linear;
}

.odds[data-compact] {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.odds__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 56px;
}

.odds__label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

.odds__label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 255, 60, 0.16);
}

.odds__list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.odds__list::-webkit-scrollbar { display: none; }

.odds__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--muted);
}

.odds__league {
  padding: 1px 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.odds__team { color: #C7D1DE; }

.odds__num {
  font-size: var(--fs-5);
  color: var(--orange);
  transition: color 0.2s var(--ease);
}

@keyframes limeflash {
  0% {
    color: var(--lime);
    text-shadow: 0 0 14px rgba(183, 255, 60, 0.65);
  }
  100% {
    color: var(--orange);
    text-shadow: none;
  }
}

.odds__num.is-flash { animation: limeflash 0.9s var(--ease); }

.odds__stamp {
  flex-shrink: 0;
  padding: 2px 9px;
  font-size: 11px;
  color: var(--lime);
  background: rgba(183, 255, 60, 0.1);
  border: 1px solid rgba(183, 255, 60, 0.35);
  border-radius: var(--radius);
}

/* 导航行 */
.bar { position: relative; }

.bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}

.brand__mark i {
  display: block;
  width: 5px;
  border-radius: 1px;
  background: var(--blue);
  transform: skewX(var(--skew));
}

.brand__mark i:nth-child(1) { height: 58%; }
.brand__mark i:nth-child(2) { height: 100%; background: var(--orange); }
.brand__mark i:nth-child(3) { height: 76%; }

.brand__text {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.bar__meter {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar__meter b {
  color: var(--ink);
  font-weight: 500;
}

.bar__sep {
  color: var(--line);
  margin-inline: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  flex-shrink: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 20px);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  font-size: var(--fs-5);
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link[aria-current="page"] { color: var(--ink); }

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--lime);
}

.nav__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: border-color 0.18s var(--ease);
}

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

.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 20px;
}

.nav-toggle__bars i {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.site-header[data-open] .nav-toggle__bars i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-open] .nav-toggle__bars i:nth-child(2) { opacity: 0; }

.site-header[data-open] .nav-toggle__bars i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 滚动进度线 */
.scroll-line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  z-index: 2;
  pointer-events: none;
}

/* ---------- 8. 页脚 ---------- */
.site-footer {
  margin-top: clamp(56px, 8vw, 120px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(40px, 6vw, 72px);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand--footer .brand__text { font-size: 20px; }

.footer__micro {
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-5);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer__title::before {
  content: "";
  width: 3px;
  height: 14px;
  background: var(--orange);
  transform: skewX(var(--skew));
}

.footer__list {
  display: grid;
  gap: 10px;
  font-size: var(--fs-5);
  color: var(--muted);
}

.footer__list a { transition: color 0.18s var(--ease); }

.footer__list a:hover { color: var(--lime); }

.footer__notice {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
  color: #7E8B9C;
}

.footer__contact {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.footer__contact li {
  display: grid;
  gap: 2px;
}

.footer__contact span {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer__contact b {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.footer__contact b.mono { font-family: var(--font-mono); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

.footer__legal {
  font-size: 13px;
  color: var(--muted);
}

.footer__legal .mono { color: #C7D1DE; }

.region-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  white-space: nowrap;
}

.region-mark::before {
  content: "";
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, var(--blue) 0 50%, var(--orange) 50% 100%);
  transform: rotate(45deg) skewX(-6deg);
  flex-shrink: 0;
}

/* ---------- 9. 响应式 ---------- */
@media (max-width: 1180px) {
  .bar__meter { display: none; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 24px 32px;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    overflow-y: auto;
    transform: translateX(101%);
    transition: transform var(--t-in) var(--ease);
    z-index: 80;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 14px 4px;
    font-size: var(--fs-4);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav__link::after { display: none; }

  .nav__link[aria-current="page"] { color: var(--lime); }

  .nav__cta {
    width: 100%;
    margin-top: 22px;
    padding-block: 14px;
  }

  .site-header[data-open] { z-index: 120; }

  .site-header[data-open]::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 17, 22, 0.72);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 75;
  }

  .nav-toggle { position: relative; z-index: 90; }

  .grid12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .col-main { grid-column: 1 / -1; }
  .col-side { grid-column: 1 / -1; }

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

@media (max-width: 720px) {
  body { line-height: 1.8; }

  .odds__inner { gap: 12px; }
  .odds__stamp { display: none; }
  .odds__list { gap: 18px; }

  .bar__inner { height: 64px; }
  .brand__text { font-size: 17px; }
  .brand__mark { height: 22px; }

  .xitem__head {
    grid-template-columns: 40px minmax(0, 1fr);
    row-gap: 6px;
  }

  .xitem__meta { grid-column: 2; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- 10. 无障碍与降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  html.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
