/* Kompakte Lichtspiele-Persönlichkeit: Otto beobachtet vor allem lange und still. */
.system-otto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6ch;
    min-width: 6ch;
    color: var(--system-otto-color, #F1E9D5);
    font-size: .98rem;
    line-height: 1;
    white-space: nowrap;
    font-variant-ligatures: none;
    pointer-events: none;
}

.system-otto-glyph {
    position: relative;
    display: inline-block;
    width: 5ch;
    color: transparent;
    text-align: center;
}

.system-otto-glyph::before {
    content: "(⊙⌄⊙)";
    position: absolute;
    inset: 0 auto auto 0;
    width: 5ch;
    color: var(--system-otto-color, #F1E9D5);
    text-align: center;
    text-shadow: 0 0 3px rgba(255,245,222,.72), 0 0 8px rgba(241,233,213,.4), 0 0 15px rgba(185,172,147,.2);
    animation: systemOttoProjection 40s steps(1,end) -8.5s infinite;
}

@keyframes systemOttoProjection {
    0%, 22%, 24%, 37%, 42%, 55%, 60%, 70%, 75%, 77%, 100% {
        content: "(⊙⌄⊙)";
        color: var(--system-otto-color, #F1E9D5);
        transform: translateX(0);
    }
    23% { content: "(─⌄─)"; }
    38%, 41% {
        content: "(⊙︿⊙)";
        color: var(--system-otto-muted, #B9AC93);
        transform: translateX(-1px);
    }
    56%, 59% {
        content: "(⊙‿⊙)";
        color: var(--system-otto-active, #FFF5DE);
    }
    71%, 74% {
        content: "(⊙_⊙)";
        color: var(--system-otto-muted, #B9AC93);
        transform: translateX(1px);
    }
    78%, 88% {
        content: "(⊙ ⊙)";
        color: var(--system-otto-active, #FFF5DE);
        transform: translateX(0);
    }
    89%, 90% { content: "(─⌄─)"; }
}

@media (prefers-reduced-motion: reduce) {
    .system-otto-glyph::before { animation: none !important; }
}
