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

body {
    background: #0a0a0f;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    width: 100vw;
    height: 100vh;
}

#canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

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

#ui-overlay > * {
    pointer-events: auto;
}

#game-footer {
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    font-size: 11px;
    opacity: 0.4;
}

#game-footer a {
    color: #ff1493;
    text-decoration: none;
}

#game-footer a:hover {
    opacity: 1;
    text-decoration: underline;
}