:root {
    --font-primary: 'Press Start 2P', cursive;
    --color-bg: #2c3e50;
    --color-ui-bg: rgba(0, 0, 0, 0.8);
    --color-text: #ffffff;
    --color-buff: #2ecc71;
    --color-nerf: #e74c3c;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    font-family: var(--font-primary);
    color: var(--color-text);
}

game-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none; /* Let clicks pass through to game */
}

/* Canvas Container */
#game-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 4px;
}
