/* ÇOCUK TEMASI: css/egzersiz.css */

.exercise-container {
    width: 95%;
    max-width: 900px;
    margin: 30px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 30px;
    border: 4px solid #4CC9F0; /* Mavi Çerçeve */
    box-shadow: 10px 10px 0px rgba(76, 201, 240, 0.2); /* Sert gölge */
}

/* Başlıklar */
.exercise-screen h1 {
    color: #FF9F1C;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #eee;
}
.exercise-screen p {
    font-size: 1.3em;
    color: #666;
    line-height: 1.6;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
}

/* --- OYUN BUTONLARI (BÜYÜK) --- */
.button-egzersiz {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    background-color: #2EC4B6; /* Turkuaz */
    border: none;
    border-radius: 50px; /* Hap şeklinde */
    border-bottom: 6px solid #1d8a7f; /* 3D */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.1s;
    margin: 15px 10px;
    font-family: 'Fredoka', sans-serif;
}
.button-egzersiz:active {
    transform: translateY(4px);
    border-bottom-width: 2px;
}
.button-egzersiz:hover {
    background-color: #3ce0d0;
}

/* İkincil Buton (Gri/Beyaz) */
.button-egzersiz.secondary {
    background-color: #f1f5f9;
    color: #555;
    border-bottom: 6px solid #cbd5e1;
}
.button-egzersiz.secondary:hover {
    background-color: #e2e8f0;
}

/* --- Zamanlayıcı (Kocaman) --- */
.timer-display {
    font-size: 3em;
    font-weight: 700;
    color: #FF6B6B;
    background: #fff0f0;
    padding: 10px 30px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    border: 3px dashed #FF6B6B;
}

/* --- Metin Okuma Alanı --- */
.text-area, .text-area-shadowed {
    border: 3px solid #ddd;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    line-height: 2.2; /* Daha geniş satır aralığı */
    text-align: justify;
    font-size: 1.4em; /* Daha büyük yazı */
    color: #444;
    margin-bottom: 25px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

/* --- Sonuç Kartları --- */
.results-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.metric {
    padding: 20px 30px;
    border-radius: 20px;
    background-color: #fff;
    border: 3px solid #FFD93D;
    min-width: 180px;
    text-align: center;
    box-shadow: 5px 5px 0 #FFD93D;
}
.metric .label {
    display: block;
    font-size: 1.1em;
    color: #888;
    font-weight: 600;
    margin-bottom: 5px;
}
.metric .value {
    font-size: 2.8em;
    font-weight: 700;
    color: #333;
}

/* --- Ayar Kutuları (Selectbox) --- */
select {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1em;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}