body { 
  margin: 0; 
  overflow: hidden; 
  background: #000; 
}

canvas { 
  display: block; 
}

#debug {
  position: fixed;
  top: 10px;
  left: 10px;
  color: #a5a5a5;
  background: rgba(0,0,0,0.5);
  padding: 5px 10px;
  font-family: monospace;
  z-index: 100;
}

#websiteLabel {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #a5a5a5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 1000;
  pointer-events: none;
}

#versionLabel {
  position: fixed;
  top: 30px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #a5a5a5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 1000;
  pointer-events: none;
}
#controlsMessage {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}


button {
  background-color: transparent;
  color: #a5a5a5;
  cursor: pointer;
  border: none;
  padding: 0;        
  text-align: right;
  display: block;
  width: 100%;
}


#optionsWrapper {
  position: fixed;
  bottom: 50px;
  right: 10px;
  font-family: sans-serif;
  user-select: none;
  text-align: right; 
  width: auto;
}

#optionsContent {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.5);
  padding: 0;
  margin: 0;
  border-radius: 8px;
  display: block; 
  text-align: right; 
}

#bottomRightButtons {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}


#contactBtn {
  background-color: rgba(0,0,0,0.5);
  color: #a5a5a5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

#optionsToggle {
  cursor: pointer;
  color: #a5a5a5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  background-color: rgba(0,0,0,0.5);
}
