/* css/quiz.css */
#quiz {
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px #ff0000;
    color: #fff;
    text-align: center;
}
input, button {
    margin: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}
button {
    background-color: #ff0000;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
button:hover { transform: scale(1.05); background-color: #b30000; }
button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

#hintContainer {
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid #ffcc00;
    border-radius: 8px;
}
.hintBtn {
    background: #333;
    color: #ffcc00;
    border: 1px solid #ffcc00;
    font-size: 0.9em;
    padding: 8px 12px;
}
.hintText {
    margin: 10px 0 0;
    padding: 10px;
    background: #222;
    border-left: 4px solid #ffcc00;
    color: #ffcc00;
    font-style: italic;
    font-size: 0.95em;
    border-radius: 0 5px 5px 0;
}
#highscore {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}
#highscore li {
    padding: 8px 0;
    border-bottom: 1px dashed #444;
    color: #ffcc00;
    display: none;
}
#highscore li:last-child { border-bottom: none; }
#highscore li span { font-weight: bold; }

#quizOver {
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px #ff0000;
    text-align: center;
    color: #ffcc00;
}
#hintText { display: none; }
#hintContent { display: none; }
#quizOptions { display: none; }
#quizQuestion { display: none; }