@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background: url(../assets/fly_coins.png), url(../assets/gates_background.png);
    background-position: center;
    font-family: 'Roboto', sans-serif;
}

.body-black {
    background: url(../assets/fly_coins.png), url(../assets/gates_black_background.png);
}

.body-black-without-coins {
    background: url(../assets/gates_black_background.png);
}

.bottom-gold {
    position: absolute;
    width: 100%;
    bottom: 0%;
    z-index: 9999;
}

.zeus, .logo {
    transition: all 0.7s;
    width: 300px;
}

.zeus-hide {
    transform: translateX(-150%);
}

.logo-hide {
    transform: translateX(150%);
}

.button-container {
    transition: 0.7s all;
    width: 750px;
    height: 750px;
    display: none;
    transform: scale(0, 0);
    position: relative;
}

.button-container p {
    position: absolute;
    top: 7%;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    margin-left: -10px;
    text-shadow: 1px 1px 2px black;
}

.button-container span {
    color: yellow;
}

.continue-button {
    position: absolute;
    bottom: 30%;
    left: 29%;
    font-size: 30px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    background: #0f90f2;
    color: white;
    padding: 15px 25px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    animation: 2s scale ease-in-out infinite;
}

.bonus-container {
    transform: scale(0, 0);
    transition: 0.7s all;
}

.bonus-container p {
    position: absolute;
    top: 10%;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 45px;
    margin-left: -10px;
    text-shadow: 1px 1px 2px black;
}

.bonus-container span {
    font-size: 28px;
    color: #F8A00C;
}

.bonus-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-bonus-button {
    text-transform: uppercase;
    position: absolute;
    bottom: 15%;
    left: 30%;
    font-size: 26px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    background: #0f90f2;
    color: white;
    padding: 15px 25px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    animation: 2s scale ease-in-out infinite;
}

.game-container, .cards-container, .bonus-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.cards-container {
    justify-content: start;
    flex-direction: column;
}

.cards-game-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.cards-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards-column p{
    width: 90%;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    background: #fef158;
    background: linear-gradient(to top, #fef158 0%, #F8A00C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 

.cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 380px);
}

.card {
    cursor: pointer;
    width: 380px;
    height: 256px;
}

.money {
    position: absolute;
    /* opacity: 0; */
    /* transition: 0.7s all; */
    width: 380px;
    height: 256px;
}

.show {
    transform: scale(1, 1);
}

/* .opacity1 {
    opacity: 1;
} */

.zeus-card {
    height: 490px;
}

.logo-card {
    height: auto !important;
    max-width: 200px !important;
    margin-top: 20px !important;
}

.fs77 {
    display: none;
    height: 100px;
    width: 100px;
}

.wheel-container {
    position: relative;
    height: 800px;
    width: 800px;
    z-index: 3;
    transition: all 0.7s;
}

.wheel-container-hide {
    transform: scale(0, 0);
}

.wheel {
    height: 100%;
}

.wheel-container .spin-button {
    z-index: 2;
    cursor: pointer;
}

.wheel-container .wheel-bottom {
    animation: 2s spinner ease-in-out infinite;
}

.wheel-bottom-spinned {
    animation: 5s spinTo ease-in-out forwards;
}

.wheel {
    position: absolute;
}

.block {
    display: block;
}

.none {
    display: none !important;
}

.bonus-container-1 {
    margin: 20px auto 0;
}

@keyframes scale {
    25% {
        transform: scale(0.7, 0.7);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(-53deg);
    }
    
    50% {
        transform: rotate(-46deg);
    }
    100% {
        transform: rotate(-53deg);
    }
}

@keyframes spinTo {
    0% {
        transform: rotate(-53deg);
    }
    70% {
        transform: rotate(1446deg);
    }
    80% {
        transform: rotate(1436deg);
    }
    100% {
        transform: rotate(1440deg);
    }
}

@media (max-width: 1500px) {
    .zeus {
        height: 400px;
    }
    .logo {
        width: 300px;
        
    }
    .logo-card {
        margin-top: -20px;
    }
    .wheel-container {
        height: 500px;
        width: 500px;
        display: flex;
        justify-content: center;
        transform: translateX(10px);
    }
}

@media (max-width: 1200px) {
    .logo {
        order: 1;
    }
    .wheel-container {
        order: 2;
    }
    .zeus {
        order: 3;
    }
    .game-container {
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        width: 200px;
        margin-top: 20px;
    }

    .logo-card {
        height: 180px;
    }

    .text {
        height: 60px;
    }

    .cards-game-container {
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        width: auto;
    }

    .cards {
        transform: scale(0.6);
        margin-top: -104px;
    }

    .fs77 {
        order: 2;
        margin-top: -104px;
    }

    .zeus-card {
        order: 3;
        margin-top: -28px;
    }

    .wheel-container {
        height: 500px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .zeus {
        height: 380px;
        margin-top: -40px;
    }

    .zeus-hide {
        transform: translateY(100%);
    }
    
    .logo-hide {
        transform: translateY(-100%);
    }
}

@media (max-height: 850px) {
    .logo-card {
        margin-top: -55px;  
        height: 130px;
    }
    .text {
        height: 70px;
        margin-top: -60px;
    }
}

@media (max-width: 600px) {
    .logo{
        width: 180px;
    }

    .logo {
        margin: 30px 0;
    }


    .text {
        height: 60px;
        margin-top: -30px;
    }

    .cards-game-container {
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        width: auto;
    }

    .cards {
        transform: scale(0.4);
        margin-top: -146px;
    }

    .fs77 {
        order: 2;
        margin-top: -156px;
    }

    .zeus-card {
        order: 3;
        margin-top: -60px;
    }

    .wheel-container {
        height: 400px;
        width: 400px;
        margin-top: -50px;
    }

    .zeus {
        height: 380px;
        margin-top: -40px;
    }

    .button-container, .bonus-wrapper {
        transform: scale(0.4);
    }

    body {
        background: url(../assets/fly_mobile_coins.png), url(../assets/gates_mobile_background.png);
    }
    
    .body-black {
        background: url(../assets/fly_mobile_coins.png), url(../assets/gates_mobile_black_background.png);
    }
    
    .body-black-without-coins {
        background: url(../assets/gates_mobile_black_background.png);
    }
}