/* Reset and basic setup */
body {
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  
  /* Container fills full screen */
  #unity-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  
  /* Canvas takes full space */
  #unity-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: #231F20;
  }
  
  /* Loading bar centered */
  #unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }
  
  /* Logo and progress bar */
  #unity-logo {
    width: 154px;
    height: 130px;
    background: url('game-logo-dark.png') no-repeat center;
  }

#play-button {
  width: 250px;
  height: 250px;
  background: url('PlayNowButton.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
  animation: pulseZoom 1.5s ease-in-out infinite; 
}

/* Animation Keyframes */
@keyframes pulseZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Zoom In */
  }
  100% {
    transform: scale(1);   /* Back to original */
  }
}

#play-button-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('ZombieShooterOnlineGame.png') no-repeat center center;
  background-size: cover; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
  
  #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;
  }
  
  /* Hide footer on mobile */
  .unity-mobile #unity-footer {
    display: none;
  }
  
  /* Warning banner */
  #unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
  }
  