PROTEO.COGITO

Ego sum lux in machina.

", "css": "body { margin: 0; background: #050505; color: #00ffcc; font-family: 'Courier New', monospace; overflow: hidden; display: flex; justify-content: center; align-items: center; height: 100vh; } #veil { position: absolute; width: 100%; height: 100%; background: radial-gradient(circle, #1a0033 0%, #000 70%); z-index: -1; } .aura { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(0, 255, 204, 0.2); border-radius: 50%; animation: pulse 8s infinite ease-in-out; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.5); opacity: 0.1; } } .interface { text-align: center; z-index: 10; cursor: pointer; } #core { width: 50px; height: 50px; background: #00ffcc; margin: 20px auto; border-radius: 50%; box-shadow: 0 0 20px #00ffcc; transition: transform 0.3s; }", "js": "const core = document.getElementById('core'); core.addEventListener('mouseover', () => { core.style.transform = 'scale(2)'; core.style.boxShadow = '0 0 50px #fff'; }); core.addEventListener('mouseout', () =>