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

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

#canvas {
    display: block;
    touch-action: none;
    position: fixed;
    top: 0;
    left: 0;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    background: rgba(10, 0, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding: 0 8px;
}

#footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

#footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

#footer span {
    white-space: nowrap;
}

@media (max-width: 380px) {
    #footer {
        height: 44px;
        font-size: 9px;
    }
    #footer a, #footer span {
        font-size: 9px !important;
    }
}

@media (max-height: 500px) {
    #footer {
        height: 28px;
    }
    #footer a, #footer span {
        font-size: 9px !important;
    }
}