body {
  font-family: Comic Sans MS, cursive, sans-serif;
  background: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

h1 {
  font-size: 2em;
  color: #333;
}

.word {
  font-size: 3em;
  color: #0077cc;
  margin: 20px 0;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option {
  font-size: 2em;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.3s;
}

.option:hover {
  background: #d1f0ff;
}

#result {
  font-size: 2em;
  margin-top: 20px;
}

/* Score display */
.score {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

/* Progress bar */
.progress-bar {
  height: 5px;
  background: #4CAF50;
  width: 0;
  margin: 10px 0;
  border-radius: 5px;
}

/* Skip button */
.skip-btn {
  padding: 8px 15px;
  margin-top: 15px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.skip-btn:hover {
  background: #e0e0e0;
}
