/* Style général de la page */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Carte principale */
.container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}


/* Titre */
h1 {
    margin-top: 0;
    color: #333;
}


/* Description */
p {
    color: #666;
}


/* Zone de texte */
textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 14px;
    margin-top: 15px;
}


/* Bouton analyser */
button {
    margin-top: 15px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #8b5cf6;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}


/* Animation bouton */
button:hover {
    background: #7c3aed;
}


/* Bloc résultat */
.result {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: #f5f3ff;
    border-left: 5px solid #8b5cf6;
}


/* Score */
.result p {
    font-weight: bold;
    color: #333;
}