/* Style général */
body {
    font-family: "Lucida Console", Courier, monospace;
    text-align: center;
    margin-top: 5%;
    background-color: #4b2342;
    color :#dcf5ff;
}

h1{
    font-size: 64px;
}

#grid {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 20px;
}

.row {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Cases des lettres */
.letter-box {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    border: 4px solid honeydew;
    border-radius: 10px;
    background-color: #55415f;
    color: #dcf5ff;
}

/* Couleurs des cases */
.green { background-color: #6aaa64;}  /* ✅ Lettre bien placée */
.yellow { background-color: goldenrod; } /* 🟡 Lettre présente mais mal placée */
.gray { background-color: #787c7e; }   /* ⚫ Lettre absente */

#end {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Clavier virtuel */
#keyboard {
    display: grid;
    grid-template-columns: repeat(10, 40px);
    gap: 5px;
    justify-content: center;
}

#restart {
    font-size: 18px;
    padding: 10px;
    border: 1px solid #333;
    background-color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    outline : 1px solid black;
}

#refresh {
    font-size: 18px;
    padding: 10px;
    border: 1px solid #333;
    background-color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    outline : 1px solid black;
}

#restart:hover {
    background-color: lightgray;
}

.win {
    color: rgb(13, 191, 64);
}

.lose {
    color: #d35134;
}

body.win{
    background-color: rgb(14, 40, 14);
}

body.lose{
    background-color: rgb(98, 20, 20);
}