.st-animated-console {
    font-family: 'Courier New', Courier, monospace;
    color: #FFFFFF;
    background: #1e1e1e;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
    box-sizing: border-box;
    white-space: pre-wrap;
    width: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
}

.st-animated-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.07) 0px,
        rgba(255, 255, 255, 0.07) 2px,
        rgba(0, 0, 0, 0) 4px,
        rgba(255, 255, 255, 0.07) 5px
    );
    pointer-events: none;
    border-radius: 4px;
    animation: scanlines-move 0.8s linear infinite;
}

.st-animated-console .fixed-line {
    margin-bottom: 12px;
}

/* Neuer Selektor für den animierten Text mit grünem Glow */
.st-animated-console .animated-text {
    font-weight: bold;
    color: #39FF14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.st-animated-console .console-cursor {
    display: inline-block;
    width: 0.6em;
    animation: blink-cursor 1s step-end infinite;
    vertical-align: bottom;
    margin-left: 5px;
}

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

@keyframes scanlines-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(5px); }
}
