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

body {
    overflow: hidden;
    background: #1a1a2e;
    font-family: 'Bricolage Grotesque', sans-serif;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

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

#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.footer-link {
    position: fixed;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    z-index: 100;
    pointer-events: all;
    font-family: 'JetBrains Mono', monospace;
}

.footer-link:hover {
    color: rgba(255,255,255,0.6);
}