body {
  margin: 0;
  background: #010b13;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

#app {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#logo {
  font-size: 32px;
  margin-bottom: 40px;
}

#playButton {
  background: #00bfff;
  color: #010b13;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.1s ease;
}

#playButton:active {
  transform: scale(0.98);
  background: #00a5d6;
}

#progressContainer {
  margin-top: 20px;
  opacity: 0.7;
}

#maintenance {
  background: #c97a3a;
  color: #010b13;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.hidden {
  display: none;
}
