body {
    padding: 0;
    margin: 0;
  }
  
  #unity-container {
    position: absolute;
	overflow: hidden;
  }
  
  #unity-container.unity-desktop {
    width: 100%;
    height: 100%;
  }
  
  #unity-container.unity-mobile {
    width: 100%;
    height: 100%;
  }
  
  #unity-canvas {
    background: #FFFFFF;
  }
  
  .unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
  }
  
  #unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%; /* Centrar verticalmente */
    transform: translate(-50%, -50%);
    display: none;
  }
  
  #unity-logo {
    position: absolute; /* Cambio a absolute */
    width: 100%;
    height: 100%;
    transform: scale(3.0);
    top: calc(40% - 100px); /* 20px arriba del centro */
    background: url('wited-logo.svg') no-repeat center;

  }
  
  #unity-progress-bar-empty {
    width: 290px;
    height: 20px;
    margin: 0 auto 10px; /* 10px debajo del logo */
    background: url('progress-bar-empty.png') no-repeat center;
  }
  
  #unity-progress-bar-full {
    width: 0%;
    height: 20px;
    background: url('progress-bar-full.png') no-repeat center;
  }
  
  #unity-progress-bar-overlay {
    width: 290px;
    height: 20px;
    position: relative;
    top: -20px;
    left: 0;
    background: url('progress-bar-overlay.png') no-repeat center;
  }
  
  #unity-footer {
    position: relative;
  }
  
  .unity-mobile #unity-footer {
    display: none;
  }
  
  #unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: Arial, sans-serif;
    font-size: 18px;
  }
  
  #unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
  }
  
