.forca-jogo .container {
    display: flex;
    gap: 70px;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 850px;
    width: 100%;
    border-radius: 10px;
}

.forca-jogo .caixa-forca {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.forca-jogo .caixa-forca img {
    width: 100%;
    max-width: 230px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.forca-jogo .caixa-forca h2 {
    font-size: 1.45rem;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
}

.forca-jogo .caixa-jogo .exibicao-palavra {
    gap: 10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.forca-jogo .exibicao-palavra .letra {
    width: 28px;
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
}

.forca-jogo .exibicao-palavra .letra.adivinhada {
    margin: -40px 0 35px;
    border-color: transparent;
}

.forca-jogo .caixa-jogo h4 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.forca-jogo .caixa-jogo h4 b {
    font-weight: 600;
}

.forca-jogo .caixa-jogo .texto-erros b {
    color: #ff4c6b;
}

.forca-jogo .teclado {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    max-width: 420px;
    width: 100%;
}

.forca-jogo .linha-teclado {
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
}

.forca-jogo .linha-teclado button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    background: #da1a5a;
    color: #000000;
    cursor: pointer;
    user-select: none;
}

.forca-jogo .teclado button[disabled] {
    pointer-events: none;
    opacity: 0.6;
}

.forca-jogo .teclado button:hover:not(:disabled) {
    background: #e0527d;
}

.forca-jogo .modal-jogo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 0 10px;
    transition: opacity 0.4s ease;
}

.forca-jogo .modal-jogo.mostrar {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s 0.4s ease;
}

.forca-jogo .modal-jogo .conteudo {
    padding: 30px;
    max-width: 420px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.forca-jogo .modal-jogo img {
    max-width: 130px;
    margin-bottom: 20px;
}

.forca-jogo .modal-jogo h4 {
    font-size: 1.53rem;
}

.forca-jogo .modal-jogo p {
    font-size: 1.15rem;
    margin: 15px 0 30px;
    font-weight: 500;
}

.forca-jogo .modal-jogo p b {
    color: #da1a5a;
    font-weight: 600;
}

.forca-jogo .modal-jogo button {
    padding: 12px 23px;
    background: #f0c3cf;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.forca-jogo .modal-jogo button:hover {
    background: #e4a9bb;
}

/* Responsividade */
@media (max-width: 768px) {
    .forca-jogo .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .forca-jogo .caixa-forca {
        padding-top: 0;
    }
}