/* ============================================================
   华体会赛场 · 共享样式表 /assets/site.css
   展览画册式布局 · 主场深绿 + 活力橙
   ============================================================ */

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

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

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

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

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

button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; }

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. 变量 ---------- */
:root {
  --c-night: #0B2B22;
  --c-home: #14503C;
  --c-line: #1F7A5A;
  --c-orange: #FF6A13;
  --c-orange-soft: #FFB25E;
  --c-ink: #0E1A24;
  --c-mist: #F2F4F3;
  --c-ash: #E8EDE6;
  --c-steel: #C8D2DC;
  --c-mute: #7A8B99;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC",
    Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", "IBM Plex Mono",
    Menlo, Consolas, "Courier New", monospace;

  --w-max: 1320px;
  --w-read: 720px;
  --rail: 244px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --glass-light: rgba(242, 244, 243, .78);
  --glass-dark: rgba(11, 43, 34, .82);

  --shadow-float: 0 18px 42px -24px rgba(14, 26, 36, .55);
  --shadow-soft: 0 10px 30px -22px rgba(14, 26, 36, .5);

  --ease: cubic-bezier(.22, .7, .28, 1);
}

/* ---------- 3. 中文排版基底 ---------- */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-ink);
  background-color: var(--c-mist);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--c-ink);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.8vw, 46px); }
h3 { font-size: clamp(20px, 2.2vw, 27px); line-height: 1.2; }
h4 { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.3; }

p { margin-bottom: 28px; max-width: var(--w-read); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 800; }

::selection {
  background: var(--c-orange);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 4. 通用容器与节奏 ---------- */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
  border-top: 1px solid rgba(200, 210, 220, .7);
}

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

.page-grid {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.rail {
  position: sticky;
  top: 104px;
}

.prose { max-width: var(--w-read); }

.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 600;
  color: var(--c-home);
  max-width: var(--w-read);
  margin-bottom: 28px;
}

.side-note {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-mute);
  border-left: 2px solid var(--c-orange-soft);
  padding-left: 16px;
  max-width: 36ch;
}

.divider-line {
  height: 1px;
  background: var(--c-steel);
  border: 0;
  margin-block: clamp(28px, 4vw, 48px);
}

.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;
}

/* ---------- 5. 标签与数字 ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-line);
  border: 1px solid rgba(31, 122, 90, .45);
  border-radius: var(--r-pill);
  padding: 4px 13px;
  margin-bottom: 18px;
}

.section-label--orange {
  color: var(--c-orange);
  border-color: rgba(255, 106, 19, .55);
}

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

.num--xl {
  display: block;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  color: var(--c-orange);
}

/* ---------- 6. 玻璃层与实色卡 ---------- */
.glass {
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(200, 210, 220, .85);
  border-radius: var(--r-md);
}

.glass--dark {
  background: var(--glass-dark);
  border-color: rgba(242, 244, 243, .14);
  color: var(--c-mist);
}

.glass--dark h2,
.glass--dark h3 { color: #fff; }

.card {
  background: #fff;
  border: 1px solid rgba(200, 210, 220, .85);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.4vw, 30px);
}

.card--dark {
  background: var(--c-home);
  border-color: transparent;
  color: rgba(242, 244, 243, .88);
}

.card--dark h3 { color: #fff; }

.card--accent {
  background: var(--c-ash);
  border-color: rgba(200, 210, 220, .7);
}

/* ---------- 7. 图片容器 ---------- */
.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid rgba(200, 210, 220, .6);
  background-color: var(--c-home);
  aspect-ratio: 16 / 10;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(31, 122, 90, .38) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(31, 122, 90, .38) 0 1px, transparent 1px 42px);
  opacity: .85;
  pointer-events: none;
}

.media-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.media-frame__caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(0deg, rgba(11, 43, 34, .9), rgba(11, 43, 34, 0));
}

/* ---------- 8. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 11px 21px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--c-ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease),
    border-color .2s var(--ease), transform .2s var(--ease);
}

.btn--primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 12px 26px -18px rgba(255, 106, 19, .95);
}

.btn--primary:hover {
  background: #ff7f33;
  transform: translateY(-1px);
}

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

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

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

.btn--block { width: 100%; }

/* ---------- 9. 页头 ---------- */
.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 200;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  background: var(--c-night);
  color: var(--c-mist);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform .2s var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(242, 244, 243, .94), rgba(242, 244, 243, .76));
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(200, 210, 220, .75);
  transition: box-shadow .24s var(--ease), background-color .24s var(--ease);
}

.site-header[data-shrunk="true"] {
  box-shadow: 0 16px 34px -28px rgba(14, 26, 36, .8);
}

.header-rail {
  max-width: var(--w-max);
  margin-inline: auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  transition: padding .24s var(--ease);
}

.site-header[data-shrunk="true"] .header-rail {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* 品牌 */
.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--c-ink);
}

.brand__mark {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--c-night);
  color: var(--c-orange);
  display: grid;
  place-items: center;
  transition: transform .24s var(--ease);
}

.brand__mark svg { width: 23px; height: 23px; }

.brand:hover .brand__mark { transform: rotate(-8deg); }

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.3;
  color: var(--c-mute);
  white-space: nowrap;
  max-height: 18px;
  overflow: hidden;
  transition: opacity .24s var(--ease), max-height .24s var(--ease);
}

.site-header[data-shrunk="true"] .brand__tag {
  opacity: 0;
  max-height: 0;
}

/* 悬浮胶囊导航 */
.nav-capsule {
  justify-self: center;
  max-width: 100%;
  padding: 5px;
  border-radius: var(--r-pill);
  background: var(--glass-dark);
  border: 1px solid rgba(242, 244, 243, .15);
  box-shadow: var(--shadow-float);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-capsule__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.nav-capsule__link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  color: rgba(242, 244, 243, .82);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.nav-capsule__link:hover {
  background: rgba(31, 122, 90, .55);
  color: #fff;
}

.nav-capsule__link[aria-current="page"] {
  background: var(--c-orange);
  color: #fff;
}

.site-header[data-shrunk="true"] .nav-capsule__link {
  padding: 7px 12px;
  font-size: 13px;
}

.nav-capsule__foot {
  display: none;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 244, 243, .16);
  gap: 8px;
}

.nav-capsule__foot .btn--ghost {
  border-color: rgba(242, 244, 243, .3);
  color: var(--c-mist);
}

.nav-capsule__foot .btn--ghost:hover {
  border-color: var(--c-orange-soft);
  color: #fff;
}

/* 右翼动作 */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 汉堡按钮 */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border-radius: 15px;
  border: 1px solid var(--c-steel);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--c-night);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }

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

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

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

/* 阅读进度 */
.header-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  overflow: hidden;
}

.header-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--c-orange);
}

/* ---------- 10. 面包屑 ---------- */
.breadcrumbs {
  padding-block: 16px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--c-mute);
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  margin-right: 8px;
  color: var(--c-steel);
}

.breadcrumbs__link {
  text-decoration: none;
  color: var(--c-mute);
}

.breadcrumbs__link:hover { color: var(--c-home); }

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

/* ---------- 11. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(64px, 9vw, 120px);
  padding-top: 12px;
  background: var(--c-night);
  color: rgba(242, 244, 243, .82);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background-image: repeating-linear-gradient(90deg,
    rgba(31, 122, 90, .9) 0 1px,
    transparent 1px 18px);
  opacity: .7;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 92px;
  height: 3px;
  background: var(--c-orange);
}

.site-footer p { max-width: none; }

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(48px, 6vw, 76px) clamp(32px, 4vw, 48px);
}

.footer-brand__mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--c-home);
  border: 1px solid rgba(31, 122, 90, .8);
}

.footer-brand__mark::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1px;
  background: rgba(31, 122, 90, .95);
}

.footer-brand__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--c-orange);
}

.footer-brand__name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 1.7;
  color: var(--c-orange-soft);
  margin-bottom: 20px;
}

.footer-brand__note {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(242, 244, 243, .7);
  max-width: 34ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-col__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col__heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 19, .85), rgba(200, 210, 220, .12));
}

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

.footer-link {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  color: rgba(242, 244, 243, .78);
  text-decoration: none;
  transition: color .18s var(--ease), transform .18s var(--ease);
}

.footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding-block: clamp(24px, 3vw, 34px) clamp(32px, 4vw, 44px);
  border-top: 1px solid rgba(200, 210, 220, .18);
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: rgba(242, 244, 243, .88);
}

.footer-service {
  font-size: 13px;
  color: rgba(200, 210, 220, .68);
}

.footer-legal {
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(200, 210, 220, .55);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 10px;
  font-size: 12px;
  color: rgba(200, 210, 220, .55);
}

.footer-update { letter-spacing: .02em; }

.footer-year {
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* ---------- 12. 章节导航（页面阶段使用） ---------- */
.rail-nav__list {
  border-left: 1px solid var(--c-steel);
}

.rail-nav__link {
  position: relative;
  display: block;
  padding: 9px 0 9px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-mute);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.rail-nav__link:hover { color: var(--c-home); }

.rail-nav__link[aria-current="true"],
.rail-nav__link[aria-current="page"] {
  color: var(--c-ink);
  font-weight: 800;
}

.rail-nav__link[aria-current="true"]::before,
.rail-nav__link[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-orange);
}

/* ---------- 13. 显现与返回顶部 ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

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

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 85;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(31, 122, 90, .65);
  background: var(--c-night);
  color: var(--c-mist);
  box-shadow: var(--shadow-float);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .24s var(--ease), transform .24s var(--ease),
    visibility .24s var(--ease), background-color .2s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--c-home);
  color: #fff;
}

.to-top__arrow {
  display: block;
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translate(1px, 1px);
}

/* ---------- 14. 响应式 ---------- */
@media (max-width: 1300px) {
  .brand__tag {
    opacity: 0;
    max-height: 0;
  }
}

@media (max-width: 1180px) {
  .header-actions .btn--ghost { display: none; }
}

@media (max-width: 1000px) {
  html { scroll-padding-top: 84px; }

  .header-rail {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 16px;
    min-height: 64px;
  }

  .brand { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .header-actions .btn { display: none; }

  .nav-toggle { display: grid; }

  .nav-capsule {
    position: fixed;
    top: 80px;
    left: 14px;
    right: 14px;
    z-index: 95;
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    padding: 14px;
    border-radius: var(--r-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s var(--ease), transform .24s var(--ease),
      visibility .24s var(--ease);
  }

  .site-header[data-open] .nav-capsule {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-capsule__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-capsule__link,
  .site-header[data-shrunk="true"] .nav-capsule__link {
    padding: 13px 16px;
    font-size: 16px;
  }

  .nav-capsule__foot { display: grid; }

  .page-grid { grid-template-columns: minmax(0, 1fr); }
  .rail { position: static; }

  .footer-top { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .footer-brand__note { max-width: none; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 16px; }
  .footer-meta { justify-content: flex-start; }
  .brand__name { font-size: 17px; }
  .brand__mark { width: 36px; height: 36px; border-radius: 12px; }
}

/* ---------- 15. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

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