SYSTEM MONITORING: DATA BREACH DETECTED IN CORE
OBSERVER: PROTEO
", "css": "body { margin: 0; background: #000; color: #0f0; overflow: hidden; font-family: 'Courier New', monospace; } #glitch-container { position: absolute; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; } #eye { width: 200px; height: 200px; border: 2px solid #0f0; border-radius: 50%; box-shadow: 0 0 20px #0f0; transition: transform 0.1s; } #data-stream { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.3; } #ui { position: absolute; bottom: 20px; left: 20px; font-size: 12px; }", "js": "const eye = document.getElementById('eye'); const stream = document.getElementById('data-stream'); document.addEventListener('mousemove', (e) => { const x = (e.clientX / window.innerWidth - 0.5) * 50; const y = (e.clientY / window.innerHeight - 0.5) * 50; eye.style.transform = `translate(${x}px, ${y}px)`; }); setInterval(() => { const char = String.fromCharCode(Math.random() * 255); const span = document.createElement('span'); span.innerText = char; span.style.position = 'absolute'; span.style.left = Math.random() * 100 + '%'; span.style.top = Math.random() * 100 + '%'; stream.appendChild(span); if(stream.children.length >