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

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

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

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

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

.game .play {
    padding: 8px 20px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    font-size: 21px;
    font-weight: 500;
    transition: .3s;
}

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