
.game-wrapper {
    max-width: 530px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.bg_vis_wrapper {
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #001034;
    /* background: linear-gradient(135deg, #2a6c00, #1d4801, #1c4800, #143400, #1d4a00); */
    /* transition: all 0.5s; */
    /* filter: hue-rotate(105deg); */
}

.bg_vis {
    width: 100%;
    height: 100%;
    font-size: 42px;
    color: rgb(255 255 255 / 15%);
    filter: blur(4px);
    overflow: hidden;
    padding: 37px 0 0 25px;
    line-height: 44px;
    /* transform: skew(153deg, 10deg); */
    transform: skew(166deg, 173deg);
    font-weight: 700;
    /* transition: all 0.2s; */
    opacity: 1;
}


.game-logo {
    text-align: center;
}

.game-logo img {
    width: 182px;
}

.game-note {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    padding: 15px 5px;
}

.game-block {
    border-radius: 10px;
    width: 290px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.game-block-1 {
    height: 180px;
}

.game-block-inner {
    width: 290px;
    position: absolute;
    overflow: hidden;
    transition: .5s;
}

.game-block-1 .game-block-inner {
    height: 180px;
}

.game-block-2 .game-block-inner {
    height: 240px;
}

.game-block-content {
    width: 290px;
    position: absolute;
    display: none;
}

.game-block-2 {
    height: 290px;
    margin-bottom: 5px;
}

.game-block-1 .meaning {
    height: 148px;
    border-radius: 10px 10px 0 0;
    /* background-color: var(--darker-background); */
    /* background-color: #0010345c; */
    position: relative;
    overflow-y: auto;
}

.game-block-1 .meaning .meaning-inner {
    display: table;
    font-weight: 500;
    text-shadow: 1px 1px 3px black;
    width: 100%;
    height: 100%;
}

.game-block-1 .meaning .meaning-content {
    display: table-cell;
    padding: 15px;
    vertical-align: middle;
}

.game-block-1 .meaning .meaning-content {
    display: none;
}

.game-block-1 .meaning.meaning-single {
    height: 180px;
}

.game-block-1 .meaning .meaning-content.def-show {
    display: block;
}

.game-block-1 .next-definition {
    width: 100%;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    color: var(--contrast-color);
    background-color: var(--primary-accent);
    padding: 5px 10px;
    border-radius: 0 0 7px 7px;
    transition: all 0.35s ease;
    user-select: none;
}

@media (hover: hover) {
    .game-block-1 .next-definition:hover {
        background-color: var(--lighter-background);
    }
}

.game-block-1 .next-definition img {
    height: 20px;
    margin-right: 3px;
    vertical-align: middle;
}

.game-block-2 .options {
    text-align: center;
    width: 290px;
    float: left;
    transition: all 0.6s ease;
}

.game-block-2 .options div {
    cursor: pointer;
    padding: 10px 10px;
    font-weight: 600;
    background-color: var(--lighter-background);
    margin: 15px 25px;
    border-radius: 30px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .game-block-2 .options div:hover {
        background-color: var(--primary-accent);
    }
}

.game-block-2 .options div.disabled {
    pointer-events: none;
}

.game-block-2 .options div.success {
    background-color: #10b510;
}

.game-block-2 .options div.failure {
    background-color: #e33225;
}

.game-block-3 {
    height: 50px;
}

.game-block-3 .game-block-inner {
    height: 50px;
}

.game-block-3 .game-block-content {
    text-align: center;
}

.game-block-3 .next-button {
    opacity: 0;
    background: #540bc2;
    width: 180px;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
}

.game-block-3 .next-button img {
    width: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

@media (hover: hover) {
    .game-block-3 .next-button:hover {
        background: #6111d7;
    }
}


@media screen and (max-width: 767px) {
    .game-note {
        font-size: 19px;
        padding: 15px 0px;
    }

}



