.page {
    color: white;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    background-color: #0b0318 !important;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.bottom-text {
    text-align: center;
    height: 50px;
    width: 400px;
    position: absolute;
    margin-top: 400px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
}

.main-text {
    text-align: center;
    height: 50px;
    width: 400px;
    position: absolute;
    margin-top: 400px;
    font-size: 35px;
    font-family: 'Anton', sans-serif;
    font-weight: 700;
}


.buttonPlay {
    justify-content: center;
    align-items: center;
    Display: flex;
    text-decoration: none !important;
    color: inherit !important;
    height: 60px;
    width: 250px;
    position: absolute;
    border-radius: 30px;
    margin-top: 470px;
    border: #fff solid 2px;
    text-align: center;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
}


.page::before {
    content: "";
    background-image: url('images/bg.jpg');
    background-size:100% 100%; 
    background-repeat: no-repeat;
    background-position: center top;
    box-sizing: border-box;
    z-index: -1;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


@keyframes glow {
    0%, 100% {
        box-shadow: 
            inset 0 0 4px 5px rgba(0, 255, 13, 0.8), 0 0 4px 5px rgba(0, 255, 13, 0.8);
    }
    
    50% {
        box-shadow: inset 0 0 5px 6px rgba(0, 255, 13, 0.1), 0 0 5px 6px rgba(0, 255, 13, 0.8);
    }
}


.neon-circle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 13px solid rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.2); 
    box-shadow: inset 0 0 12px 4px rgba(0, 255, 13, 0.8), 0 0 12px 4px rgba(0, 255, 13, 0.8);
    z-index: 5;
    filter: blur(2.0px);
}


.wait_circle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    z-index: 5;
    opacity: calc(0.06);
}

.page__rate-image {
    max-width: 40px;
    max-height: 40px;
    margin-right: 25px;
}


.page__rate-wrapper {
    display: flex;
    flex-direction: column;
}


.page__rate-title {
    color: #ffc300;
    font-weight: bold;
    font-size: 12px;
    margin: 0;
}


.page__rate-subtitle {
    font-size: 12px;
    margin: 0;
}


.text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 68px;
    font-weight: 400;
    z-index: 10;
    transition: font-size 0.3s ease;
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 0;
}


.betting {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 400;
    z-index: 10;
    transition: font-size 0.3s ease;
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 0;
}


.fly {
    position: absolute;
    margin-top: 350px;
    margin-right: 0px;
    font-size: 60px;
    font-weight: bold;
    z-index: 5;
    transition: font-size 0.4s ease;
    font-family: 'Oswald', sans-serif;
    
}


.rocket {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center top;
    box-sizing: border-box;
    max-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px auto 0 auto;
    transition: all 0.32s ease 0s;
    z-index: 1;
}


.rocket__fire {
    position: absolute;
    width: 150px;
    margin-top: 365px;
    margin-right: 560px;
    animation: fly 12s linear infinite;
   
}


.rocket__boy {
    position: absolute;
    transition: all 0.32s ease 0s;
    transform: rotate(7deg);
    width: 150px;
    margin-top: 250px;
    margin-right: 400px;
    display: block;
    animation: fly 12s linear infinite;
}


@keyframes fly {

    0% {
    transform: translate(25px, 10px);
      }
    
    50% {
    transform: translate(350px, -175px);
    }

    100% {
    transform: translate(25px, 10px);
    }
}


img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}