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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #06060F;
    font-family: 'Press Start 2P', monospace;
}

#canvas {
    display: block;
    width: 100%;
    cursor: pointer;
    touch-action: none;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px;
    background: rgba(10, 10, 26, 0.9);
    z-index: 10;
}

#footer a {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #555;
    text-decoration: none;
}

#footer a:hover {
    color: #4488FF;
}