.games {
    width: var(--game-width);
    height: var(--game-height);
    margin: 0 auto 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    align-items: center;
    justify-content: center;
}

.games .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
}

.games .bg img {
    height: 100%;
    filter: blur(7px);
}

.games .img-box {
    width: 18%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
}

.games .img-box::before {
    padding-top: 100%;
}

.games a {
    padding: 8px 20px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    transition: .4s;
}

.games a:hover {
    background-color: #000;
    color: #fff;
}

.game_detail {
    margin: 20px auto;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game_detail span {
    font-weight: 700;
    display: inline-block;
    margin-right: 20px;
    text-align: right;
    min-width: 120px;
}

@media screen and (max-width:769px) {
    .games .img-box {
        width: 50%;
    }

    .game_detail {
        padding: 0 5px;
    }

    .game_detail span {
        min-width: 0;
    }
}