body {
  padding: 0;
  margin: 0;
  box-sizing: content-box;
}
#unity-container {
  position: absolute;
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #231f20;
  aspect-ratio: 1080 / 1920;
  height: 100%;
  max-height: 100vh;
}
.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("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;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url("webgl-logo.png") no-repeat center;
}
#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;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

.game-side-container {
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  gap: 12px;
}

.side-vertical-banner {
  position: relative;
  text-align: center;
  aspect-ratio: 270 / 688;
  height: 80%;
}

.side-vertical-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .side-vertical-banner {
    display: none;
  }
}

.button-how-to-play {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  white-space: nowrap;
  outline: none;
  color: white;
  background-color: #f8b042;
  border: none;
  text-decoration: none;

  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  cursor: pointer;
  /* margin: auto auto 36px auto; */
}

.button-how-to-play:hover {
  transform: translate(calc(-50% + -4px), -4px);
  box-shadow: 4px 4px 0px 0px #7b5313;
}

.braah-one-regular-title {
  font-size: 20px;
  font-family: "Braah One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f8b042;
  white-space: nowrap;
  line-height: 100%;
  margin: 0;
}

.braah-one-regular-desc {
  font-size: 16px;
  font-family: "Braah One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f8b042;
  white-space: nowrap;
  line-height: 100%;
  margin: 0;
}

.braah-one-regular-desc a {
  color: #f8b042;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.powered-by-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 16px 0;
}
