body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Evita barras de desplazamiento */
    position: relative;}
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: changeBackground 60s infinite; /* 20s para la animación, infinite para que se repita */
    z-index: -1;}

.content-container {
    display: flex;
    justify-content: flex-end; /* Alinea el contenedor del contenido a la derecha */
    align-items: center;
    width: 100%;
    height: 100%;}
.content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white; /* Color del texto para contraste con el fondo */
    padding-right: 10%;}
.logo-space {
    margin-bottom: 5px;}
.logo-space img {
    width: 400px;
    height: auto;}
.text-space {
    margin-top: -20px;
    margin-bottom: -10px;}
.small-text-space {
    margin-bottom: 30px;}
.small-text-space p {
    font-size: 12px;
    color: #fff;
    margin: 0;}
.small-text-space a {
    color: #fff;
    font-weight: bold;}
.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;}
.buttons-container a {
    text-decoration: none;}
.rounded-button {
    background-color: rgba(5, 5, 5, 0.521);
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    margin: 10px 0;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;}
.rounded-button:hover {
    background-color: #f9054e;}
.exit-link {
    margin-top: 5px; /* Ajusta el espacio entre los botones */
    margin-bottom: 10px;}
.exit-link a {
    color: white;
    text-decoration: none;
    font-size: 14px;}
h2 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
}
/* POP UP */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* Asegura que esté por encima de todo */
    visibility: hidden; /* Oculto por defecto */
    opacity: 0; /* Lo hacemos transparente */
    transition: visibility 0s 0.5s, opacity 0.5s linear;}
#popup-container {
    background-color: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    top: -20px; /* Eleva el pop-up para que el círculo sobresalga */}
.popup-circle {
    position: absolute;
    top: -30px; /* Ajusta para que sobresalga más o menos */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #fff; /* Mismo color que el contenedor del pop-up */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;}
.popup-icon {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;}
.popup-title {
    margin-top: 30px;
    color: #333;}
.popup-subtitle {
    margin-top: 10px;
    color: #666;}
.popup-text {
    font-size: 14px;
    color: #888;}
.popup-divider {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 15px 0;}
.popup-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;}
