/* Vagic - Card Game - Fullscreen, touch-friendly, portrait-first */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Cinzel', Georgia, serif;
}

canvas#gameCanvas {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior: none;
}
