@import url('https://fonts.googleapis.com/css2?family=VT323&amp;display=swap');
        
        :root {
            --accent: 134 255 140;
        }
        
        .crt {
            position: relative;
        }
        
        .crt::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                transparent 0px,
                transparent 2px,
                rgba(0, 255, 80, 0.08) 2px,
                rgba(0, 255, 80, 0.08) 4px
            );
            pointer-events: none;
            z-index: 2;
            animation: scanline 6s linear infinite;
        }
        
        @keyframes scanline {
            0% { background-position: 0 0; }
            100% { background-position: 0 400px; }
        }
        
        .terminal-text {
            font-family: 'VT323', monospace;
            text-shadow: 0 0 8px rgb(134 255 140);
        }
        
        .neon-text {
            text-shadow: 
                0 0 5px rgb(134 255 140),
                0 0 10px rgb(134 255 140),
                0 0 20px rgb(134 255 140);
        }
        
        .canvas-container {
            background: #0a0f0a;
            border: 4px solid rgb(30 60 30);
            box-shadow: 
                0 0 0 8px #111,
                0 0 30px -5px rgb(134 255 140);
        }
        
        .slider-label {
            font-size: 10px;
            letter-spacing: 1px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }
        
        .log-line {
            animation: logfade 0.4s ease forwards;
        }
        
        @keyframes logfade {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .glitch {
            animation: glitch 0.4s linear infinite;
        }
        
        @keyframes glitch {
            2%, 64% { transform: translate(2px,0) skew(0deg); }
            4%, 60% { transform: translate(-2px,0) skew(0deg); }
            62% { transform: translate(0,0) skew(5deg); }
        }
        
        .signal-bar {
            transition: height 0.05s linear;
        }
