html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 1000;
  font-size: 18px;
  display: none;
}

.instructions {
  position: fixed;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  border-radius: 5px;
  z-index: 999;
  font-size: 14px;
  max-width: 300px;
}

canvas {
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* VR Button Styling 
.a-enter-vr-button {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 999999 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  border: 2px solid #fff !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.a-enter-vr-button:hover {
  background: rgba(0, 0, 0, 0.9) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
}

.a-enter-vr-button:active {
  transform: scale(0.95) !important;
}*/

/* Loading indicator */
.loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  z-index: 1000;
  display: none;
}

/* Instructions overlay */
.instructions {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  max-width: 300px;
  z-index: 1000;
}

/* Hide instructions in VR */
.a-enter-vr .instructions {
  display: none;
}