:root {
  color-scheme: dark;
  --bg: #0a0908;
  --panel: rgba(19, 18, 16, 0.96);
  --panel-2: #1a1916;
  --line: #25231f;
  --line-strong: #2f2c26;
  --text: #f4efe6;
  --muted: #8a857a;
  --purple: #d4a373;
  --purple-soft: rgba(212, 163, 115, 0.16);
  --blue: #95a9a4;
  --blue-soft: rgba(149, 169, 164, 0.15);
  --success: #7fa17f;
  --danger: #c8553d;
  --warning: #d4a373;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #faf7f2;
  --panel: rgba(255, 255, 255, 0.97);
  --panel-2: #f7f2ea;
  --line: #e5dccd;
  --line-strong: #d4c8b3;
  --text: #2a2520;
  --muted: #6b5f4f;
  --purple: #a06a3a;
  --purple-soft: rgba(160, 106, 58, 0.12);
  --blue: #557872;
  --blue-soft: rgba(85, 120, 114, 0.11);
  --success: #5a7d5a;
  --danger: #b04528;
  --warning: #a06a3a;
  --shadow: 0 18px 50px rgba(95, 72, 43, 0.16);
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; }
body { font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif; color: var(--text); background: var(--bg); }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.42; }
[hidden] { display: none !important; }
.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; }

.canvas-topbar {
  height: 64px; display: flex; align-items: center; gap: 18px; padding: 0 18px;
  border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--panel) 94%, transparent);
  backdrop-filter: blur(18px); position: relative; z-index: 30;
}
.back-link { color: var(--muted); text-decoration: none; font-size: 13px; white-space: nowrap; }
.back-link:hover { color: var(--text); }
.brand { display: flex; align-items: center; gap: 9px; font-size: 13px; letter-spacing: 0.14em; white-space: nowrap; }
.brand-mark {
  width: 28px; height: 28px; display: block; flex: 0 0 auto; border-radius: 8px;
  background: url('/assets/brand/anima-mark-dark.png?v=20260912') center / cover no-repeat;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
:root[data-theme="light"] .brand-mark {
  background-image: url('/assets/brand/anima-mark-light.png?v=20260912');
  box-shadow: 0 3px 10px rgba(95, 72, 43, 0.16), inset 0 0 0 1px rgba(30, 24, 16, 0.07);
}
.brand b { padding-left: 9px; border-left: 1px solid var(--line-strong); color: var(--muted); letter-spacing: 0; font-weight: 500; }
.board-title-wrap { flex: 1; display: flex; justify-content: center; min-width: 100px; }
#boardTitle { width: min(420px, 100%); border: 1px solid transparent; border-radius: 9px; padding: 8px 11px; text-align: center; background: transparent; font-weight: 650; outline: none; }
#boardTitle:hover { border-color: var(--line); }
#boardTitle:focus { border-color: var(--purple); background: var(--panel-2); }
.top-actions { display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.save-state, .balance { font-size: 12px; color: var(--muted); }
.save-state.is-saving { color: var(--warning); }
.save-state.is-error { color: var(--danger); }
.balance { padding: 5px 8px; border-radius: 99px; color: var(--success); background: color-mix(in srgb, var(--success) 12%, transparent); }

.button, .icon-button, .zoom-label { border: 1px solid var(--line); border-radius: 9px; background: var(--panel-2); }
.button { min-height: 36px; padding: 0 14px; font-weight: 650; font-size: 13px; }
.button:hover, .icon-button:hover, .zoom-label:hover { border-color: var(--line-strong); filter: brightness(1.08); }
.button.quiet { background: transparent; color: var(--muted); }
.button.primary { border-color: transparent; color: white; background: var(--purple); }
.icon-button { width: 36px; height: 36px; display: inline-grid; place-items: center; font-size: 19px; }

.canvas-shell { position: relative; height: calc(100vh - 64px); overflow: hidden; }
.tool-rail {
  position: absolute; z-index: 20; left: 14px; top: 14px; width: 94px; padding: 9px;
  display: flex; flex-direction: column; gap: 6px; border: 1px solid var(--line);
  border-radius: 14px; background: var(--panel); box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.tool-button { min-height: 54px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--muted); font-size: 12px; display: grid; place-items: center; gap: 2px; }
.tool-button span { color: var(--text); font-size: 22px; line-height: 1; }
.tool-button:hover, .tool-button.is-active { border-color: var(--line); background: var(--panel-2); color: var(--text); }
.tool-divider { height: 1px; background: var(--line); margin: 4px; }
.tool-help { color: var(--muted); font-size: 10px; line-height: 1.55; text-align: center; margin: 6px 0 1px; }

.viewport { position: absolute; inset: 0; overflow: hidden; outline: none; touch-action: none; background-color: var(--bg); background-image: radial-gradient(circle, color-mix(in srgb, var(--muted) 24%, transparent) 1px, transparent 1.2px); background-size: 24px 24px; }
.viewport.is-panning { cursor: grabbing; }
.node-layer, .edge-layer { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: 0 0; }
.edge-layer { overflow: visible; pointer-events: none; }
.edge-content { overflow: visible; }
.edge { fill: none; stroke-width: 2.4; pointer-events: stroke; cursor: pointer; }
.edge.prompt { stroke: var(--purple); }
.edge.image { stroke: var(--blue); }
.edge.hit { stroke: transparent; stroke-width: 14; pointer-events: stroke; }
.edge.selected { stroke-width: 4; filter: drop-shadow(0 0 5px currentColor); }
.edge.muted { opacity: .24; }
.edge.draft { stroke: var(--muted); stroke-dasharray: 7 6; pointer-events: none; }
.edge.draft[hidden] { display: none !important; }
.edge-actions { position: absolute; z-index: 18; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; padding: 6px 7px 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--panel); box-shadow: var(--shadow); color: var(--muted); font-size: 10px; }
.edge-actions button { border: 0; border-radius: 999px; padding: 5px 9px; background: var(--danger); color: #fff; font-size: 10px; font-weight: 700; }

.canvas-node {
  position: absolute; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--panel);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .24); overflow: visible; transition: border-color .15s, box-shadow .15s;
}
.canvas-node:hover { border-color: color-mix(in srgb, var(--muted) 45%, transparent); }
.canvas-node.selected { border-color: var(--purple); box-shadow: 0 0 0 2px var(--purple-soft), var(--shadow); }
.canvas-node.related { border-color: color-mix(in srgb, var(--purple) 55%, var(--line)); }
.node-head { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid var(--line); cursor: grab; user-select: none; }
.node-head:active { cursor: grabbing; }
.node-kind { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 5px var(--purple-soft); }
.image-node .node-kind { background: var(--blue); box-shadow: 0 0 0 5px var(--blue-soft); }
.reference-node .node-kind { background: var(--success); box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 16%, transparent); }
.node-title { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: 13px; font-weight: 700; }
.state-pill { max-width: 92px; overflow: hidden; text-overflow: ellipsis; padding: 4px 7px; border-radius: 99px; background: var(--panel-2); color: var(--muted); font-size: 10px; white-space: nowrap; }
.state-pill.running, .state-pill.submitting { color: var(--warning); }
.state-pill.completed { color: var(--success); }
.state-pill.failed { color: var(--danger); }
.node-body { padding: 14px; }
.prompt-text { width: 100%; height: 112px; resize: none; border: 1px solid var(--line); border-radius: 10px; padding: 10px; outline: none; background: var(--panel-2); line-height: 1.55; font-size: 13px; }
.prompt-text:focus { border-color: var(--purple); }
.node-meta { display: flex; justify-content: space-between; gap: 9px; color: var(--muted); font-size: 11px; margin: 8px 1px 0; }
.node-foot { min-height: 50px; padding: 8px 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.node-run { border: 0; border-radius: 8px; padding: 7px 12px; color: white; background: var(--purple); font-size: 12px; font-weight: 700; }
.image-node .node-run { background: var(--blue); }

.port { position: absolute; z-index: 4; width: 16px; height: 16px; border: 3px solid var(--panel); border-radius: 50%; cursor: crosshair; }
.port::after { content: attr(aria-label); position: absolute; top: 50%; width: max-content; transform: translateY(-50%); color: var(--muted); font-size: 10px; opacity: 0; pointer-events: none; transition: opacity .12s; }
.port:hover::after { opacity: 1; }
.port.in { left: -8px; }
.port.in::after { left: 18px; }
.port.out { right: -8px; }
.port.out::after { right: 18px; }
.port.prompt { background: var(--purple); }
.port.image { background: var(--blue); }
.prompt-node .port.out { top: 56px; }
.image-node .port-prompt { top: 60px; }
.image-node .port-image { top: 92px; }
.image-node .port.out { bottom: 28px; }
.reference-node .port.out { top: 82px; }
.port.is-compatible { box-shadow: 0 0 0 7px color-mix(in srgb, currentColor 25%, transparent); transform: scale(1.18); }

.input-summary { display: grid; gap: 8px; margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; gap: 8px; font-size: 11px; color: var(--muted); }
.summary-row b { color: var(--text); font-weight: 600; }
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.config-grid label { display: grid; gap: 4px; color: var(--muted); font-size: 10px; }
.config-grid .model-field { grid-column: 1 / -1; }
.config-grid select { min-width: 0; height: 34px; border: 1px solid var(--line); border-radius: 8px; padding: 0 7px; background: var(--panel-2); outline: none; }
.config-grid select:focus { border-color: var(--blue); }
.config-grid .canvas-check { display: flex; min-height: 34px; align-items: center; gap: 7px; padding: 0 8px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel-2); color: var(--text); }
.config-grid .canvas-check input { accent-color: var(--blue); }
.image-stage { min-height: 142px; margin-top: 12px; border: 1px dashed var(--line-strong); border-radius: 11px; background: color-mix(in srgb, var(--panel-2) 70%, transparent); display: grid; place-items: center; overflow: hidden; }
.empty-stage { padding: 20px; color: var(--muted); font-size: 12px; text-align: center; line-height: 1.6; }
.generation-stage, .reference-uploading { width: 100%; min-height: 142px; padding: 20px; display: grid; place-items: center; align-content: center; gap: 8px; text-align: center; }
.generation-stage small, .reference-uploading small { color: var(--muted); font-size: 10px; line-height: 1.5; }
.activity-spinner { width: 25px; height: 25px; display: block; border: 3px solid var(--line-strong); border-top-color: var(--blue); border-radius: 50%; animation: activity-spin .8s linear infinite; }
.reference-uploading { min-height: 210px; border: 1px dashed var(--line-strong); border-radius: 11px; background: var(--panel-2); }
@keyframes activity-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .activity-spinner { animation-duration: 1.8s; } }
.result-grid { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 5px; }
.result-grid.one { grid-template-columns: 1fr; }
.result-thumb { position: relative; border: 2px solid transparent; border-radius: 8px; overflow: hidden; aspect-ratio: 1; padding: 0; background: var(--panel-2); }
.result-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.result-thumb.is-output { border-color: var(--blue); }
.result-thumb.is-output::after { content: "输出"; position: absolute; right: 4px; top: 4px; border-radius: 5px; padding: 2px 5px; color: white; background: var(--blue); font-size: 9px; }
.node-error { margin-top: 9px; color: var(--danger); font-size: 11px; line-height: 1.45; }
.result-actions { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }
.mini-button { border: 1px solid var(--line); border-radius: 7px; padding: 5px 7px; background: transparent; color: var(--muted); font-size: 10px; }
.mini-button:hover { color: var(--text); border-color: var(--line-strong); }
.reference-preview { width: 100%; height: 174px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--panel-2); }
.reference-preview img { width: 100%; height: 100%; display: block; object-fit: contain; }
.reference-file { margin-top: 8px; overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.reference-actions { display: flex; gap: 6px; margin-top: 9px; }
.file-button { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.file-button input, .reference-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.reference-drop { position: relative; min-height: 210px; display: grid; place-items: center; align-content: center; gap: 7px; border: 1px dashed var(--line-strong); border-radius: 11px; background: color-mix(in srgb, var(--panel-2) 72%, transparent); cursor: pointer; text-align: center; }
.reference-drop:hover { border-color: var(--purple); background: var(--purple-soft); }
.reference-drop > span { color: var(--purple); font-size: 30px; line-height: 1; }
.reference-drop b { font-size: 13px; }
.reference-drop small { max-width: 210px; color: var(--muted); font-size: 10px; line-height: 1.5; }

.empty-tip { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%); width: min(410px, calc(100% - 40px)); padding: 28px; display: grid; justify-items: center; gap: 9px; text-align: center; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); box-shadow: var(--shadow); }
.empty-tip[hidden] { display: none; }
.empty-tip b { font-size: 18px; }
.empty-tip span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.empty-tip .button { margin-top: 8px; }
.marquee { position: absolute; z-index: 10; border: 1px solid var(--purple); background: var(--purple-soft); pointer-events: none; }
.viewport-bar { position: absolute; z-index: 20; left: 124px; right: 14px; bottom: 14px; height: 44px; display: flex; align-items: center; gap: 6px; padding: 5px 7px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); box-shadow: var(--shadow); }
.viewport-bar .icon-button { width: 32px; height: 32px; }
.zoom-label { height: 32px; min-width: 56px; color: var(--muted); font-size: 11px; }
.task-summary { margin-left: auto; padding-right: 9px; color: var(--muted); font-size: 11px; }

dialog { color: var(--text); border: 1px solid var(--line-strong); border-radius: 18px; background: var(--panel); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(5, 4, 8, .64); backdrop-filter: blur(5px); }
.manager-dialog { width: min(720px, calc(100vw - 30px)); max-height: min(760px, calc(100vh - 30px)); padding: 22px; }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin: 0 0 18px; }
.dialog-head small { color: var(--purple); font-weight: 800; letter-spacing: .14em; }
.dialog-head h2 { margin: 3px 0 4px; font-size: 22px; }
.dialog-head p { margin: 0; color: var(--muted); font-size: 12px; }
.dialog-head.compact { align-items: center; }
.new-board-card { width: 100%; min-height: 82px; display: grid; grid-template-columns: 46px 1fr; grid-template-rows: 1fr 1fr; align-items: center; text-align: left; border: 1px dashed var(--purple); border-radius: 13px; padding: 12px 15px; background: var(--purple-soft); }
.new-board-card > span { grid-row: 1 / 3; font-size: 30px; color: var(--purple); }
.new-board-card small { color: var(--muted); }
.board-list { margin-top: 14px; display: grid; gap: 8px; overflow: auto; max-height: 450px; }
.board-card { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; background: var(--panel-2); }
.board-card:hover { border-color: var(--line-strong); }
.board-card b { font-size: 13px; }
.board-card small { color: var(--muted); font-size: 10px; }
.board-card-actions { grid-row: 1 / 3; grid-column: 2; display: flex; gap: 5px; }
.board-card-actions button { border: 1px solid var(--line); border-radius: 7px; padding: 6px 9px; background: transparent; font-size: 11px; }
.board-card-actions .delete { color: var(--danger); }
.batch-dialog { width: min(560px, calc(100vw - 30px)); padding: 20px; }
.batch-list { display: grid; gap: 7px; max-height: 350px; overflow: auto; }
.batch-item { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: var(--panel-2); }
.batch-item small { color: var(--muted); }
.dialog-actions { display: flex; align-items: center; gap: 8px; margin-top: 17px; }
.dialog-actions > span { margin-right: auto; color: var(--muted); font-size: 12px; }
.preview-dialog { width: min(94vw, 1400px); height: min(92vh, 1000px); padding: 0; overflow: hidden; background: #09090c; }
.preview-dialog form { position: absolute; right: 12px; top: 12px; z-index: 2; }
.preview-close { width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: rgba(0, 0, 0, .6); font-size: 25px; }
.preview-dialog img { width: 100%; height: 100%; display: block; object-fit: contain; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 72px; transform: translateX(-50%); max-width: min(560px, calc(100vw - 30px)); padding: 10px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--panel); box-shadow: var(--shadow); font-size: 12px; }
.toast.error { color: var(--danger); }

.auth-pending .canvas-shell, .auth-pending .board-title-wrap, .auth-pending .top-actions { visibility: hidden; }
@media (max-width: 1024px) {
  .brand b, .back-link span, .save-state, #undoBtn, #redoBtn { display: none; }
  .canvas-topbar { gap: 10px; padding: 0 10px; }
  .tool-rail { left: 8px; top: 8px; width: 78px; }
  .tool-help { display: none; }
  .viewport-bar { left: 94px; right: 8px; bottom: 8px; }
}

/* ================================================================
   GLASSMORPHISM LAYER 路 ANIMA Glass (鐜荤拑鎷熸€? 鈥?鏃犻檺鐢诲竷
   ================================================================ */

:root {
  --bg: #101013;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-2: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.17);
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.30);
}
:root[data-theme="light"] {
  --bg: #f7f6f3;
  --panel: rgba(255, 255, 255, 0.68);
  --panel-2: rgba(255, 255, 255, 0.76);
  --line: rgba(30, 24, 16, 0.10);
  --line-strong: rgba(30, 24, 16, 0.18);
  --shadow: 0 10px 32px rgba(70, 52, 30, 0.09);
}

/* ---------- 鏋佸厜姘涘洿 ---------- */
body::before {
  content: '';
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(36% 32% at 14% 14%, rgba(148, 163, 184, 0.12), transparent 70%),
    radial-gradient(30% 28% at 86% 10%, rgba(96, 152, 162, 0.09), transparent 70%),
    radial-gradient(40% 36% at 84% 86%, rgba(146, 136, 178, 0.08), transparent 72%),
    radial-gradient(28% 26% at 10% 82%, rgba(196, 156, 118, 0.09), transparent 70%);
  filter: blur(34px);
  animation: animaAuroraDrift 40s ease-in-out infinite alternate;
}
:root[data-theme="light"] body::before {
  background:
    radial-gradient(36% 32% at 14% 14%, rgba(255, 196, 152, 0.30), transparent 70%),
    radial-gradient(30% 28% at 86% 10%, rgba(196, 181, 253, 0.24), transparent 70%),
    radial-gradient(40% 36% at 84% 86%, rgba(147, 197, 253, 0.26), transparent 72%),
    radial-gradient(28% 26% at 10% 82%, rgba(251, 207, 232, 0.22), transparent 70%);
}
@keyframes animaAuroraDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.1); }
}

/* ---------- 鐢诲竷閫忓嚭鏋佸厜 ---------- */
.viewport {
  background-color: transparent;
}

/* ---------- 纾ㄧ爞琛ㄩ潰 ---------- */
.canvas-topbar,
.tool-rail,
.viewport-bar,
.empty-tip,
.board-card,
.batch-item,
.edge-actions,
.manager-dialog,
.batch-dialog,
dialog {
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
:root[data-theme="light"] .canvas-topbar,
:root[data-theme="light"] .tool-rail,
:root[data-theme="light"] .viewport-bar,
:root[data-theme="light"] .empty-tip,
:root[data-theme="light"] .board-card,
:root[data-theme="light"] .batch-item,
:root[data-theme="light"] .edge-actions,
:root[data-theme="light"] .manager-dialog,
:root[data-theme="light"] .batch-dialog,
:root[data-theme="light"] dialog {
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.canvas-node {
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.node-body {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
:root[data-theme="light"] .node-body {
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* ---------- 鎺т欢 ---------- */
.button.primary {
  background: linear-gradient(135deg, var(--purple), color-mix(in srgb, var(--purple) 62%, var(--blue)));
  box-shadow: 0 10px 26px color-mix(in srgb, var(--purple) 26%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.config-grid select,
.config-grid .canvas-check,
.prompt-text,
.reference-drop,
.reference-uploading,
.image-stage,
.result-thumb,
.reference-preview {
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none !important; }
}

