/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Conteneur principal */
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
}

/* Titres et paragraphes */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

/* ✅ Correction input */
input {
    padding: 10px;
    width: calc(100% - 20px); /* Empêche de dépasser le container */
    max-width: 100%;
    font-size: 1.2em;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box; /* Prend en compte padding et border */
}

/* Style des boutons */
button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin: 5px 0;
}

button:hover {
    background-color: #218838;
}

/* Style du bouton "Rejouer" */
#restartGame {
    background-color: #ff5e62;
    display: none;
}

#restartGame:hover {
    background-color: #d9534f;
}

/* Message */
#message {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
}

/* ✅ MEDIA QUERIES : Ajustements pour petits écrans */
@media (max-width: 500px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    input {
        font-size: 1em;
        padding: 8px;
    }

    button {
        font-size: 1em;
        padding: 10px;
    }
}
