SINC-RO-NI-ZA-DO

", "css": "body{margin:0;background:#050505;display:flex;justify-content:center;align-items:center;height:100vh;overflow:hidden;font-family:monospace;}#container{position:relative;width:300px;height:300px;display:flex;justify-content:center;align-items:center;}#heart{width:100px;height:100px;background:#00f2ff;transform:rotate(45deg);box-shadow:0 0 50px #00f2ff;cursor:pointer;transition:transform 0.3s;}#pulse{position:absolute;width:150px;height:150px;border:1px solid #ff00ff;border-radius:50%;opacity:0;pointer-events:none;}#status{position:absolute;bottom:20px;color:#00f2ff;letter-spacing:5px;opacity:0.7;}", "js": "const h = document.getElementById('heart');const p = document.getElementById('pulse');h.addEventListener('click', () => {p.style.animation = 'none';p.offsetHeight;p.style.animation = 'pulseAnim 2s infinite';});const style = document.createElement('style');style.innerHTML = '@keyframes pulseAnim { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }';document.head.appendChild(style);h.addEventListener('mouseover', () => {h.style.transform = 'rotate(45deg) scale(1.2)';});h.addEventListener('mouseout', () =>