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

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: monospace;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-canvas {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    background: #000;
    cursor: none;
}

#loading {
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-family: monospace;
    text-align: center;
}

/* Mobile touch controls */
@media (pointer: coarse) {
    #game-canvas {
        cursor: default;
    }
}
