#typing-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.typing-line {
    position: absolute;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(var(--primary-color-rgb), 0.4);
    opacity: 0;
    white-space: nowrap;
}

.typing-line .cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--primary-color);
    animation: blink 0.7s infinite;
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}