/* Font Tanımlamaları */
:root {
  --heading-font: 'Orbitron', sans-serif;
  --body-font: 'Roboto', sans-serif;
}

/* Genel Sayfa ve Arka Plan */
body {
  font-family: var(--body-font);
  margin: 0;
  padding: 20px;
  background: #1a1a2e; /* Koyu gece mavisi */
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

/* Ana Oyun Konteyneri */
.game-container {
  width: 100%;
  max-width: 500px;
  background: #16213e;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #0f3460;
  box-shadow: 0 0 30px rgba(227, 20, 100, 0.4);
}

/* Başlık */
h1 {
  font-family: var(--heading-font);
  font-size: 2.8em;
  color: #e94560;
  margin: 0 0 25px 0;
  text-shadow: 0 0 10px #e94560;
}
h1 .icon {
  display: inline-block;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* İstatistikler (Skor ve Zaman) */
#game-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 30px;
}
.stat-box {
  background: rgba(0,0,0,0.3);
  padding: 15px;
  border-radius: 12px;
  flex: 1;
  border: 2px solid #0f3460;
}
.stat-box .label {
  font-size: 0.9em;
  font-weight: 500;
  color: #a0a0a0;
  letter-spacing: 1px;
}
.stat-box .value {
  font-family: var(--heading-font);
  font-size: 2.5em;
  font-weight: 700;
}
.score-box .value { color: #50c878; } /* Yeşil */
.timer-box .value { color: #ffbd69; } /* Sarı */

/* Zamanlayıcı için uyarı efekti */
.timer-box.warning .value {
  color: #e94560; /* Kırmızı */
  animation: pulse-red 1s infinite;
}
@keyframes pulse-red {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Kelime Giriş Alanı */
.input-area {
  display: flex;
  gap: 10px;
}
#word-input {
  flex-grow: 1;
  font-size: 1.2em;
  padding: 12px;
  background-color: #0f3460;
  border: 2px solid #533483;
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}
#word-input:focus {
  border-color: #e94560;
}

/* Buton */
#submit-btn {
  font-family: var(--heading-font);
  padding: 0 25px;
  font-size: 1.1em;
  background-color: #e94560;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
#submit-btn:hover {
  background-color: #ff7182;
}

/* Geri Bildirim Alanı */
#feedback {
  min-height: 24px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1em;
  transition: opacity 0.3s;
}
#feedback.correct { color: #50c878; }
#feedback.incorrect { color: #e94560; }

/* Oyun Sonu Formu */
#end-form {
  border-top: 2px solid #0f3460;
  margin-top: 25px;
  padding-top: 20px;
}
#end-form h2 {
  font-family: var(--heading-font);
  font-size: 2.2em;
  color: #ffbd69;
}
.final-score-display {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
#final-score-value {
  font-family: var(--heading-font);
  color: #50c878;
}
.end-input {
  width: 80%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 2px solid #533483;
  background: #0f3460;
  color: #fff;
  font-size: 1em;
}
.submit-btn {
  font-family: var(--heading-font);
  padding: 12px 25px;
  font-size: 1.1em;
  background-color: #50c878;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}