html, body {
    margin: 0;
    padding: 0;
    background: #08040f;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: 100dvh;
    overscroll-behavior: none;
}

#hilogame {
    background: #08040f;
    width: 100%;
    height: 100%;
    height: 100dvh;
    position: fixed;
    inset: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    touch-action: manipulation;
}

canvas {
    display: block;
    background: transparent !important;
    max-width: 100%;
    max-height: 100%;
}

/* DOM input overlay (bet amount) - see src/cards-view/dom-input.js */
.hilo-dom-input {
    position: absolute;
    box-sizing: border-box;
    background: rgba(8, 5, 14, 0.92);
    border: 2px solid #d8b94f;
    border-radius: 12px;
    color: #f1cf63;
    font-family: Georgia, serif;
    font-weight: bold;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    pointer-events: auto;
    z-index: 5;
}

.hilo-dom-input:focus {
    border-color: #f7dc76;
}

.hilo-dom-input::-webkit-outer-spin-button,
.hilo-dom-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
