body {
    margin: 0;
    overflow: hidden;
    background: #1a1a1a;
}

#game-container {
 pointer-events: none;
    position: relative;
    width: 100vw;
    height: 100vh;
}

#game-canvas {
    position: absolute;
    image-rendering: pixelated;
}

#player {
pointer-events: auto;
    width: 16px;
    height: 16px;
    background: #ff3355;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.1s;
    box-shadow: 0 0 8px rgba(255, 51, 85, 0.8);
    z-index: 2;
}