body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom right, #ffe6ec, #fddde6);
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.game-container {
  background: rgba(255, 255, 255, 0.3);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  width: 100%;
}

h1 {
  text-align: center;
  font-weight: 200;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #2a7a2a;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.verse-selector {
  text-align: center;
  margin-bottom: 20px;
}

.verse-selector select {
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 4px;
}

.verse {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.blank {
  display: inline-block;
  min-width: 20px;
  margin: 0 4px;
  text-align: center;
  color: #999;
}

.revealed {
  color: #2a7a2a;
  font-weight: bold;
}

.controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  padding: 10px 16px;
  border: none;
  background: #4a90e2;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background: #357ab8;
}

.score {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.incorrect-section {
  text-align: center;
  color: crimson;
  font-size: 1rem;
  margin-top: 10px;
}

.incorrect-section span {
  margin: 0 6px;
  font-weight: bold;
}

.history-section {
  text-align: center;
  margin-top: 20px;
}

#clearIncorrectsBtn {
  padding: 6px 12px;
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}

#clearIncorrectsBtn:hover {
  background-color: #c9302c;
}

.instructions {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.guess-history {
  font-size: 0.95rem;
  color: #333;
  max-height: 120px;
  overflow-y: auto;
  padding: 10px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
}