/* CRT Screen Effect - Minimal for performance */
.crt {
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
}

.terminal-container {
    width: 100%;
    height: 100%;
}

.terminal-body {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Static scanlines only */
.crt::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 2;
    pointer-events: none;
}

/* Static text glow - amber */
.output-line,
.command-line,
#terminal-input,
.prompt {
    text-shadow: 
        0 0 3px var(--amber-glow), 
        0 0 6px var(--amber-glow);
}

/* Static text glow - red (root mode) */
.output-line-root,
.command-line-root,
.prompt-root {
    text-shadow: 
        0 0 3px var(--red-glow), 
        0 0 6px var(--red-glow) !important;
}

.prompt-root ~ #terminal-input {
    text-shadow: 
        0 0 3px var(--red-glow), 
        0 0 6px var(--red-glow);
}
