/* Genel Ayarlar ve Değişkenler */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --correct-color: #28a745;
    --incorrect-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Yeni yazı tipini burada uyguluyoruz */
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-text);
    padding: 20px;
}

/* Oyun Alanı Stilleri */
.game-container {
    background-color: var(--light-bg);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-color);
    text-align: center;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

h1 {
    color: var(--primary-color);
    font-weight: 800; /* Daha kalın bir başlık */
    margin-bottom: 10px;
}

/* ================================================= */
/* === DEĞİŞİKLİK BURADA YAPILDI === */
.instructions {
    font-size: 1.25rem; /* Yazı boyutu büyütüldü */
    font-weight: 700; /* Yazı kalınlaştırıldı */
    color: var(--dark-text); /* Yazı rengi koyulaştırıldı */
    background-color: #eef2ff; /* Arka plan rengi eklendi */
    padding: 15px; /* İç boşluk verildi */
    border-radius: 12px; /* Kenarlar yuvarlatıldı */
    margin-bottom: 25px; /* Alt boşluk artırıldı */
    border: 1px solid #dbe4ff; /* İnce bir çerçeve eklendi */
}
/* ================================================= */

.score-board {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: #e9ecef;
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: inline-block;
}

/* Ana "Dinle" Butonu */
.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--light-text);
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.6);
}

/* Seçenek Butonları */
.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.choice-btn {
    color: var(--light-text);
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.choice-btn:hover {
    transform: scale(1.05);
}

.choice-btn:active {
    transform: scale(0.98);
}

.pes { background-color: #ff8c00; } /* Turuncu */
.tiz { background-color: #00c6ff; } /* Açık Mavi */

/* Geri Bildirim ve Cevap Stilleri */
.feedback-message {
    font-size: 1.3rem;
    font-weight: bold;
    min-height: 35px;
    transition: all 0.3s ease;
}

.feedback-message.correct { color: var(--correct-color); transform: scale(1.1); }
.feedback-message.incorrect { color: var(--incorrect-color); transform: scale(1.1); }

.answer-display {
    margin-top: 15px;
    font-size: 1rem;
    color: #495057;
    min-height: 25px;
}

/* Alt Bilgi (Footer) Stilleri */
.site-footer {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
    color: var(--light-text);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #a7d1ff;
}

.site-footer p {
    margin-top: 8px;
    font-size: 0.9rem;
}

/* MOBİL UYUMLULUK KODLARI */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .game-container {
        padding: 20px;
    }
    
    .choices {
        grid-template-columns: 1fr; /* Küçük ekranlarda butonları alt alta getir */
        gap: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .instructions, .choice-btn, .btn-primary {
        font-size: 1rem;
    }
}