/* ==========================================================================
   ✨ LITTLE SAGAS — CIEL ÉTOILÉ (Système Auth)
   Étoiles générées en JS, animées en CSS
   Dark mode : étoiles dorées lumineuses
   Light mode : étoiles cuivre discrètes
   ========================================================================== */

.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    transition: opacity var(--transition-slow);
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--star-color);
    border-radius: var(--radius-full);
    animation: twinkle var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

/* Variante grande étoile */
.star.big {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 6px 1px var(--star-color);
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: var(--star-opacity); transform: scale(1); }
}

/* En mode jour, les étoiles sont très discrètes */
body.light-mode .stars {
    opacity: 0.4;
}

/* ──────────────────────────────────────
   Ambiance : halos subtils sur le fond
   ────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--grad-body);
    pointer-events: none;
    z-index: 0;
}
