body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a2e;
    overflow: hidden;
    color: #e94560;
    font-family: 'Press Start 2P', cursive;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    image-rendering: pixelated;
    background-color: #000;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 4px solid #7A0C2E;
}

#hud {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border: 2px solid #5A2EA6;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    pointer-events: none;
}

.controls span {
    margin-right: 15px;
}

#status {
    color: #FFC400;
}
