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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a1a2e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #eee;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

#game {
    display: block;
    width: 100vw;
    height: 100vh;
    cursor: grab;
}

#game.dragging {
    cursor: grabbing;
}

#hud {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

#status {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(8px);
}
