/* Estilos básicos */
html,
body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    background: black;
    touch-action: none;
}

/* Ocultamos el input de archivo */
#file {
    display: none;
}

/* POPUP */
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    z-index: 50;
    max-width: 80%;
}

#popupClose {
    margin-top: 10px;
    background: #111;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
}

/* Minimapa oculto */
#minimap {
    display: none;
}

/* Logo en esquina superior izquierda */
#logo-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
}

#logo-link img {
    width: 260px;
    height: auto;
    border: none;
    pointer-events: auto;
}