/* ═══════════════════════════════════════════════════════════
   starfield.css — Fondo oscuro + nebulosa
   ═══════════════════════════════════════════════════════════ */

/* Fondo oscuro base para todo el sitio */
body {
    background-color: #04020e !important;
}

/* Nebulosa fija detrás de todo el contenido */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 25%, rgba(100, 30, 200, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 65%, rgba(30,  80, 200, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 45% 55% at 50% 50%, rgba(60,  10, 120, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Asegurar que el starfield quede por debajo de todo */
#starfield-bg {
    z-index: 0 !important;
}
