/* Estilos para o jogo DinoQuiz tipo Milionário */
body {
    background: transparent !important;
    margin: 0;
    padding: 0;
}
.container.jogo-milionario-outer {
    min-height: 0;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    justify-content: flex-start;
}
.jogo-milionario-card {
    margin: 0 auto;
    box-shadow: 0 0 60px 10px #000b, 0 0 0 6px #ffd70055;
    border: 4px solid #ffd700;
    background: rgba(20, 30, 60, 0.98);
    border-radius: 32px;
    padding: 38px 32px 32px 32px;
    max-width: 600px;
    width: 100%;
    color: #fff;
    position: relative;
    overflow: visible;
}
#jogoPergunta {
    margin-bottom: 36px;
    font-size: 1.7rem;
    color: #ffd700;
    text-align: center;
    font-weight: bold;
    background: rgba(26,35,126,0.92);
    border-radius: 18px;
    padding: 28px 18px 24px 18px;
    border: 3px solid #ffd700;
    box-shadow: 0 2px 24px #0006, 0 0 0 4px #ffd70033;
    letter-spacing: 1.5px;
    min-width: 340px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#jogoRespostas {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-top: 10px;
    align-items: center;
}
.jogo-respostas-row {
    display: flex;
    flex-direction: row;
    gap: 22px;
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
}
.jogo-resposta-btn {
    background: linear-gradient(90deg, #1a237e 60%, #0d133d 100%);
    color: #fff;
    border: 3px solid #ffd700;
    border-radius: 32px;
    padding: 20px 36px;
    font-size: 1.25rem;
    font-weight: bold;
    width: 45%;
    min-width: 120px;
    max-width: 320px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    box-shadow: 0 2px 18px #0004, 0 0 0 3px #ffd70033;
    outline: none;
    position: relative;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.jogo-resposta-btn:hover:not(:disabled) {
    background: #ffd700;
    color: #1a237e;
    border: 3px solid #fff;
    box-shadow: 0 4px 32px #ffd70077;
}
.jogo-resposta-btn:disabled {
    opacity: 0.85;
    cursor: default;
}
.jogo-resposta-btn.locked {
    background: linear-gradient(90deg, #ffd700 60%, #ffed4e 100%);
    color: #1a237e;
    border: 3px solid #fff;
    box-shadow: 0 4px 24px #ffd70088;
}
.jogo-resposta-btn.locked .jogo-resposta-letra {
    background: #1a237e;
    color: #ffd700;
}
.jogo-resposta-btn.blinking {
    animation: blinkYellow 1s ease-in-out;
}
@keyframes blinkYellow {
    0%, 100% {
        background: linear-gradient(90deg, #1a237e 60%, #0d133d 100%);
        color: #fff;
        border-color: #ffd700;
    }
    50% {
        background: linear-gradient(90deg, #ffd700 60%, #ffed4e 100%);
        color: #1a237e;
        border-color: #fff;
        box-shadow: 0 4px 24px #ffd70088;
    }
}
.jogo-resposta-btn.blinking .jogo-resposta-letra {
    animation: blinkYellowLetter 1s ease-in-out;
}
@keyframes blinkYellowLetter {
    0%, 100% {
        background: #ffd700;
        color: #1a237e;
    }
    50% {
        background: #1a237e;
        color: #ffd700;
    }
}
.jogo-resposta-letra {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    color: #1a237e;
    font-weight: bold;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    text-align: center;
    font-size: 1.25rem;
    margin-right: 14px;
    box-shadow: 0 2px 8px #ffd70055;
    border: 2px solid #fff;
    flex-shrink: 0;
}
#jogoFeedback {
    margin: 32px 0 8px 0;
    font-size: 1.25rem;
    min-height: 32px;
    text-align: center;
    color: #ffd700;
    font-weight: bold;
    letter-spacing: 1.2px;
}
.jogo-controles {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 24px 0 16px 0;
}
#btnTravar, #btnRevelar {
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 2px solid #ffd700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    min-width: 140px;
}
#btnTravar {
    background: linear-gradient(90deg, #ffd700 60%, #ffed4e 100%);
    color: #1a237e;
}
#btnTravar:hover:not(:disabled) {
    background: linear-gradient(90deg, #ffed4e 0%, #ffd700 100%);
    box-shadow: 0 4px 16px #ffd70055;
}
#btnTravar:disabled {
    background: #666;
    color: #999;
    border-color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}
#btnRevelar {
    background: linear-gradient(90deg, #1a237e 60%, #0d133d 100%);
    color: #ffd700;
}
#btnRevelar:hover:not(:disabled) {
    background: linear-gradient(90deg, #0d133d 0%, #1a237e 100%);
    box-shadow: 0 4px 16px #1a237e55;
}
#btnRevelar:disabled {
    background: #666;
    color: #999;
    border-color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}
#btnProximaPergunta, #btnReiniciar {
    margin-top: 16px;
    padding: 16px 48px;
    font-size: 1.18rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(90deg, #ffd700 60%, #1a237e 100%);
    color: #1a237e;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px #0001;
    letter-spacing: 1.2px;
}
#btnProximaPergunta:hover, #btnReiniciar:hover {
    background: linear-gradient(90deg, #1a237e 0%, #ffd700 100%);
    color: #fff;
}

/* Perks System */
.jogo-perks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px 0;
}

.perk-sphere {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
    position: relative;
}

.perk-sphere:hover:not(.perk-used) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
}

.perk-sphere.perk-used {
    background: linear-gradient(135deg, #666 0%, #999 100%);
    border-color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.perk-text {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 1;
}

.perk-sphere.perk-used .perk-text {
    color: #ccc;
}
@media (max-width: 700px) {
    .jogo-milionario-card {
        padding: 8px 2vw 12px 2vw;
        max-width: 99vw;
    }
    #jogoPergunta {
        font-size: 1.1rem;
        padding: 10px 2px;
        min-width: 0;
    }
    .jogo-resposta-btn {
        font-size: 1rem;
        padding: 10px 8px;
        width: 100%;
        min-width: 0;
        max-width: 99vw;
    }
    .jogo-respostas-row {
        flex-direction: column;
        gap: 12px;
    }
}
