@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

#container {
    position: relative;
}

#gameContainer {
    width: 900px;
    height: 600px;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
}

#crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    pointer-events: none;
}

#stats {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 250px;
    height: 90px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    box-sizing: border-box;
}
