main .lef-con {
    display: flex;
    flex-direction: column;
}

.game {
    min-height: 400px;
    padding: 15px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    --game_img: 20%;
}

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

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

.game .img-box {
    width: var(--game_img);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
}

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

.game a {
    min-width: var(--game_img);
    text-align: center;
    background-color: #fff;
    color: #000;
    padding: 8px 0;
    transition: .4s;
}

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

.game_detail {
    margin: 15px 0;
    padding: 0 10px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.game_detail div {
    display: flex;
    gap: 12px;
}

.game_detail div h4 {
    color: #cd0000;
}

@media (max-width:799px) {
    main .lef-con {
        display: block;
    }

    .game {
        width: 100%;
        height: 400px;
        --game_img: 50%;
    }

    .game_detail div {
        flex-direction: column;
    }

    .game_detail div p {
        text-indent: 2em;
    }
}