html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #00FFBC;
  }
  
  #unity-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00FFBC;
  }
  
  #unity-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
  }
  
  #unity-loading-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
  }
  
  
  #unity-logo {
    width: 154px;
    height: 130px;
    margin: auto;
    background: url('Ambovo-Logo.png') no-repeat center;
    background-size: contain;
  }
  
  #unity-progress-bar-empty {
    width: 100%;
    height: 20px;
    margin: auto;
    background: rgba(26, 32, 112, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }
  
  #unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
  }
  
  #unity-warning {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(21, 131, 195);
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 0px;
    box-shadow: 0 0 0px rgba(0,0,0,0.3);
    display: none;
    z-index: 200;
    transition: opacity 0.5s ease;
  }
  
  