* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}


/* El canvas 3D ocupa toda la pantalla */

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* La UI flota encima del canvas */

#ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


/* Mensajes de texto (instrucciones, narrativa) */

#ui-mensaje {
    color: white;
    font-size: 24px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 20px;
    max-width: 600px;
    margin-bottom: 30px;
}


/* Contenedor del botón */

#ui-boton-container {
    pointer-events: all;
}


/* El botón principal (Viajar al Futuro, Salir, etc.) */

#ui-boton {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 20px;
    cursor: pointer;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: none;
}

#ui-boton:hover {
    background: white;
    color: black;
}


/* Botón de entrar en VR */

#vr-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}