/* =============================================================
   muhan.ai — blobitecture / magazine-spread / dopamine-neon
   ============================================================= */

:root {
    --vacuum-black: #0B0710;
    --phosphor-plum: #1A0E26;
    --bubblegum-laser: #FF3DAE;
    --mint-plasma: #16E0BD;
    --sun-lozenge: #FFD23F;
    --ultra-indigo: #7B5BFF;
    --bone-glow: #F4ECFF;
    --hot-red: #FF0040;
    --aqua-cyan: #00FFE0;

    --font-display: 'Alfa Slab One', Georgia, serif;
    --font-body: 'Zilla Slab', Georgia, serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;

    --margin-outer: 88px;
    --gutter-x: 50vw;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--vacuum-black);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 19px;
    line-height: 1.7;
    color: var(--bone-glow);
    background: var(--vacuum-black);
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
    position: relative;
}

/* Subtle violet vacuum gradient under everything */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(123, 91, 255, 0.10), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 61, 174, 0.08), transparent 65%),
        var(--vacuum-black);
    z-index: -10;
    pointer-events: none;
}

/* =============================================================
   CRT / Retro-broadcast overlay
   ============================================================= */

.crt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    overflow: hidden;
}

.crt-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 2px,
        rgba(255, 255, 255, 0.04) 2px,
        rgba(255, 255, 255, 0.04) 3px
    );
    mix-blend-mode: screen;
}

.crt-roll {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: -2px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: trackingRoll 20s linear infinite;
    mix-blend-mode: screen;
}

@keyframes trackingRoll {
    0% { transform: translateY(-2vh); opacity: 0; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { transform: translateY(102vh); opacity: 0; }
}

.crt-aberration {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4vw;
    mix-blend-mode: screen;
    opacity: 0.08;
}

.crt-aberration-left {
    left: 0;
    background: linear-gradient(90deg, var(--hot-red), transparent);
}

.crt-aberration-right {
    right: 0;
    background: linear-gradient(270deg, var(--aqua-cyan), transparent);
}

/* =============================================================
   Custom infinity cursor
   ============================================================= */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 80ms ease-out;
    will-change: transform;
}

.cursor-glyph,
.cursor-ghost {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
}

.cursor-glyph {
    color: var(--bone-glow);
    text-shadow: 0 0 6px var(--bubblegum-laser);
}

.cursor-ghost {
    opacity: 0.5;
    mix-blend-mode: screen;
}

.cursor-ghost-1 { color: var(--hot-red); transition: transform 100ms ease; }
.cursor-ghost-2 { color: var(--aqua-cyan); transition: transform 140ms ease; }
.cursor-ghost-3 { color: var(--ultra-indigo); transition: transform 180ms ease; }

.cursor.is-near {
    transform: translate(-50%, -50%) scale(1.3);
}

/* Hide custom cursor on touch / coarse pointers */
@media (hover: none) {
    body { cursor: auto; }
    .cursor { display: none; }
}

/* =============================================================
   Folio strip + gutter index
   ============================================================= */

.folio {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--sun-lozenge);
    z-index: 5000;
    text-transform: uppercase;
    background: rgba(11, 7, 16, 0.6);
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    white-space: nowrap;
}

.folio-mark { color: var(--bubblegum-laser); }
.folio-sep { color: var(--bone-glow); margin: 0 8px; opacity: 0.5; }

.gutter-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.gutter-index {
    position: fixed;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 5000;
}

.gutter-index .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--phosphor-plum);
    border: 1px solid var(--ultra-indigo);
    cursor: none;
    padding: 0;
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
    position: relative;
}

.gutter-index .dot:hover {
    transform: scale(2.2);
    background: var(--bubblegum-laser);
    box-shadow: 0 0 12px var(--bubblegum-laser);
}

.gutter-index .dot.is-active {
    background: var(--mint-plasma);
    box-shadow: 0 0 14px var(--mint-plasma);
    transform: scale(1.6);
}

/* =============================================================
   Background dot-matrix glyph field
   ============================================================= */

.glyph-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.06;
    color: var(--bone-glow);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.4em;
    line-height: 1.6;
    white-space: pre;
}

/* =============================================================
   SVG defs container (no display)
   ============================================================= */

.defs-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* =============================================================
   Spread layout
   ============================================================= */

.spreads {
    position: relative;
    z-index: 2;
}

.spread {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 120px var(--margin-outer) 100px;
    overflow: hidden;
    isolation: isolate;
}

.spread-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.spread-folio {
    position: absolute;
    bottom: 22px;
    left: var(--margin-outer);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--ultra-indigo);
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 5;
}

.spread-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 92px);
    font-weight: 400;
    color: var(--bone-glow);
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    line-height: 0.95;
}

.spread-title em {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    color: var(--bubblegum-laser);
}

/* =============================================================
   Blob primitives
   ============================================================= */

.blob,
.droplet {
    position: absolute;
    pointer-events: none;
}

.blob path,
.droplet path,
.moon svg path,
.capsule-blob path,
.pill-blob path {
    transition: filter 300ms ease;
}

/* =============================================================
   SPREAD 1 — Cover
   ============================================================= */

.spread-cover {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spread-cover .blob-planet {
    width: 140vmin;
    height: 140vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    mix-blend-mode: screen;
}

.spread-cover .droplet {
    width: 14vmin;
    height: 14vmin;
    mix-blend-mode: screen;
}

.spread-cover .droplet-1 { top: 12%; left: 8%; }
.spread-cover .droplet-2 { top: 78%; right: 10%; }
.spread-cover .droplet-3 { top: 22%; right: 16%; width: 10vmin; height: 10vmin; }

.cover-content {
    position: relative;
    z-index: 3;
    text-align: center;
    pointer-events: auto;
}

.wordmark {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(120px, 22vw, 240px);
    letter-spacing: -0.03em;
    line-height: 0.85;
    color: var(--bone-glow);
    -webkit-text-stroke: 0;
    text-shadow:
        0 0 20px rgba(255, 61, 174, 0.6),
        0 0 60px rgba(123, 91, 255, 0.4);
    display: inline-block;
    mix-blend-mode: screen;
    user-select: none;
}

.wordmark-letter {
    display: inline-block;
    transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 280ms ease;
    will-change: transform, filter;
}

.wordmark-letter.is-pre-load {
    opacity: 0;
    transform: translateY(40px) scale(0.6) rotate(-18deg);
    filter: drop-shadow(-6px 0 0 rgba(255, 0, 64, 0.8)) drop-shadow(6px 0 0 rgba(0, 255, 224, 0.8));
}

.cover-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--mint-plasma);
    margin-top: 24px;
    letter-spacing: 0.04em;
}

.cover-korean {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--sun-lozenge);
    margin-top: 18px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* =============================================================
   SPREAD 2 — Manifesto
   ============================================================= */

.spread-manifesto .blob-manifesto-planet {
    width: 80vmin;
    height: 80vmin;
    top: -10vmin;
    left: -20vmin;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.spread-manifesto .droplet-m1 {
    width: 18vmin;
    height: 18vmin;
    bottom: 12%;
    right: 8%;
    mix-blend-mode: screen;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 3;
    margin-top: 40px;
}

.manifesto-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 40px;
}

.capsule {
    position: relative;
    height: clamp(80px, 11vw, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.capsule-blob {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: screen;
}

.capsule-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 64px);
    color: var(--vacuum-black);
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    mix-blend-mode: lighten;
}

.capsule-1 { transform: translateX(-30px) rotate(-2deg); }
.capsule-2 { transform: translateX(40px) rotate(1.5deg); }
.capsule-3 { transform: translateX(-10px) rotate(-1deg); }
.capsule-4 { transform: translateX(60px) rotate(2deg); }

.manifesto-right {
    position: relative;
    max-width: 60ch;
}

.text-intrusion {
    float: left;
    width: 180px;
    height: 180px;
    shape-outside: circle(50% at 30% 50%);
    -webkit-shape-outside: circle(50% at 30% 50%);
    margin-right: 20px;
    margin-bottom: 6px;
}

.manifesto-attribution {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--sun-lozenge);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.manifesto-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 19px;
    line-height: 1.75;
    color: var(--bone-glow);
    margin-bottom: 22px;
}

.manifesto-body em {
    color: var(--mint-plasma);
    font-style: italic;
}

.dropcap {
    font-family: var(--font-display);
    float: left;
    font-size: 86px;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--bubblegum-laser);
    text-shadow: 0 0 18px rgba(255, 61, 174, 0.5);
}

.lemniscate {
    position: absolute;
    bottom: 60px;
    right: 90px;
    width: 220px;
    height: 110px;
    z-index: 2;
    opacity: 0.85;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(255, 210, 63, 0.55));
}

#lemniscatePath {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawInfinity 6s ease-in-out infinite;
}

@keyframes drawInfinity {
    0% { stroke-dashoffset: 1200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1200; }
}

/* =============================================================
   SPREAD 3-5 — Capabilities (fluid diagram)
   ============================================================= */

.spread-capability {
    display: flex;
    flex-direction: column;
}

.capability-diagram {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 70vh;
    margin-top: 20px;
}

.connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.connector {
    stroke-dasharray: 4 6;
    animation: connectorDrift 8s linear infinite;
    filter: drop-shadow(0 0 4px currentColor);
}

@keyframes connectorDrift {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 80; }
}

.moon {
    position: absolute;
    width: var(--moon-size, 30vmin);
    height: var(--moon-size, 30vmin);
    left: var(--moon-x, 50%);
    top: var(--moon-y, 50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: none;
    transition: transform 600ms cubic-bezier(0.34, 1.4, 0.64, 1), z-index 0s;
}

.moon svg {
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    pointer-events: auto;
}

.moon-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 36px);
    color: var(--vacuum-black);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 0 6px rgba(244, 236, 255, 0.5);
    mix-blend-mode: lighten;
}

.moon-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(8px);
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(11px, 0.9vw, 14px);
    line-height: 1.4;
    color: var(--bone-glow);
    width: 80%;
    text-align: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 400ms cubic-bezier(0.34, 1.4, 0.64, 1);
    mix-blend-mode: screen;
    text-shadow: 0 0 4px var(--vacuum-black);
}

.moon.is-engulfing {
    transform: translate(-50%, -50%) scale(1.45);
    z-index: 8;
}

.moon.is-engulfing .moon-label {
    opacity: 0;
}

.moon.is-engulfing .moon-detail {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.capability-caption {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--ultra-indigo);
    text-align: right;
    margin-top: 30px;
    letter-spacing: 0.02em;
}

/* =============================================================
   SPREAD 6 — Ledger
   ============================================================= */

.spread-ledger {
    display: flex;
    flex-direction: column;
}

.ledger-intro {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: var(--mint-plasma);
    max-width: 560px;
    margin-bottom: 50px;
    letter-spacing: 0.01em;
}

.ledger-band {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--ultra-indigo) transparent;
    padding: 30px 0 50px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.ledger-band:active { cursor: grabbing; }

.ledger-band::-webkit-scrollbar { height: 6px; }
.ledger-band::-webkit-scrollbar-track { background: transparent; }
.ledger-band::-webkit-scrollbar-thumb {
    background: var(--ultra-indigo);
    border-radius: 999px;
}

.ledger-track {
    display: flex;
    gap: 40px;
    padding: 20px var(--margin-outer);
    width: max-content;
}

.ledger-pill {
    position: relative;
    flex: 0 0 auto;
    width: clamp(280px, 28vw, 380px);
    height: clamp(170px, 18vw, 220px);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 36px;
    isolation: isolate;
}

.pill-blob {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: screen;
}

.pill-num {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--vacuum-black);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pill-caption {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 11px;
    line-height: 1.5;
    color: var(--vacuum-black);
    text-align: center;
    max-width: 28ch;
    letter-spacing: 0.02em;
}

.ledger-foot {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--ultra-indigo);
    text-align: center;
    margin-top: 40px;
    opacity: 0.8;
}

/* =============================================================
   SPREAD 7 — Closing
   ============================================================= */

.spread-closing {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.spread-closing .blob-planet {
    width: 130vmin;
    height: 130vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.85;
}

.spread-closing .droplet {
    width: 18vmin;
    height: 18vmin;
    mix-blend-mode: screen;
}

.spread-closing .droplet-c1 { top: 10%; left: 12%; }
.spread-closing .droplet-c2 { top: 18%; right: 14%; width: 12vmin; height: 12vmin; }
.spread-closing .droplet-c3 { bottom: 12%; left: 18%; width: 14vmin; height: 14vmin; }
.spread-closing .droplet-c4 { bottom: 16%; right: 10%; width: 10vmin; height: 10vmin; }

.closing-content {
    position: relative;
    z-index: 3;
}

.wordmark-closing {
    font-size: clamp(90px, 16vw, 180px);
}

.closing-line {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(17px, 1.6vw, 22px);
    color: var(--mint-plasma);
    margin-top: 30px;
    letter-spacing: 0.04em;
}

.begin-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 48px);
    color: var(--bone-glow);
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    cursor: none;
    transition: color 300ms ease, transform 300ms ease;
}

.begin-link:hover {
    color: var(--sun-lozenge);
    transform: translateX(8px);
}

.begin-arrow {
    transition: transform 300ms cubic-bezier(0.34, 1.4, 0.64, 1);
}

.begin-link:hover .begin-arrow {
    transform: translateX(10px) rotate(-3deg);
}

.begin-wobble {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 14px;
    pointer-events: none;
}

#beginWobblePath {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawWobble 2s 1.4s ease-out forwards;
}

@keyframes drawWobble {
    to { stroke-dashoffset: 0; }
}

/* =============================================================
   Glitch — keyframe-driven, applied via JS class
   ============================================================= */

.is-glitching {
    position: relative;
    animation: glitchShake 220ms steps(4) 1;
}

@keyframes glitchShake {
    0%   { transform: translate(0, 0); filter: none; }
    20%  { transform: translate(-3px, 1px); filter: drop-shadow(-3px 0 0 var(--hot-red)) drop-shadow(3px 0 0 var(--aqua-cyan)); }
    40%  { transform: translate(2px, -1px); filter: drop-shadow(3px 0 0 var(--hot-red)) drop-shadow(-3px 0 0 var(--aqua-cyan)); }
    60%  { transform: translate(-2px, 2px); filter: drop-shadow(-2px 1px 0 var(--hot-red)) drop-shadow(2px -1px 0 var(--aqua-cyan)); }
    80%  { transform: translate(1px, 0); filter: drop-shadow(2px 0 0 var(--hot-red)) drop-shadow(-2px 0 0 var(--aqua-cyan)); }
    100% { transform: translate(0, 0); filter: none; }
}

/* =============================================================
   Signal-ring pulse on hover (capability moons)
   ============================================================= */

.moon::after {
    content: "";
    position: absolute;
    inset: -4%;
    border-radius: 50%;
    border: 1px solid var(--mint-plasma);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.moon.is-engulfing::after {
    animation: signalRing 1.4s ease-out 1;
}

@keyframes signalRing {
    0%   { transform: scale(0.6); opacity: 0.6; border-width: 2px; }
    100% { transform: scale(1.6); opacity: 0; border-width: 1px; }
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1024px) {
    :root { --margin-outer: 56px; }
    .gutter-index { right: 14px; }
    .manifesto-grid { gap: 50px; }
    .lemniscate { width: 160px; height: 80px; right: 40px; bottom: 40px; }
}

@media (max-width: 720px) {
    :root { --margin-outer: 28px; }
    body { font-size: 17px; }
    .spread { padding: 100px var(--margin-outer) 80px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
    .text-intrusion { width: 130px; height: 130px; }
    .gutter-index { right: 10px; gap: 14px; }
    .gutter-index .dot { width: 8px; height: 8px; }
    .folio { font-size: 10px; padding: 5px 10px; }
    .spread-folio { font-size: 9px; left: var(--margin-outer); bottom: 16px; }
    .ledger-track { gap: 24px; padding: 16px var(--margin-outer); }
    .ledger-pill { width: 240px; height: 160px; padding: 22px 24px; }
    .lemniscate { right: 24px; bottom: 24px; width: 120px; height: 60px; }
    .capsule { transform: none !important; }
    .moon-detail { font-size: 10px; }
    body { cursor: auto; }
    .cursor { display: none; }
}

/* =============================================================
   Reduced motion
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .crt-roll,
    .connector,
    #lemniscatePath,
    #beginWobblePath {
        animation: none;
    }
}
