/* ================================
   Brainrot Puzzle - Styles
   Swap Mechanic Version
   ================================ */

/* Native App Feel */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
canvas {
    -webkit-user-drag: none;
}

body {
    font-family: 'Segoe UI Black', 'Arial Black', sans-serif;
    background: #1a1a2e;
    min-height: 100vh;
    overflow: hidden;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
}