    .pendu-game {
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    .lettre {
        cursor: pointer;
        display: inline-block;
        margin: 5px;
        padding: 5px;
        border: 1px solid #000;
        border-radius: 4px;
        background-color: #f0f0f0;
        font-size: 22px;
    }
    
    .disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }
    
    #dessin_pendu {
        font-family: monospace;
    }
    .head { color: red; }
    .body { color: green; }
    .left-arm, .right-arm { color: blue; }
    .left-leg, .right-leg { color: black; }
    .hangman { white-space: pre; font-family: monospace; font-size: 18px; }


    #mot_masque {
        display: inline;
        font-size: 34px;
        letter-spacing: 6px;
        padding: 0 8px;
        /*border-bottom: 2px solid #000;*/
        font-weight: bold;
    }
    .mot_masque {
        color: red;
    }
    #alphabet {
        margin-top: 20px;
    }
    
    #message {
        font-size: 18px;
        font-weight: bold;
    }
    
    #nouveau_jeu {
        display: block;
        margin-top: 20px;
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 18px;
    }
    
    #nouveau_jeu:hover {
        background-color: #0056b3;
    }