/* base.css - Estilos base compartidos (body, cursores, canvas). Extraido de index.html */

    /* --- ESTILOS GENERALES BASE --- */
    html, body { 
        margin: 0; 
        padding: 0; 
        overflow: hidden; 
        background: #00020a; 
        font-family: 'Poppins', sans-serif; 
        color: #f0f0f0; 
        touch-action: none; 
        width: 100vw; 
        height: 100vh; 
        /* Cursor de Cohete Espacial por defecto */
        cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='24' font-size='24'>🚀</text></svg>") 0 0, auto;
    }

    /* Cursor de Platillo Volador para botones y elementos interactivos */
    button, a, .dock-btn, .ig-btn, .cerrar-modal, .btn-galeria, .visor-nav, .spacer-heart, #sol, .ig-grid-item {
        cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='24' font-size='24'>🛸</text></svg>") 16 16, pointer !important;
    }
    
    canvas { 
        display: block; 
        position: fixed; 
        inset: 0; 
        /* Asegurar que el canvas mantenga el cursor del cohete */
        cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='24' font-size='24'>🚀</text></svg>") 0 0, auto;
    }
