/* ============================================================
   博九娱乐 · 共享样式 /assets/site.css
   深海墨蓝底 · 鎏金刻度 · 朱砂标签 · 青玉状态
   ============================================================ */

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

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

html,
body { min-height: 100%; }

body { margin: 0; }

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

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

a { color: inherit; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- 2. 设计变量 ---------- */
:root {
  --ink: #071229;
  --night: #0E2144;
  --steel: #17325F;
  --gold: #E4BE6B;
  --gold-dim: #8A6A28;
  --cinnabar: #C43B37;
  --jade: #3FBFA0;
  --amber: #E0A233;
  --paper: #F3EADA;
  --mist: #A7B0C0;
  --graphite: #5B647A;

  --serif: "Songti SC", "Source Han Serif SC", "Noto Serif SC", "SimSun", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;

  --rail-w: 272px;
  --status-h: 54px;

  --gap-s: 20px;
  --gap-m: 32px;
  --gap-l: 56px;
  --gap-xl: 96px;

  --shadow-hard: 8px 8px 0 rgba(4, 10, 24, 0.85);
  --shadow-lift: 5px 5px 0 rgba(138, 106, 40, 0.55);
  --ease: cubic-bezier(0.2, 0.6, 0.3, 1);
}

/* ---------- 3. 页面底 ---------- */
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(1100px 620px at 84% -10%, rgba(14, 33, 68, 0.95), transparent 62%),
    radial-gradient(760px 520px at 4% 106%, rgba(23, 50, 95, 0.5), transparent 68%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: 0.012em;
  overflow-x: hidden;
}

/* ---------- 4. 排版体系 ---------- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.t-serif {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: 0.012em;
}

.t-display {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 1.06;
}

.t-h1 { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.14; }
.t-h2 { font-size: clamp(24px, 2.8vw, 38px); }
.t-h3 { font-size: clamp(19px, 2vw, 24px); }

.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.85;
  color: #DCD3C2;
  max-width: 44ch;
}

.num,
.date,
time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.meta {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--mist);
}

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 12px;
  margin: 0 0 clamp(20px, 3vw, 34px);
  max-width: 66ch;
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.section-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
  max-width: 56ch;
}

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

/* ---------- 5. 布局工具 ---------- */
#main-content {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(18px, 4vw, 48px) clamp(40px, 6vw, 72px);
}

#main-content:focus { outline: none; }

.grid { display: grid; gap: var(--gap-m); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.split {
  display: grid;
  gap: var(--gap-m);
  grid-template-columns: 1fr;
}

.stack > * + * { margin-top: 18px; }

.rule {
  height: 2px;
  border: 0;
  margin: clamp(28px, 4vw, 48px) 0;
  background: linear-gradient(90deg, var(--gold-dim), rgba(138, 106, 40, 0.15) 55%, transparent);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: var(--gap-l);
  }
}

/* ---------- 6. 组件：按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease),
    transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(23, 50, 95, 0.95);
}

.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { background: #F0D28C; }

.btn--ghost { border-color: var(--steel); color: var(--mist); }
.btn--ghost:hover {
  background: var(--steel);
  color: var(--paper);
  box-shadow: 5px 5px 0 rgba(4, 10, 24, 0.9);
}

/* ---------- 7. 组件：面板 / 标签 / 角标 ---------- */
.panel {
  background: var(--night);
  border: 2px solid var(--steel);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-hard);
}

.panel--gold {
  border-color: var(--gold-dim);
  box-shadow: 8px 8px 0 rgba(138, 106, 40, 0.28);
}

.panel--flat {
  background: transparent;
  box-shadow: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.tag--gold { color: var(--gold); background: rgba(228, 190, 107, 0.12); }
.tag--cinnabar { color: #E5807A; background: rgba(196, 59, 55, 0.18); }
.tag--jade { color: var(--jade); background: rgba(63, 191, 160, 0.14); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.badge--done { color: var(--jade); background: rgba(63, 191, 160, 0.14); }
.badge--pending { color: var(--amber); background: rgba(224, 162, 51, 0.14); }
.badge--note { color: var(--mist); background: rgba(91, 100, 122, 0.18); }

/* ---------- 8. 组件：面包屑 ---------- */
.breadcrumb { margin: 0 0 clamp(20px, 3vw, 30px); }

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.breadcrumb-item { display: flex; align-items: center; gap: 8px; }

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--graphite);
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}

.breadcrumb-item a:hover { color: var(--paper); border-bottom-color: var(--paper); }
.breadcrumb-item[aria-current="page"] { color: var(--paper); }

/* ---------- 9. 组件：图片容器 ---------- */
.media-figure { margin: 0; }

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border: 2px solid var(--steel);
  background: linear-gradient(150deg, var(--night), #050D1D);
  box-shadow: 10px 10px 0 rgba(4, 10, 24, 0.85);
}

.media-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim) 40%, transparent);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
}

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

.media-caption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--mist);
}

/* ---------- 10. 组件：筛选 / 动效 ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-btn {
  padding: 9px 15px;
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--mist);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease),
    background-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.filter-btn:hover {
  color: var(--paper);
  border-color: var(--gold-dim);
  background: rgba(23, 50, 95, 0.5);
}

.filter-btn[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(4, 10, 24, 0.85);
}

.filter-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.is-fading {
  opacity: 0;
  transition: opacity 0.18s var(--ease);
}

/* ---------- 11. 跳过链接 ---------- */
.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 300;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(4, 10, 24, 0.9);
  transition: top 0.18s var(--ease);
}

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

/* ---------- 12. 头部（移动优先：顶部横条 + 下拉目录） ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 18, 41, 0.96);
  border-bottom: 2px solid var(--steel);
}

.frame-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 24px);
  border-bottom: 2px solid var(--steel);
  background: linear-gradient(180deg, rgba(14, 33, 68, 0.96), rgba(7, 18, 41, 0.98));
}

.rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: var(--cinnabar);
  color: var(--paper);
  border: 2px solid var(--gold-dim);
  box-shadow: 4px 4px 0 rgba(4, 10, 24, 0.9);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease),
    background-color 0.16s var(--ease);
}

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

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: width 0.18s var(--ease);
}

.nav-toggle-bars span:nth-child(2) { width: 70%; }
.nav-toggle-bars span:nth-child(3) { width: 45%; }

.nav-toggle[aria-expanded="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span { width: 100%; }

.site-nav { display: none; width: 100%; }

.site-nav[data-open] {
  display: block;
  margin-top: 14px;
  padding-top: 16px;
  max-height: 70vh;
  overflow-y: auto;
  border-top: 1px dashed rgba(138, 106, 40, 0.6);
  animation: nav-drop 0.2s var(--ease);
}

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

.nav-caption {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
}

.nav-list { display: grid; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-item { display: block; }

.nav-link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 14px;
  color: var(--mist);
  text-decoration: none;
  border: 2px solid transparent;
  border-left: 3px solid var(--steel);
  transition: color 0.16s var(--ease), background-color 0.16s var(--ease),
    border-color 0.16s var(--ease), transform 0.16s var(--ease);
}

.nav-link:hover {
  color: var(--paper);
  background: rgba(23, 50, 95, 0.55);
  border-left-color: var(--gold);
}

.nav-link[aria-current="page"] {
  background: var(--gold);
  border-color: var(--gold);
  border-left-color: var(--cinnabar);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 5px 5px 0 rgba(4, 10, 24, 0.85);
}

.nav-index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
}

.nav-link[aria-current="page"] .nav-index { color: #6B4D12; }

.nav-label { font-size: 17px; letter-spacing: 0.04em; }

.rail-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(138, 106, 40, 0.6);
}

.rail-cta {
  display: block;
  padding: 15px 18px;
  text-align: center;
  text-decoration: none;
  background: var(--cinnabar);
  border: 2px solid #7D2421;
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-lift);
  transition: background-color 0.16s var(--ease), transform 0.16s var(--ease),
    box-shadow 0.16s var(--ease);
}

.rail-cta:hover {
  background: #D8473F;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(138, 106, 40, 0.6);
}

.rail-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

/* 状态带 */
.status-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 10px clamp(16px, 4vw, 24px);
  background: rgba(7, 18, 41, 0.98);
  border-bottom: 2px solid var(--steel);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(63, 191, 160, 0.18);
}

.status-text { color: var(--paper); letter-spacing: 0.12em; }

.status-sep {
  display: none;
  width: 1px;
  height: 14px;
  background: var(--steel);
}

.status-meta { color: var(--graphite); }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cinnabar));
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

@media (max-width: 639px) {
  .status-meta { display: none; }
}

/* ---------- 13. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(60px, 8vw, 120px);
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 56px) 28px;
  background: linear-gradient(180deg, var(--ink), #050C1C);
  border-top: 2px solid var(--steel);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: min(440px, 62%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), transparent);
}

.footer-grid {
  display: grid;
  gap: clamp(26px, 3.4vw, 40px);
  grid-template-columns: 1fr;
}

.footer-mark {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-tagline {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-note {
  margin: 14px 0 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mist);
}

.footer-col-title {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.footer-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  display: inline-block;
  padding: 2px 0;
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease),
    transform 0.16s var(--ease);
}

.footer-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
  transform: translateX(2px);
}

.contact-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-row { display: grid; gap: 3px; }

.contact-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.contact-val {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paper);
  word-break: break-word;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: clamp(30px, 4.5vw, 54px);
  padding-top: 20px;
  border-top: 1px solid var(--steel);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.footer-copy { margin: 0; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 0; }
.footer-icp { color: var(--graphite); }

/* ---------- 14. 桌面端：框架式左栏 + 顶部状态带 ---------- */
@media (min-width: 1080px) {
  body {
    padding-left: var(--rail-w);
    padding-top: var(--status-h);
  }

  .site-header {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: none;
    border-bottom: 0;
    pointer-events: none;
  }

  .frame-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--rail-w);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 26px 22px 24px;
    background: linear-gradient(180deg, #102449 0%, #071229 58%, #0B1B39 100%);
    border-right: 2px solid var(--steel);
    border-bottom: 0;
    overflow-y: auto;
    pointer-events: auto;
  }

  .frame-rail::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 130px;
    background: linear-gradient(180deg, var(--gold), transparent);
  }

  .rail-top { display: block; }

  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    width: auto;
    margin-top: 32px;
  }

  .site-nav[data-open] {
    margin-top: 32px;
    padding-top: 0;
    border-top: 0;
    max-height: none;
    overflow: visible;
    animation: none;
  }

  .nav-link { padding: 10px 12px; }

  .rail-foot { margin-top: auto; }

  .status-strip {
    position: absolute;
    left: var(--rail-w);
    right: 0;
    top: 0;
    height: var(--status-h);
    flex-wrap: nowrap;
    padding: 0 clamp(20px, 3vw, 36px);
    background: rgba(7, 18, 41, 0.94);
    border-bottom: 2px solid var(--steel);
    pointer-events: auto;
  }

  .status-sep { display: block; }

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

@media (min-width: 640px) and (max-width: 1079px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1400px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)) minmax(0, 1.4fr);
  }
}

/* ---------- 15. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .is-fading { opacity: 0; }
  .site-nav[data-open] { animation: none; }
}
