.hangman-container-83237688 {
    text-align: center;
    font-family: sans-serif;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
}
.hangman-status {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: bold;
}
.hangman-word {
    margin-bottom: 30px;
    font-size: 1.5em;
    letter-spacing: 5px;
    word-break: break-all;
}
.hangman-letter-box {
    display: inline-block;
    width: 30px;
    border-bottom: 2px solid #333;
    margin: 0 5px;
    text-align: center;
}
.hangman-keyboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}
.hangman-key {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}
.hangman-key:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.hangman-key.correct {
    background: #d4edda;
    border-color: #c3e6cb;
}
.hangman-key.wrong {
    background: #f8d7da;
    border-color: #f5c6cb;
}
.hangman-message {
    font-size: 1.2em;
    font-weight: bold;
    min-height: 25px;
}