/* Fullscreen/kiosk button on attract screen */
.kiosk-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kiosk-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Hide kiosk button when already in fullscreen */
:fullscreen .kiosk-btn,
:-webkit-full-screen .kiosk-btn {
    display: none;
}

:fullscreen body,
::backdrop {
    background: var(--color-background);
}

body.kiosk-mode {
    cursor: none;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

body.kiosk-mode.user-active {
    cursor: default;
}
