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

body {
    background: #000;
    overflow: hidden;
    font-family: monospace;
    color: #ccc;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}

#bg-canvas {
    z-index: 0;
}

#info-panel {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
}

#status {
    margin-bottom: 4px;
}
