@font-face { font-family: "LiberationSans"; src: url("LiberationSans.ttf") }
body { 
  padding: 0; 
  margin: 0; 
  height: 100vh; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  background-color: black;
}
#unity-container { 
  position: relative; 
  width: 100%; 
  height: 0;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  max-width: 1920px;
  max-height: 1080px;
}
#unity-canvas { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #231F20;
}
#unity-loading-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
#unity-loading-image {
  max-width: 200px; /* Adjust as needed */
  margin-bottom: 20px;
}
#unity-loading-bar { 
  width: 300px; 
  margin: 0 auto;
}
#unity-progress-bar-empty { 
  width: 100%; 
  height: 8px; 
  background-color: rgba(255, 255, 255, 0.4);
}
#unity-progress-bar-full { 
  width: 0%; 
  height: 100%; 
  background-color: #ffe600;
}
#unity-background { position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: none; background: url('unity-background.png') }
#unity-fullscreen-button {
  position: absolute;
  top: 0vmin;
  right: 2vmin;
  width: 6vmin;
  height: 6vmin;
  background: url('fullscreen-button.png') no-repeat center;
  background-size: contain;
  z-index: 1000;
  cursor: pointer;
}
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
