/* --- ESTILOS GLOBALES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: none;
    user-select: none;
}

body {
    background: #0a0f1e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

#app {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    /* overflow visible para que position:fixed de controles funcione */
    overflow: visible;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    image-rendering: pixelated;
    display: none;
}

/* --- Intro Video Styles --- */
#intro-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#intro-skip {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.6);
    pointer-events: none; /* Dejamos que el clic pase al contenedor */
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}
