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

body {
    font-family: 'Press Start 2P', monospace;
    background: #2a1a4a;
    overflow: hidden;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    position: fixed;
    width: 100%;
    height: 100%;
}

#canvas {
    display: block;
    cursor: pointer;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(42, 26, 74, 0.9);
    border-top: 2px solid #7c5fa3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: rgba(0, 255, 255, 0.5);
    pointer-events: none;
    z-index: 1000;
    padding: 0 10px;
    text-align: center;
}

@media (max-width: 600px) {
    #footer {
        font-size: 7px;
    }
}

@media (max-width: 375px) {
    #footer {
        font-size: 6px;
    }
}