/**
 * Global styles for Liar's Dice client.
 */

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a2e;
    /* Inter: crisp, modern font with excellent hinting */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#game-canvas {
    width: 100%;
    height: 100%;
    display: block;
    touch-action: none;
}
