html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#unity-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#unity-canvas {
  display: block;
  background: #ebebeb;
}

/* Rotating Circle Animation */
#rotating-circle {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, -50%);
  display: none;
}

#rotating-circle img {
  width: 40px;
  height: auto;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Centered Image Styling */
#centered-image {
  position: absolute;
  left: 50%;
  bottom: 42%;
  transform: translate(-50%, -50%);
  display: none;
}

#centered-image img {
  width: 150px;
  height: auto;
}

/* Fullscreen Button Styling */
#fullscreen-button {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

#fullscreen-button img {
  width: 50px;
  height: 50px;
}

/* Loading Texts Styling */
#loading-texts {
  position: absolute;
  bottom: 5px; /* Positioned at the top center */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(150, 146, 146);
  font-family: Arial, sans-serif;
  font-size: 15px;
  z-index: 100;
}

#wait-text {
  margin-bottom: 5px;
}
#loading-percentage {
  position: absolute;
  bottom: 300px; /* sits 40px below powered-by (adjust as needed) */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(150, 146, 146);
  font-family: Arial, sans-serif;
  font-size: 20px;
  z-index: 100;
  display: none; /* hidden until loading starts */
}
/* Powered by text styling */
#powered-by-text {
  position: absolute;
  bottom: 340px; /* Positioned at the bottom center */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(150, 146, 146);
  font-family: Arial, sans-serif;
  font-size: 27px;
  z-index: 100;
}

#powered-by {
  color: rgb(0, 0, 0);
}

#falcon-reality {
  position: relative; /* Change this to relative */
  right: -2%;
  color: black;
}
#falconlogo {
  position: relative; /* Change this to relative */
  right: -5%;
  bottom: -5%; /* Adjust this value to move the logo up or down */
  width: 18px;
  height: auto;
}
#unity-loading-bar {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#unity-progress-bar-empty {
  width: 80%;
  height: 24px;
  margin: 10px 20px 20px 10px;
  text-align: left;
  border: 1px solid rgb(244, 0, 0);
  padding: 2px;
}
#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: rgb(248, 0, 0);
}
.light #unity-progress-bar-empty {
  border-color: rgb(11, 218, 73);
}
.light #unity-progress-bar-full {
  background: rgb(72, 22, 210);
}
