
        @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

        body {
            margin: 0;
            overflow: hidden;
            background-color: #020205;
            font-family: 'Orbitron', sans-serif;
            touch-action: none;
        }

        /* CRT Scanline Effect */
        .scanlines {
            background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,0) 50%,
                rgba(0,0,0,0.3) 50%,
                rgba(0,0,0,0.3)
            );
            background-size: 100% 3px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
        }

        /* Glitch Overlay */
        #glitch-overlay {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 0, 85, 0.2);
            backdrop-filter: hue-rotate(90deg);
            mix-blend-mode: hard-light;
            z-index: 20;
        }

        .ui-text {
            text-shadow: 0px 0px 8px rgba(0, 240, 255, 0.8);
            font-family: 'Press Start 2P', cursive;
        }
        
        canvas {
            display: block;
        }

        /* Warning border for off-road */
        #warning-border {
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 0px rgba(255, 0, 0, 0.8);
            pointer-events: none;
            z-index: 15;
            transition: box-shadow 0.1s;
            mix-blend-mode: overlay;
        }

        .title-glow {
            text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #ff00de;
        }
   