/* Genel Ayarlar ve Font */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: auto;
}

header h1 {
    font-size: 2.5em;
    color: #4a4a4a;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Oyun Alanı ve Öğeleri */
#game-area {
    margin-top: 20px;
}

#question-text {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #555;
}

#audio-player-container {
    margin-bottom: 30px;
}

/* Buton Stilleri */
#answers-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.answer-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.answer-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.answer-btn:active {
    transform: translateY(0);
}

.answer-btn.correct {
    background-color: #28a745;
}

.answer-btn.incorrect {
    background-color: #dc3545;
}

#next-question-btn {
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

#next-question-btn:hover {
    background-color: #5a6268;
}

/* Yeniden Başlat Butonu */
#restart-game-btn {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

#restart-game-btn:hover {
    background-color: #218838;
}

/* Geri Bildirim ve Skor */
#feedback-text {
    font-size: 1.2em;
    font-weight: 600;
    min-height: 2em;
}

#score-container {
    margin-top: 20px;
    font-size: 1.1em;
    color: #666;
}

#correct-count, #incorrect-count {
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
}

footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    #answers-container {
        grid-template-columns: 1fr 1fr;
    }
}