#jogo-voo { width: 100%; max-width: 400px; }
#voo-start-screen .game-options { margin-top: 1rem; }
#voo-start-screen .difficulty-options { display: flex; flex-direction: column; gap: 10px; }
#voo-start-screen .recorde { margin-bottom: 1.5rem; font-weight: 600; background-color: var(--cor-painel); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--cor-borda); color: var(--cor-texto); }
#voo-start-screen .recorde span { color: var(--cor-sucesso); }

#voo-board {
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, #87ceeb, #f0f8ff);
    border: 3px solid var(--cor-titulo);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
#voo-personagem {
    position: absolute;
    font-size: 3rem;
    user-select: none;
    transition: transform 0.2s ease-out;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}
.voo-score {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 10;
}
.voo-cano {
    position: absolute;
    width: 60px;
    background: linear-gradient(to right, #654321, #8b4513);
    border: 3px solid #4a2a0d;
}

#voo-end-screen .popup h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--cor-titulo);
}
#voo-end-screen .popup p {
    color: var(--cor-texto);
    font-size: 1.2rem;
}
#voo-end-screen .popup button {
    margin: 1.5rem auto 0;
}