.game {
    height: var(--game_content_height);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

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

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

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

.game .play {
    min-width: var(--play_button_width);
    padding: 10px 0;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    border: 1px solid #fff;
}

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