/* Color Switch - Mobile-first styles */

:root {
    --color-background: #1A1A2E;
    --color-yellow: #FFE66D;
    --color-pink: #FF6B9D;
    --color-cyan: #4ECDC4;
    --color-purple: #9B5DE5;
    --color-star: #FFFFFF;
    --color-text: #FFFFFF;
    --color-text-dim: #888888;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-background);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
}

#game {
    display: block;
    background-color: var(--color-background);
    touch-action: none;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior: none;
}

/* Hide scrollbars */
::-webkit-scrollbar {
    display: none;
}
