html, body {
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
canvas {
  display: block;
}

html, body {
  margin: 0;
  padding: 0;
}
canvas {
  display: block;
}


#player-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

#music-toggle {
  background: rgba(33, 33, 33, 0.8);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#music-toggle:hover {
  background: rgba(255, 255, 255, 1);
}

#volume-slider {
  margin-top: 8px;
  transform: rotate(-90deg);
  width: 100px;
  display: none;
}

#grass-hint {
  position: absolute;
  top: 24px;
  right: 150px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

/* Hover logic for wrapper */
#player-wrapper:hover #volume-slider {
  display: block;
}

#player-wrapper:hover #grass-hint {
  color: rgb(0, 0, 0, 1);
}
