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

body {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

canvas {
    display: block;
    image-rendering: pixelated;
    cursor: default;
}

#buyMeCoffee {
    position: fixed;
    bottom: 8px;
    left: 12px;
    font-family: monospace;
    font-size: 11px;
    color: #888;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #444;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    transition: opacity 0.2s;
    z-index: 10;
}

#buyMeCoffee:hover {
    opacity: 1;
    color: #dab96b;
    border-color: #dab96b;
}

#bugReport {
    position: fixed;
    bottom: 8px;
    right: 12px;
    font-family: monospace;
    font-size: 11px;
    color: #888;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #444;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    transition: opacity 0.2s;
    z-index: 10;
}

#bugReport:hover {
    opacity: 1;
    color: #f44;
    border-color: #f44;
}
