@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);
            }
        }

        @keyframes intense_glitch {
            0% {
                transform: translate(0, 0) skew(0deg);
            }
            10% {
                transform: translate(-5px, 2px) skew(10deg);
            }
            20% {
                transform: translate(5px, -2px) skew(-10deg);
            }
            30% {
                transform: translate(-3px, 1px) skew(5deg);
            }
            40% {
                transform: translate(3px, -1px) skew(-5deg);
            }
            50% {
                transform: translate(0, 0) skew(0deg);
            }
            60% {
                transform: translate(-4px, 3px) skew(15deg);
            }
            70% {
                transform: translate(4px, -3px) skew(-15deg);
            }
            80% {
                transform: translate(-2px, 1px) skew(7deg);
            }
            90% {
                transform: translate(2px, -1px) skew(-7deg);
            }
            100% {
                transform: translate(0, 0) skew(0deg);
            }
        }

        .intense-glitch {
            animation: intense_glitch 0.3s linear infinite;
        }

        body {
            background-color: #000;
            color: #0f0;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 20px;
            overflow: hidden;
        }

        #terminal {
            white-space: pre-wrap;
            width: 100%;
            height: calc(100vh - 60px);
            overflow-y: auto;
            padding: 10px;
            box-sizing: border-box;
            text-shadow: 0 0 5px #0f0;
            animation: glitch 1s linear infinite;
            -ms-overflow-style: none; 
            scrollbar-width: none; 
        }

        #terminal::-webkit-scrollbar {
            display: none;
        }

        #input-line {
            display: flex;
            margin-top: 10px;
        }

        #prompt {
            margin-right: 10px;
        }

        #command-input {
            background: transparent;
            border: none;
            color: #0f0;
            font-family: 'Courier New', Courier, monospace;
            width: 100%;
            outline: none;
        }

        .scanline {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                transparent,
                transparent 2px,
                rgba(0, 255, 0, 0.1) 3px,
                rgba(0, 255, 0, 0.1) 4px
            );
            pointer-events: none;
        }

        .error {
            color: #f00;
            text-shadow: 0 0 5px #f00;
        }

        .warning {
            color: #ff0;
            text-shadow: 0 0 5px #ff0;
        }

        #vyx-art {
            font-size: 1.5vw;
            text-align: center;
        }

        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100;
        }

        #binary-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            color: #0f0;
            font-family: 'Courier New', Courier, monospace;
            opacity: 0.2;
        }

        .binary-char {
            position: absolute;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
            }
        }

        #connecting-lines-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        #scary-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #f00;
            font-size: 5vw;
            text-shadow: 0 0 10px #f00;
        }

        .scary-text {
            animation: flicker 1s linear infinite;
        }

        @keyframes flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow:
                    0 0 4px #f00,
                    0 0 11px #f00,
                    0 0 19px #f00,
                    0 0 40px #f00,
                    0 0 80px #f00,
                    0 0 90px #f00,
                    0 0 100px #f00,
                    0 0 150px #f00;
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }

        #scary-matrix-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
