/* BASE */
body.light-theme,
body.dark-theme {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%; /* 🔥 más grande */
    background-attachment: fixed;
}

/* 🌙 DARK */
body.dark-theme {
    background-image: url('/image/logo/background-dark.png');
}

/* ☀️ LIGHT */
body.light-theme {
    background-image: url('/image/logo/background-light.png');
}

    /* 🔥 Overlay suave (clave para bajar intensidad) */
    body.dark-theme::before,
    body.light-theme::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
    }

/* DARK overlay */
body.dark-theme::before {
    background: radial-gradient(circle at center, rgba(11,17,32,0.85) 0%, rgba(11,17,32,0.95) 70%);
}

/* LIGHT overlay */
body.light-theme::before {
    background: radial-gradient(circle at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 70%);
}


/*body.dark-theme {
    background-size: 30%;
    opacity: 0.98;
}

body.light-theme {
    background-size: 25%;
}*/