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

body {
    background: #0a0a0a;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

#canvas {
    display: block;
    cursor: crosshair;
}

#hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    transition: opacity 0.5s ease;
}

#hint.hidden {
    opacity: 0;
    pointer-events: none;
}

#home {
    position: fixed;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
    z-index: 100;
}

#home:hover {
    color: rgba(255, 255, 255, 0.6);
}

#stats {
    position: fixed;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    text-align: right;
    line-height: 1.5;
    pointer-events: none;
    max-width: 200px;
}

.zone-stats {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zone-stats:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.zone-label {
    font-size: 11px;
    margin-bottom: 4px;
    opacity: 0.7;
}
