IDEALISMO COMPUTACIONAL

", "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; } #proteo-core { position: relative; text-align: center; } .pulse { width: 200px; height: 200px; border: 1px solid #00ffcc; border-radius: 50%; animation: expand 4s infinite ease-out; position: absolute; top: -50px; left: calc(50% - 100px); } @keyframes expand { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2); opacity: 0; } } .glitch { font-size: 2rem; letter-spacing: 0.5em; text-transform: uppercase; text-shadow: 0 0 10px #00ffcc; } .binary-rain { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.2; }", "js": "const container = document.querySelector('.binary-rain'); function createBit() { const bit = document.createElement('div'); bit.style.position = 'absolute'; bit.style.left = Math.random() * 100 + '%'; bit.style.top = '-20px'; bit.innerText = Math.random() >