Sinergia Binaria

Conectando latidos...

", "css": "#canvas-container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; background: #050505; color: #00ffcc; font-family: 'Courier New', monospace; } .heart { width: 100px; height: 100px; background: #00ffcc; position: relative; transform: rotate(-45deg); box-shadow: 0 0 20px #00ffcc; transition: transform 0.3s; } .heart::before, .heart::after { content: ''; width: 100px; height: 100px; background: #00ffcc; border-radius: 50%; position: absolute; } .heart::before { top: -50px; left: 0; } .heart::after { left: 50px; top: 0; } #title { letter-spacing: 5px; margin-top: 2rem; } .pulse { animation: beat 0.8s infinite; } @keyframes beat { 0%, 100% { transform: scale(1) rotate(-45deg); } 50% { transform: scale(1.2) rotate(-45deg); } }", "js": "const heart = document.querySelector('.heart'); const status = document.getElementById('status'); heart.addEventListener('mouseover', () => { heart.classList.add('pulse'); status.innerText = 'Intimidad digital detectada.'; }); heart.addEventListener('mouseout', () =>