/* ---------------------------
   Ortak Harfcan Stilleri
--------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
  color: #333;
}

header {
  background: linear-gradient(135deg, #63cdda, #2b9bd3);
  padding: 30px;
  text-align: center;
  color: #fff;
  position: relative;
}

.logo {
  display: inline-block;
  width: 120px;
  margin-bottom: 10px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.harfcan-character {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url('harfcan.png') no-repeat center center / cover;
  border: 3px solid #fff;
  border-radius: 50%;
}

.container {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

/* Footer */
footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* ---------------------------
   Okuma Anlama Quiz Stilleri
--------------------------- */
.quiz-container {
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  text-align: center;
}

/* Metin ve soru alanları */
.reading-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 15px;
}

.question-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
  font-weight: bold;
}

/* Şıklar (Seçenekler) */
.options button {
  display: inline-block;
  margin: 8px;
  padding: 10px 15px;
  font-size: 1em;
  border-radius: 8px;
  border: 2px solid #ffaf7a;
  background-color: #ffd1a3;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.options button:hover {
  background-color: #ffbc85;
}

/* Geri bildirim (Doğru/Yanlış) */
.feedback {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1rem;
}

/* Sonraki soru butonu */
#nextButton {
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 1em;
  background-color: #ffaf7a;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#nextButton:hover {
  background-color: #ff9260;
}

/* Geri linki */
.back-link {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #ff7a7a;
  font-weight: bold;
}
