body {
  padding: 0;
  margin: 0;
  background-color: #f9f3e8;
}
#unity-container {
  position: fixed;
  width: 100%;
  height: 100%;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  background-color: #f9f3e8;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 200px;
  height: 200px;
  background: url("../Logo512x512.png") no-repeat center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#unity-progress-bar-empty {
  width: 100%;
  border-radius: 4px;
  height: 18px;
  border: 2px solid #dccbab;
  margin-top: 16px;
  position: relative;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  background-color: #dccbab;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
