/* =========================================================
   乐投会馆 · 全站共享样式
   /assets/site.css
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg-deep: #0B0721;
  --bg-panel: #1C1545;
  --bg-soft: #2A216B;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F0D488;
  --accent-orange: #FF6A00;
  --text-primary: #F5F2FF;
  --text-secondary: #B9B2E0;
  --text-muted: #7A72A8;
  --border-gold: rgba(212, 175, 55, 0.4);
  --font-heading: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-index: "JetBrains Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-inner-h: 60px;
  --radius-card: 18px 26px 18px 26px;
  --radius-btn: 6px 18px 6px 18px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(42, 33, 107, .55), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(212, 175, 55, .07), transparent 24%),
    radial-gradient(circle at 72% 85%, rgba(255, 106, 0, .05), transparent 26%),
    radial-gradient(circle at 8% 78%, rgba(28, 21, 69, .6), transparent 30%),
    radial-gradient(rgba(212, 175, 55, .13) 1px, transparent 1.6px);
  background-size: auto, auto, auto, auto, 220px 220px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.nav-locked { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

p { margin: 0 0 1em; }

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

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

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

::selection { background: rgba(255, 106, 0, .55); color: #fff; }

:focus-visible { outline: 2px solid var(--accent-orange); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(212, 175, 55, .55), rgba(42, 33, 107, .95)); border-radius: 999px; border: 2px solid var(--bg-deep); }

/* ---------- 布局容器 ---------- */
.container { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }
.container-narrow { width: min(880px, calc(100% - 32px)); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tight { padding-block: clamp(28px, 4vw, 48px); }

.grid { display: grid; gap: 24px; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 首屏与文本索引 ---------- */
.page-hero { position: relative; isolation: isolate; padding-block: clamp(64px, 10vw, 128px) clamp(40px, 6vw, 80px); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 22% 22%, rgba(42, 33, 107, .55), transparent 46%), radial-gradient(circle at 82% 40%, rgba(212, 175, 55, .09), transparent 32%); }

.hero-note { margin-bottom: 14px; font-family: var(--font-index); font-size: 13px; letter-spacing: .28em; color: var(--accent-gold); }

.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-family: var(--font-index); font-size: 13px; font-weight: 600; letter-spacing: .32em; color: var(--accent-gold); text-transform: uppercase; }
.section-label::before { content: ""; flex: none; width: 28px; height: 1px; background: linear-gradient(90deg, var(--accent-gold), transparent); }
.section-label::after { content: "/"; flex: none; color: var(--accent-orange); font-weight: 400; letter-spacing: 0; }

.page-title { margin-bottom: 10px; font-size: clamp(34px, 5vw, 56px); line-height: 1.18; letter-spacing: .04em; }
.page-intro { max-width: 720px; margin-bottom: 28px; font-size: 17px; color: var(--text-secondary); }

.index-num { display: inline-block; font-family: var(--font-index); font-size: clamp(30px, 4.5vw, 58px); font-weight: 700; line-height: 1; letter-spacing: .04em; color: transparent; -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, .65); }

/* ---------- 按钮 ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius-btn); font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: .08em; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .2s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent-orange), #FF8A2A); color: #fff; box-shadow: 0 8px 22px rgba(255, 106, 0, .24); border-color: rgba(255, 106, 0, .5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 106, 0, .4); }
.btn-gold { background: transparent; border-color: var(--border-gold); color: var(--accent-gold-light); }
.btn-gold:hover { background: rgba(212, 175, 55, .1); border-color: var(--accent-gold); color: var(--accent-gold-light); }
.btn-ghost { background: transparent; border-color: rgba(245, 242, 255, .25); color: var(--text-secondary); }
.btn-ghost:hover { border-color: var(--text-primary); color: var(--text-primary); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* ---------- 卡片与数据 ---------- */
.card { position: relative; padding: 28px; background: linear-gradient(165deg, rgba(42, 33, 107, .32), rgba(28, 21, 69, .72) 55%, rgba(11, 7, 33, .55)); border: 1px solid var(--border-gold); border-radius: var(--radius-card); overflow: hidden; transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease); }
.card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 1px; background: linear-gradient(90deg, transparent, rgba(240, 212, 136, .8), transparent); opacity: .55; }
.card-hover:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, .72); box-shadow: 0 24px 48px rgba(11, 7, 33, .5), 0 0 0 1px rgba(212, 175, 55, .14); }

.data-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border-gold); border-radius: 14px; overflow: hidden; background: rgba(28, 21, 69, .5); font-size: 14px; }
.data-table th { padding: 12px 16px; font-family: var(--font-index); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-align: left; color: var(--accent-gold); background: rgba(212, 175, 55, .07); border-bottom: 1px solid var(--border-gold); }
.data-table td { padding: 12px 16px; border-bottom: 1px solid rgba(212, 175, 55, .13); color: var(--text-secondary); }
.data-table tbody tr:last-child td { border-bottom: none; }

.notice-box { padding: 18px 22px; border: 1px solid var(--border-gold); border-left: 3px solid var(--accent-gold); border-radius: 6px 16px 6px 16px; background: rgba(212, 175, 55, .05); color: var(--text-secondary); font-size: 14px; }
.notice-box strong { color: var(--accent-gold-light); }

.tag { display: inline-flex; align-items: center; gap: 6px; padding: 3px 12px; border: 1px solid var(--border-gold); border-radius: 4px 12px 4px 12px; background: rgba(212, 175, 55, .07); font-family: var(--font-index); font-size: 12px; letter-spacing: .08em; color: var(--accent-gold-light); }

.chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1px solid rgba(212, 175, 55, .32); border-radius: 999px; background: transparent; font-family: var(--font-body); font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: background-color .25s, border-color .25s, color .25s, box-shadow .25s; }
.chip:hover { background: rgba(212, 175, 55, .08); border-color: rgba(212, 175, 55, .7); color: var(--accent-gold-light); }
.chip.is-active { background: linear-gradient(135deg, rgba(212, 175, 55, .22), rgba(255, 106, 0, .15)); border-color: var(--accent-gold); color: var(--accent-gold-light); box-shadow: 0 4px 16px rgba(212, 175, 55, .12); }

/* ---------- 图片占位 ---------- */
.img-frame { position: relative; display: block; overflow: hidden; background: linear-gradient(135deg, #171040, #241A56); border: 1px solid var(--border-gold); border-radius: 16px 24px 16px 24px; }
.img-frame--16x9 { aspect-ratio: 16 / 9; }
.img-frame--4x3 { aspect-ratio: 4 / 3; }
.img-frame--1x1 { aspect-ratio: 1 / 1; }
.img-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-frame::after { content: attr(data-label); position: absolute; left: 14px; top: 12px; z-index: 2; padding: 3px 10px; font-family: var(--font-index); font-size: 11px; letter-spacing: .18em; color: var(--accent-gold-light); background: rgba(11, 7, 33, .62); border: 1px solid var(--border-gold); border-radius: 999px; }
.img-frame .img-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 16px 10px; font-size: 12px; color: var(--text-secondary); background: linear-gradient(transparent, rgba(11, 7, 33, .88)); }

/* ---------- 面包屑 ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; margin: 0 0 24px; font-family: var(--font-index); font-size: 13px; color: var(--text-muted); }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before { content: "/"; margin: 0 12px; color: var(--text-muted); opacity: .65; }
.breadcrumbs a { color: var(--text-secondary); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--accent-gold-light); }
.breadcrumbs [aria-current="page"] { color: var(--accent-gold-light); }

/* ---------- 头部：悬浮胶囊浮岛 ---------- */
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 500; padding: 12px 20px; border-radius: var(--radius-btn); background: var(--accent-orange); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; box-shadow: 0 8px 24px rgba(255, 106, 0, .35); transition: top .28s var(--ease); }
.skip-link:focus-visible { top: 14px; outline: none; }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 400; width: 0; height: 3px; pointer-events: none; background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-gold-light)); box-shadow: 0 0 12px rgba(212, 175, 55, .6); }

.site-header { position: sticky; top: 0; z-index: 120; padding: 12px 0; background: linear-gradient(180deg, rgba(11, 7, 33, .72), rgba(11, 7, 33, .28) 72%, transparent); }

.header-inner { position: relative; display: flex; align-items: center; gap: 14px; width: min(1240px, calc(100% - 32px)); min-height: var(--header-inner-h); margin-inline: auto; padding: 8px 10px 8px 16px; background: rgba(28, 21, 69, .72); border: 1px solid var(--border-gold); border-radius: 999px; box-shadow: 0 12px 32px rgba(11, 7, 33, .45), inset 0 1px 0 rgba(240, 212, 136, .08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.brand-seal { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--border-gold); border-radius: 8px 16px 8px 16px; font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--accent-gold); background: linear-gradient(145deg, rgba(212, 175, 55, .14), rgba(42, 33, 107, .45)); transition: box-shadow .3s var(--ease), border-color .3s; }
.brand:hover .brand-seal { border-color: var(--accent-gold); box-shadow: 0 0 18px rgba(212, 175, 55, .3); }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; letter-spacing: .12em; color: var(--text-primary); }
.brand-suffix { margin-top: 2px; font-family: var(--font-index); font-size: 11px; font-weight: 400; letter-spacing: .42em; color: var(--accent-gold); }
.brand-idx { margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--border-gold); font-family: var(--font-index); font-size: 11px; letter-spacing: .16em; color: var(--text-muted); }

.site-nav { display: flex; flex: 1; min-width: 0; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { display: inline-flex; align-items: center; min-height: 36px; padding: 6px 16px; border-radius: 999px; font-size: 14px; letter-spacing: .04em; color: var(--text-secondary); text-decoration: none; transition: color .25s, background-color .25s, box-shadow .25s; }
.nav-link:hover { color: var(--accent-gold-light); background-color: rgba(212, 175, 55, .1); }
.nav-link[aria-current="page"] { font-weight: 600; color: var(--accent-gold-light); background-color: rgba(212, 175, 55, .12); box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .3); }

.btn-header-cta { flex-shrink: 0; padding: 8px 20px; font-size: 14px; letter-spacing: .1em; }

.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--border-gold); border-radius: 50%; background: rgba(28, 21, 69, .6); cursor: pointer; transition: border-color .25s, background-color .25s; }
.nav-toggle:hover { border-color: var(--accent-gold); background: rgba(42, 33, 107, .8); }
.nav-toggle-bar { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--accent-gold-light); opacity: 1; transition: transform .3s var(--ease), opacity .25s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) 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(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .brand-idx { display: none; }
  .nav-link { padding-inline: 12px; }
}

@media (max-width: 960px) {
  .site-header { padding-block: 10px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 12px); left: 0; right: 0; z-index: 130; display: none; padding: 12px; background: rgba(28, 21, 69, .96); border: 1px solid var(--border-gold); border-radius: 18px 26px 18px 26px; box-shadow: 0 30px 60px rgba(11, 7, 33, .6), 0 0 0 1px rgba(11, 7, 33, .35); }
  .site-nav[data-open="true"] { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { justify-content: flex-start; min-height: 44px; padding: 10px 16px; border-radius: 12px; font-size: 15px; }
  .nav-link[aria-current="page"] { background: rgba(212, 175, 55, .14); box-shadow: inset 2px 0 0 var(--accent-gold); }
  .nav-link:hover { background: rgba(42, 33, 107, .7); }
}

@media (max-width: 480px) {
  .header-inner { gap: 8px; padding: 6px 8px 6px 12px; }
  .brand { gap: 8px; }
  .brand-seal { width: 34px; height: 34px; font-size: 17px; }
  .brand-name { font-size: 16px; letter-spacing: .08em; }
  .brand-suffix { font-size: 10px; letter-spacing: .3em; }
  .btn-header-cta { padding: 8px 12px; font-size: 13px; }
  .nav-toggle { width: 38px; height: 38px; }
}

/* ---------- 页脚：叠层账册 ---------- */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #0C0824 0%, #0B0721 45%, #130C30 100%); border-top: 1px solid var(--border-gold); }
.site-footer::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(212, 175, 55, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, .05) 1px, transparent 1px), radial-gradient(circle at 12% 0%, rgba(42, 33, 107, .55), transparent 42%), radial-gradient(circle at 85% 100%, rgba(212, 175, 55, .08), transparent 42%); background-size: 46px 46px, 46px 46px, auto, auto; pointer-events: none; }
.site-footer > * { position: relative; z-index: 1; }

.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1.6fr; gap: clamp(28px, 4vw, 48px); padding-block: clamp(48px, 7vw, 72px) clamp(40px, 6vw, 56px); }

.footer-brand-col { min-width: 0; }
.footer-brand-col .brand { margin-bottom: 18px; }
.brand--footer .brand-seal { width: 42px; height: 42px; font-size: 22px; }
.footer-about { max-width: 34em; margin-bottom: 16px; font-size: 14px; line-height: 1.8; color: var(--text-secondary); }
.footer-trust { max-width: 38em; padding: 12px 16px; border-left: 2px solid var(--accent-gold); border-radius: 0 12px 12px 0; background: rgba(212, 175, 55, .05); font-size: 13px; line-height: 1.75; color: var(--text-secondary); }

.footer-col { min-width: 0; }
.footer-contact-col { display: grid; align-content: start; gap: 8px; }
.footer-col-title { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; letter-spacing: .18em; color: var(--accent-gold-light); }
.index-tag { display: inline-flex; align-items: center; justify-content: center; padding: 2px 6px; border: 1px solid rgba(255, 106, 0, .35); border-radius: 4px; font-family: var(--font-index); font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--accent-orange); background: rgba(255, 106, 0, .06); }

.footer-nav { display: grid; gap: 9px; }
.footer-nav a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-nav a:hover { color: var(--accent-gold-light); padding-left: 5px; }

.footer-contact { display: grid; gap: 10px; font-size: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: baseline; }
.contact-key { flex: none; min-width: 40px; font-family: var(--font-index); font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--accent-gold); }
.contact-value { color: var(--text-secondary); }
.footer-note { margin-top: 14px; font-size: 12px; line-height: 1.7; color: var(--text-muted); }

.footer-bottom { border-top: 1px solid rgba(212, 175, 55, .18); background: rgba(11, 7, 33, .55); padding: 16px 0; font-family: var(--font-index); font-size: 12px; letter-spacing: .04em; color: var(--text-muted); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; }
.footer-copy a { color: var(--text-muted); text-decoration: none; transition: color .25s; }
.footer-copy a:hover { color: var(--accent-gold-light); }
.footer-sep { margin: 0 7px; opacity: .5; }
.footer-icp { letter-spacing: .08em; }

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

/* ---------- 原生折叠手风琴 ---------- */
.acc { border: 1px solid var(--border-gold); border-radius: 14px; background: rgba(28, 21, 69, .45); }
.acc + .acc { margin-top: 10px; }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); cursor: pointer; list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; display: grid; place-items: center; flex: none; width: 26px; height: 26px; border: 1px solid rgba(255, 106, 0, .4); border-radius: 50%; font-family: var(--font-index); font-size: 17px; font-weight: 400; color: var(--accent-orange); transition: transform .3s var(--ease); }
.acc[open] summary::after { content: "−"; transform: rotate(180deg); }
.acc-body { padding: 14px 18px 18px; border-top: 1px dashed rgba(212, 175, 55, .22); font-size: 14px; line-height: 1.8; color: var(--text-secondary); }

/* ---------- 返回顶部 ---------- */
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; padding: 0; border: 1px solid var(--border-gold); border-radius: 50%; background: rgba(28, 21, 69, .85); color: var(--accent-gold-light); cursor: pointer; opacity: 0; transform: translateY(10px); box-shadow: 0 12px 28px rgba(11, 7, 33, .5); pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .25s, color .25s, box-shadow .25s; }
.back-top:hover { border-color: var(--accent-gold); color: var(--accent-orange); box-shadow: 0 12px 32px rgba(11, 7, 33, .6), 0 0 18px rgba(212, 175, 55, .18); }
.back-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top-icon { display: block; width: 10px; height: 10px; margin-bottom: 3px; border-top: 2px solid currentColor; border-left: 2px solid currentColor; transform: rotate(45deg); }

@media (max-width: 560px) {
  .back-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ---------- 显现交互 ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- 动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; will-change: auto; }
}
