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

body {
    background: #0D1117;
    overflow: hidden;
    cursor: none;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    user-select: none;
    -webkit-user-select: none;
    cursor: none;
}

/* Hide cursor during gameplay */
body.playing {
    cursor: none;
}
