body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  background: black;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
}

#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.4);
  padding: 20px 30px;
  border-radius: 12px;
  z-index: 10;
}

#startButton {
  font-size: 1.5em;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid white;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

#controls.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(10px);
  pointer-events: none;
}



#volume {
  transform: translate(4px, 6px);
}

.hidden {
  display: none !important;
}

#controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(0px);
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 12px;
  color: white;
  opacity: 1;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
  pointer-events: auto;
  min-width: 280px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

#statusText p {
  margin: 10px 0;
  font-size: 1em;
  color: #ddd;
}

#statusText a {
  color: #ccc;
  text-decoration: underline;
}

#statusText a:hover {
  color: white;
}

#volumeWrapper {
  margin-top: 15px;
  margin-bottom: 10px;
}

#volume {
  width: 200px;
  accent-color: white;
}

#backLink a {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #aaa;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#backLink a:hover {
  color: white;
}

#controls {
  padding: 16px 20px;
}
