@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Press Start 2P', cursive;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
}

#game-canvas {
    display: block;
    background-color: #6b8cff;
    width: 800px;
    height: 600px;
}

#hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    z-index: 10;
    pointer-events: none;
}

.hud-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hud-label {
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
}

#hud-score,
#hud-coins,
#hud-world,
#hud-time,
#hud-lives {
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
}
