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

body {
    background: #FAFAFA;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

#canvas {
    display: block;
    background: #FAFAFA;
}

#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    border-top: 1px solid #E5E5E5;
}

footer a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

footer a:hover {
    color: #666;
}

@media (max-width: 600px) {
    footer {
        height: 36px;
    }
    
    footer a {
        font-size: 11px;
    }
}