body {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  background-image: url('background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100vw;
}

#unity-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#unity-container.unity-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#unity-container.unity-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
}

#unity-canvas {
  background: #FFFFFF;
  height: 100vh;
  width: 177.77vh;
  display: block;
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 100;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.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: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0;
}

.unity-mobile #unity-footer {
  display: none;
}

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

#unity-build-title {
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}

#unity-fullscreen-button {
  position: absolute;
  bottom: 0px;
  right: calc(50% - 88.88vh - 38px);
  cursor: pointer;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
  z-index: 50;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
  z-index: 200;
}

#page-footer {
  width: 100%;
  padding: 20px;
  background: #000000;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0) 100%);
  color: #888883;
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-company {
  text-align: center;
  font-size: 12px;
}

#page-footer a {
  color: #888883;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: underline;
}

#page-footer a:hover {
  text-decoration: none;
}
