* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0e12;
    font-family: 'Rajdhani', sans-serif;
}

#canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#footer {
    position: fixed;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

#footer a {
    font-family: 'Share Tech Mono', monospace;
    color: #3a4a5a;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    pointer-events: auto;
    transition: color 0.3s;
}

#footer a:hover {
    color: #6a8a9a;
}