body { padding: 0; margin: 0; overflow: hidden; background: #231F20; }
#unity-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
#unity-container.unity-desktop { transform: none; }
#unity-container.unity-mobile { width: 100%; height: 100%; }
#unity-canvas { background: #231F20; max-width: 100vw; max-height: 100vh; object-fit: contain; }
.unity-mobile #unity-canvas { width: 100%; height: 100%; }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('LOGO dark back 2.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 10; background: rgba(0,0,0,0.7); padding: 5px 10px; box-sizing: border-box; }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background-image: url('LOGO ENG black.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center; cursor: pointer; }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loading-screen img {
  animation: spin 1s linear infinite;
}

#Copyright {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  text-align: center;
  width: 100%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
