/* RESET COMPLET */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden; /* Évite les barres de défilement inutiles */
}

body {
    background-image: url("../img/fond.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 30px;
}

/* LA SEULE ET UNIQUE BOÎTE BLANCHE */
main, header {
    display: block;
    background: #FFFFFF !important; /* BLANC PUR */
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-width: 650px;
    text-align: center;
    border-top: 8px solid #5BCEFA;
    border-bottom: 8px solid #F5ABB9;
    backdrop-filter: none !important; /* SUPPRIME LE FLOU */
}

/* TITRE NET ET PROPRE */
h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.2;
    background: linear-gradient(to right, #5BCEFA, #F5ABB9, #5BCEFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 1px rgba(0,0,0,0.1));
}

/* TEXTES EN NOIR SUR FOND BLANC */
p {
    color: #333333 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
    text-shadow: none !important; /* ENLÈVE TOUT TEXTE FLOU */
}

.highlight {
    color: #F5ABB9;
    font-weight: bold;
}
