body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #181825;
    overflow: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
}

#center {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#message {
    font-size: 1.5rem;
    color: #f8ffae;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-shadow: 0 0 8px #43c6ac88;
    width: 90vw;
    max-width: 400px;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}

#message.visible {
    opacity: 1;
}

#message.hidden {
    opacity: 0;
}

#affiche-container {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#affiche {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}

#affiche.visible {
    opacity: 1;
}

#affiche.hidden {
    opacity: 0;
}

.neon {
    color: #43c6ac;
    text-shadow: 0 0 12px #43c6ac, 0 0 32px #f8ffae;
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    #message {
        font-size: 1.05rem;
        max-width: 98vw;
    }
    #affiche {
        max-width: 98vw;
        max-height: 50vh;
    }
}

/* Supprime le style du carousel et du cadre */
#content, .carousel, .carousel-track, .carousel-img, .carousel-arrow, #final-message {
    display: none !important;
}
