/* Zigzag - Hyper-casual Game Styles */

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

:root {
    --color-background: #1a1a2e;
    --color-path: #16213e;
    --color-path-light: #0f3460;
    --color-ball: #e94560;
    --color-ball-shadow: #c23a52;
    --color-text: #ffffff;
    --color-text-dim: #888888;
    --color-accent: #e94560;
}

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

#game {
    display: block;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    cursor: pointer;
    touch-action: manipulation;
}

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