/* زر الخروج إلى صالة الألعاب — مشترك بين ألعاب القضية */
.qgame-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    z-index: 10000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.qgame-close:hover,
.qgame-close:focus {
    color: #fff;
    background: rgba(233, 69, 96, 0.75);
    transform: scale(1.05);
}

.qgame-close--with-header {
    top: 78px;
}

.qcwf-embedded .qgame-close,
.qseq-embedded .qgame-close,
.qds-embedded .qgame-close {
    display: none !important;
}
