body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
}


canvas {
    image-rendering: pixelated;
    cursor: url('/assets/crosshairs.svg'), auto;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-container canvas {
    display: block;
}

.game-hud {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1000;
    margin: 0;
    font-family: system-ui, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #f0f0f0;
    text-shadow:
        -1px -1px 0 #1a1a1a,
        1px -1px 0 #1a1a1a,
        -1px 1px 0 #1a1a1a,
        1px 1px 0 #1a1a1a;
    pointer-events: none;
    user-select: none;
}

.game-fps {
    position: fixed;
    top: 10px;
    right: 12px;
    left: auto;
    z-index: 1000;
    margin: 0;
    font-family: system-ui, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #f0f0f0;
    text-shadow:
        -1px -1px 0 #1a1a1a,
        1px -1px 0 #1a1a1a,
        -1px 1px 0 #1a1a1a,
        1px 1px 0 #1a1a1a;
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
}
