/* ── SVG Cosmos background ── */
.bg-cosmos {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: var(--star-opacity);
    transition: opacity 0.8s;
}

.sigil-main {
    transform-origin: center;
}

[data-theme="light"] .bg-cosmos {
    opacity: var(--star-opacity);
}

/* ── Shooting stars canvas ── */
#shootingStars {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ── Noise texture ──
   Désactivé : feTurbulence en position:fixed+z-index:9999 forçait Firefox à
   recomposer un calque coûteux sur tout l'écran à chaque repaint. */
