/* Fond dégradé animé pour le corps de la page */
body {
    background: linear-gradient(-45deg, #10165a, #9d3646);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
}

/* Animation du fond dégradé */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}