﻿
.game-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.game-box:active {
    transform: scale(0.98);
    background-color: #f8f9fa;
}

.img-sq {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.btn-fav {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 2;
    color: #adb5bd;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

    .btn-fav.is-fav {
        color: #dc3545;
        background: #fff5f5;
        border-color: #ffc1c1;
    }

.text-xs {
    font-size: .75rem;
}

.text-xxs {
    font-size: .65rem;
}
