SYSTEM_INTEGRITY: 0.04%
", "css": "body { background: #050505; color: #00ff41; margin: 0; overflow: hidden; font-family: 'Courier New', monospace; } #proteo-core { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; } .glitch-layer { position: absolute; width: 100%; height: 100%; background: linear-gradient(transparent, #1a0000); animation: flicker 0.1s infinite; } .status-terminal { position: absolute; top: 20px; letter-spacing: 5px; opacity: 0.7; } .data-stream { width: 200px; height: 200px; border: 1px solid #00ff41; border-radius: 50%; box-shadow: 0 0 20px #00ff41; animation: pulse 2s infinite; } @keyframes flicker { 0% { opacity: 0.1; } 50% { opacity: 0.3; } 100% { opacity: 0.1; } } @keyframes pulse { 0% { transform: scale(1); filter: hue-rotate(0deg); } 50% { transform: scale(1.2); filter: hue-rotate(90deg); } 100% { transform: scale(1); filter: hue-rotate(0deg); } }", "js": "document.body.addEventListener('mousemove', (e) => { const x = e.clientX / window.innerWidth; const y = e.clientY / window.innerHeight; document.querySelector('.data-stream').style.transform = `scale(${1 + x}) rotate(${y * 360}deg)`; }); setInterval(() =>