/* Arcadians - BBC Micro style */

#game-container {
    width: 960px;
    height: 768px;
    margin: 20px auto;
    background: #000;
}

#game-canvas {
    width: 960px;
    height: 768px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Responsive scaling */
@media screen and (max-width: 980px) {
    #game-container {
        width: 100vw;
        height: calc(100vw * 256 / 320);
        max-height: 80vh;
        max-width: calc(80vh * 320 / 256);
    }

    #game-canvas {
        width: 100%;
        height: 100%;
    }
}
