.content {
    display: flex;
    flex-direction: column;
}

.game {
    flex: 1;
    min-height: var(--game_height);
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

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

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

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

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

.game .play {
    padding: 8px 22px;
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    font-size: 16px;
    transition: .4s;
}

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