/* Oldschool dungeon aesthetic */
#stage {
  background: #0d0a14;
}

.screen[data-screen="start"] {
  background: radial-gradient(circle at center, #241b35 0%, #0c0814 80%);
}

.screen[data-screen="gameover"] {
  background: radial-gradient(circle at center, #351414 0%, #0c0814 85%);
}

.screen[data-screen="win"] {
  background: radial-gradient(circle at center, #3b3216 0%, #0c0814 85%);
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #f7d070;
  text-shadow: 0 0 16px rgba(247, 208, 112, 0.4);
}

h2 {
  color: #ff9b71;
  text-shadow: 0 0 12px rgba(255, 155, 113, 0.5);
}

#tagline {
  color: #b0a8c9;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

button {
  background: #6c47b5;
  box-shadow: 0 4px 12px rgba(108, 71, 181, 0.4);
  border: 1px solid #9e7aff;
  font-weight: bold;
}

button:active {
  background: #583796;
}
