html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black !important; /* Change background color to black */
}

#unity-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none; /* Hide Unity container initially */
}

#unity-canvas {
  width: 100% !important;
  height: 100% !important;
}

#riv-container {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#riv-canvas {
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: none;
}

#loading-text {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 20px;
} 