body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #2e3b4e, #4a576c);
  color: white;
}

#unity-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}

#unity-preview {
  position: absolute;
  top: 25%; /* Центрируем иконку относительно прогресс-бара */
  left: 50%;
  transform: translateX(-50%);
  width: 200px; /* Иконка по ширине */
  height: 120px; /* Иконка по высоте */
  margin-bottom: 10px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#unity-loading-text {
  position: absolute;
  top: 70%; /* Под прогресс-баром */
  font-size: 18px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease-in-out;
}

#unity-preview img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

#unity-game-title {
  position: absolute;
  top: 15%; /* Располагаем название выше прогресс-бара */
  font-size: 36px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 60%; /* Под иконкой */
  transform: translateX(-50%);
  width: 30%; /* Уменьшаем ширину прогресс-бара в 3 раза */
  height: 20px;
  border-radius: 15px;
  background: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

#unity-progress-bar-empty {
  width: 100%;
  height: 100%;
  background: #444;
  border-radius: 15px;
}

#unity-progress-bar-full {
  height: 100%;
  background: linear-gradient(90deg, #ff6a00, #ff4500);
  border-radius: 15px;
  width: 0%; /* Начальная ширина */
  transition: width 0.2s ease-in-out;
}

#unity-loading-text {
  position: absolute;
  top: 70%; /* Под прогресс-баром */
  font-size: 18px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

#unity-footer {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#unity-webgl-logo {
  background: url('webgl-logo.png') no-repeat center;
  width: 204px;
  height: 38px;
}

#unity-build-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-left: 20px;
  line-height: 38px;
}

#unity-fullscreen-button {
  cursor: pointer;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
  margin-left: 10px;
}

/* Warning banner styling */
#unity-warning {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

/* 
