/* Custom cursor styles */
:root {
    --cursor-custom: url("assets/cursors/custom_cursor_ranged.svg") 16 16, auto;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: default;
}

.game-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 780px;
    height: 580px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Add a slight offset to better center in the HUD frame */
    padding-inline: 6.5em;
    background-color: black;
}

canvas {
    border: none;
    background-color: transparent;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 780px;
    height: 580px;
    cursor: default;
}
