body { padding: 0; margin: 0; background: url('bg-big.png') no-repeat}
#unity-container { position: absolute}
#unity-container.unity-desktop {
  position: fixed;      /* veya absolute da olur, ama fixed genelde tam ekran için daha iyi */
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 40px);
  overflow: hidden;
  background: url('background.png') no-repeat center center;
  background-size: cover; /* resmi ekran boyutuna yay */
}
#unity-container.unity-mobile { width: 100%; height: 100% ; background: url('background.png') no-repeat center }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#turn-logo { width: 50%; height: 50%;  margin-left: auto; margin-right:auto; background: url('unity-logo-dark.png') no-repeat center ;background-size: contain; }
#unity-progress-bar-empty { width: 141px; height: 0px; margin-top: 0px; margin-left: auto; margin-right:auto; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 0px; margin-top: 0px; margin-left: 0; background: url('progress-bar-full-dark.png') no-repeat center }

#unity-progress-bar-empty-new { width: 141px; height: 18px; margin-top: 10px; margin-left: auto; margin-right:auto; background: url('progress-bar-empty-dark.png') no-repeat center }

#unity-progress-bar-full-new { width: 0%; height: 18px; margin-top: 10px; margin-left: 0; background: url('progress-bar-full-dark.png') no-repeat center }

#unity-progress-bar-empty-loading { width: 350px; height: 18px; margin-top: 10px; margin-left: auto; margin-right:auto; text-align: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 }
.unity-link { position: absolute; width: 100%; bottom: 0%;  background: white; padding: 10px 0; display: none; background-color:#222933;  text-align:center; }


.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: #0d040f;
  color: white;
  text-align: center;
}
.bottom-content{margin-inline: 50%; width: max-content; justify-self: center; height: 100%; align-content: space-around;}

.bottom-link{padding: 5px; color: white; text-decoration: none;}
.bottom-link:hover{padding: 5px; color: white; background-color: #8a1420; border-radius: 5px; text-decoration: none;}

#bottom-version{padding-left: 20px; padding-right: 20px; color: white; text-decoration: none;}
#bottom-userName{padding-left: 20px; padding-right: 40px; color: #779dda; text-decoration: none;}
#copy-icon{ width: 25px;height: 25px;position: absolute; align-self: anchor-center;}
#copy-icon:hover{background-color: #8a1420;border-radius: 5px; width: 25px;height: 25px;position: absolute; align-self: anchor-center;}

#slot-container{
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 56.25vw;
  
  max-height: -webkit-fill-available;
  z-index: 4;
}

#slot-close-button{
  background: url('close_button.png') no-repeat center;
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  border: none;
  border-radius: 6px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  cursor: pointer;
}
.slot-frame{
  width: 100%;
  height: 56.25vw;
  max-height: -webkit-fill-available;
  overflow: hidden;
  border: 0px;
  background-color: #1e0005;
}

.loader {
  width: fit-content;
  font-size: 50px;
  font-family: system-ui,sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #ffffff;
  background: 
    linear-gradient(-60deg,#0000 45%,#ff0000 0 55%,#0000 0) 
    0/300% 100% no-repeat text;
  animation: l3 2s linear infinite;
  justify-self: center;
}
.loader:before {
  content: "Loading";
}
@keyframes l3 {
  0%{background-position: 100%}
}
