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

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

#game-wrapper {
    width: 100%;
    height: calc(100% - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a1a;
}

#canvas {
    display: block;
    image-rendering: auto;
    cursor: crosshair;
    touch-action: none;
}

#footer {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #666;
    background: #0a0a1a;
    border-top: 1px solid #1a1a3a;
}

#footer a {
    color: #00ff88;
    text-decoration: none;
    margin-left: 4px;
}

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

@media (max-width: 600px) {
    #canvas {
        cursor: default;
    }
}