* {
    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;
}

#canvas {
    display: block;
    cursor: pointer;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#ui-overlay {
    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: 10px;
    color: #00ffff;
    pointer-events: none;
}

#ui-overlay::after {
    content: 'Made with rejection and ❤️ by Berrry Computer | berrry.app';
}

/* Prevent text selection and context menu */
canvas {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 600px) {
    #ui-overlay::after {
        content: 'Berrry Computer | berrry.app';
    }
}