/**
 * 2048 Game Styles - LaterGamer
 * Dark neon theme
 */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #0d1117;
    overflow: hidden;
}

.lg-game-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1117;
}

#game-canvas {
    background: #0d1117;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
