body {
  padding: 0;
  margin: 0;
}
#unity-container {
  position: absolute;
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #ffffff;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url("/assets/img/app-icon.svg") no-repeat center;
  background-size: contain;
  margin-bottom: 25px;
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-logo-title-footer {
  float: left;
  width: 102px;
  height: 38px;
  background: url("/assets/img/logo.svg") no-repeat center;
  background-size: contain;
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}
#unity-fullscreen-button {
  cursor: pointer;
  float: right;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

.progress-container {
  width: 280px;
  height: 18px;
  background-color: #d9d9d9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.progress-indicator {
  height: 100%;
  width: 0%;
  border-radius: 6px;

  /* FigmaGradientBrush Karşılığı */
  background: linear-gradient(to right, #0049ff 0%, #ff1400 67%, #ff8900 100%);

  transition: width 0.3s ease-in-out;
}
