html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2b2d42 0%, #3a3d5c 50%, #4a5080 100%);
  color: #e0e0e0;
}

.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

#snowperson {
  width: 220px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: opacity 0.3s ease;
}

#guessesLeft {
  font-size: 1.1rem;
  font-weight: 600;
  color: #5bc0be;
  letter-spacing: 0.05em;
}

#word {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #ffffff;
  text-transform: uppercase;
}

#letters {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #8a8a9a;
  min-height: 1.5em;
}

#winOrLose {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  min-height: 2em;
}