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

body, html {
    width: 100%;
    height: 100%;
    background-color: #111;
    overflow: hidden;
    touch-action: none; /* Previene scroll táctil y zoom en móvil */
    font-family: 'Press Start 2P', cursive;
    color: white;
}

#game-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    image-rendering: pixelated; /* Asegura estética retro */
    background-color: #222;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
