* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    text-align: center;
    overflow: hidden;
    background-color: #000000; /* Cambiar el color de fondo a negro */
}

body, #bg-noise {
    background-image: url('Latens-BG-loop.gif'); /* Asegúrate de poner la ruta correcta del GIF */
    background-repeat: repeat;
    background-size: auto;
}

#bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0; /* Asegura que el fondo esté en una capa baja */
}

#unity-loading-bar {
    width: 30%;
    top: 65%;
    height: 1.5%;
    background-color: #00000000;
    border: 1px solid #ffffff;
    border-radius: 10px;
    overflow: hidden;
    /* esto es importante para esconder la parte de la bola que sobrepasa el ancho de la barra */
}

#unity-canvas {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

#unity-progress-bar {
    position: absolute;
    left: 0;
    width: 0%;
    /* debe ser igual al height */
    height: 100%;
    /* debe ser igual al width */
    background-color: #ffffff;
    border-radius: 0%;
    /* para hacerlo redondo */
}

.footer__container {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 0;
    width: 100%;
}

#footer__copyright img {
    bottom: 0;
    width: 35%;
    opacity: 0.75;
}

#bottom-left-watermark {
    position: absolute;
    bottom: 5px;
    width: 100%;
    max-width: 150px;
    opacity: 0.5;
}

#bottom-right-watermark {
    position: absolute;
    bottom: 5px;
    width: 100%;
    max-width: 125px;
    opacity: 0.5;
}

#bottom-left-watermark {
    left: 10px;
}

#bottom-right-watermark {
    right: 20px;
}

#bottom-left-watermark img {
    width: 100%;
}

#bottom-right-watermark img {
    width: 100%;
}

small {
    color: rgba(255, 255, 255, 0.411);
}

.container {
    max-width: 800px;
    max-height: 800px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#unity-loading-bar {
    position: absolute;
    z-index: 1000;
}

#main-logo {
    display: flex;
    width: 50%;
    margin: auto;
    margin-top: -5%;
    margin-bottom: 0%;
}
#main-logo img {
    mix-blend-mode: screen;
    display: flex;
    width: 100%;
}

.latens-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px; /* Ajusta el margen según sea necesario */
}
.latens-logo img {
    width: 30%; /* Ajusta el tamaño del logo según sea necesario */
}

.description {
    margin-top: 10px; /* Ajusta el margen según sea necesario */
    color: rgba(255, 255, 255, 0.411);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los iconos */
    margin-top: 20px; /* Espacio superior respecto a la descripción */
}

.platform-links a img {
    width: 40px; /* Ajusta el tamaño de los iconos según tu necesidad */
    opacity: 0.8; /* Ajusta la opacidad si es necesario */
}

.platform-links a img:hover {
    opacity: 1; /* Aumenta la opacidad al pasar el ratón por encima */
}
