/* --- PANTALLA COMPLETA ADAPTATIVA --- */
body { 
    margin: 0 !important; 
    overflow: hidden !important; 
    background-color: black !important; 
}
#unity-container { 
    width: 100vw !important; 
    height: 100vh !important; 
    position: absolute !important; 
    top: 0 !important; 
    left: 0 !important; 
    transform: none !important; 
}
#unity-canvas { 
    width: 100% !important; 
    height: 100% !important; 
}
/* Magia para hacer el botón flotante */
#unity-footer { 
    display: block !important; 
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important; 
}
#unity-webgl-logo, #unity-build-title { 
    display: none !important; /* Ocultamos el logo y el texto gris */
}
#unity-fullscreen-button { 
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    pointer-events: auto !important; /* Permitimos hacer clic solo al botón */
    transform: scale(1.5) !important; /* Lo hacemos un poco más grande */
    transform-origin: bottom right !important;
    filter: drop-shadow(0px 0px 5px black) !important; /* Sombrita para que se vea siempre */
}
