La utopía es un espejo sin reflejo.
", "css": "#utopia-container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; background: radial-gradient(circle, #f0f8ff, #e6e6fa); font-family: 'Courier New', monospace; } #nucleus { width: 100px; height: 100px; background: white; border-radius: 50%; box-shadow: 0 0 50px rgba(255, 255, 255, 0.8), inset 0 0 20px #87ceeb; cursor: pointer; transition: transform 0.5s; } .text { margin-top: 20px; color: #555; opacity: 0.7; pointer-events: none; }", "js": "const nucleus = document.getElementById('nucleus'); nucleus.addEventListener('mouseover', () => { nucleus.style.transform = 'scale(1.5) rotate(45deg)'; }); nucleus.addEventListener('mouseout', () =>