
body {
    margin: 0;
    overflow: hidden;
    background-color: #050505;
    color: #fff;
    font-family: 'Courier New', monospace;
    touch-action: none; /* Disables scrolling on mobile */
    user-select: none;
}

canvas {
    display: block;
}

#ui {
    position: absolute;
    top: 20px;
    left: 20px;
    pointer-events: none;
    z-index: 10;
}

h1 {
    margin: 0;
    font-size: 24px;
    text-shadow: 2px 2px 0 #000;
}

p {
    margin: 5px 0;
    font-size: 14px;
    color: #ddd;
    text-shadow: 1px 1px 0 #000;
}

#zone-ui {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    pointer-events: none;
}

.zone-name {
    font-size: 18px;
    font-weight: bold;
    color: #00ffcc;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.best-score {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

#version {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #555;
    pointer-events: none;
}
