.letter {
  display: inline-block;
  color: transparent;
  border-bottom: 4px solid #440041;
  margin: 0 8px;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 10px 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  min-width: 40px;
  text-align: center;
}

.word {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 20px 0;
}

.correct {
  color: #fff800 !important;
  text-shadow: 0 2px 10px rgba(255, 248, 0, 0.5);
  animation: letteranim 0.5s ease;
  border-color: #fff800;
}

.wrongLetters {
  font-size: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wrongLetters p {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wrongLetters li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 8px;
  color: white;
  text-transform: uppercase;
  border-radius: 8px;
  animation: letteranim 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.3);
  min-height: 40px;
}
