/* quiz.css - Eigenständiges Design für das WM-Quiz */
#quiz-container {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid #ff9800;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.joker-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.2);
}
.joker-btn:hover { transform: scale(1.05); }
.joker-btn:disabled { background: #555; color: #888; cursor: not-allowed; box-shadow: none; transform: none; }

#quiz-question-text {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 30px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-answer-btn {
    background-color: #2a2a2a;
    color: #f5f5f5;
    border: 2px solid #444;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    text-align: left;
}
.quiz-answer-btn:hover:not(:disabled) {
    background-color: #333;
    border-color: #ff9800;
}
.quiz-answer-btn.correct {
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: white;
}
.quiz-answer-btn.wrong {
    background-color: #d5001c !important;
    border-color: #d5001c !important;
    color: white;
}
.quiz-answer-btn.hidden-by-joker {
    visibility: hidden;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

@media (max-width: 600px) {
    .quiz-answers-grid { grid-template-columns: 1fr; }
}