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

.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: 300px;
    margin: 0 auto 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.game-block-inner {
    width: 900px;
    position: absolute;
    overflow: hidden;
    transition: all 1s ease;
}

.game-block-1 .game-block-inner {
    left: 0;
}

.game-block-1 .pic {
    width: 300px;
    height: 200px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.game-block-1 .pic img {
    border-radius: 10px;
    /* max-width: 100%;
    max-height: 100%; */
    width: 300px;
    height: 200px;
    object-fit: cover;
    transition: all 1s ease;
}

.game-block-content {
    width: 300px;
    transition: .7s;
}

.game-block-1 .game-block-content {
    float: left;
}

.game-block-2 {
    height: 250px;
    margin: 0 auto 10px;
}

.game-block-2 .game-block-inner {
    right: 0;
}

.game-block-2 .game-block-content {
    float: right;
}

.game-block-2 .options {
    text-align: -webkit-center; /* I don't understand why only -webkit-center is centering those option blocks, need to figure it out later */
    width: 300px;
    float: left;
    transition: all 0.6s ease;
}

.game-block-2 .options div {
    cursor: pointer;
    width: 240px;
    padding: 10px 10px;
    font-weight: 600;
    background-color: var(--lighter-background);
    margin: 15px 10px;
    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.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;
    right: 0;
}

.game-block-3 .game-block-content {
    float: right;
    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;
    }
}