.game-slice {
    display: grid;
    grid-gap: 24px;
    margin-bottom: 24px;
}

.game-card-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.game-card-title {
    color: var(--mirage-950);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.game-card-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 12px;
    transition: opacity ease .15s;
}

.game-card:hover .game-card-btn {
    opacity: 1;
}

.game-card-btn .zp-btn {
    padding: 0 24px;
    height: 40px;
}

@media (max-width: 576px) {
    .game-card-image {
        position: relative;
        margin-bottom: 6px;
    }

    .game-card-body br {
        display: none;
    }

    .game-card-title {
        display: inline-block;
        margin-top: 8px;
    }

    .game-card-btn {
        height: calc(100% - 4px);
    }
}

@media (min-width: 577px) {
    .game-slice {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card {
        position: relative;
        height: 255px;
        border-radius: 12px;
    }

    .game-card-image {
        height: 100%;
    }

    .game-card-body {
        position: absolute;
        left: 0;
        bottom: -1px;
        padding-right: 15px;
    }

    .game-card .room-rating,
    .game-card-title {
        position: relative;
        display: inline-block;
        padding: 12px 24px 0 0;
        background: var(--mirage-50);
        border-radius: 0 16px 0 0;
        z-index: 1;
    }

    .game-card .room-rating::before, 
    .game-card-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: -12px;
        width: 12px;
        height: 12px;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxMkM1LjM3MjU2IDEyIDAgNi42Mjc0NCAwIDBWMTJIMTJaIiBmaWxsPSIjRjVGNkZBIi8+Cjwvc3ZnPgo=);
        background-repeat: no-repeat;
        background-size: 12px;
    }

    .game-card .room-rating {
        top: 5px;
    }
}