body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Orbitron', Arial, sans-serif;
    overflow: hidden;
    background: #0a1123;
}
/* .background-overlay {
    position: relative;
    width: 100vw;
    height: 100vh;
} */
.background-img {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.3) blur(2px);
    z-index: 1;
}
.background-img-main{
    position: absolute;
    width: 500px;
    height: 500px;
    object-fit: cover;
    z-index: 2;
}
.wheel-canvas{
    background-image: url(./images/bg-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 500px;
    height: 500px;
    padding: 38px;
}
@media (max-width: 600px) {
    .wheel-canvas{
        width: 100%;
        height: 100%;
        padding: 25px;
    }
}
/* .wheel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 80vw;
    max-width: 1200px;
} */
.wheel-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-image: url(./images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 500px;
    height: 500px; */
}
#wheel-canvas {
    /* filter: drop-shadow(0 0 30px #00f0ff) drop-shadow(0 0 60px #00f0ff);
    border-radius: 50%;
    background: transparent; */
    overflow: hidden;
    height: 500px;
    width: 500px;
    border-radius: 100%;
    background: #ffffff;
}
.wheel-pointer {
    position: absolute;
    top: -20px;
}
.wheel-title{

}
.wheel-pointer img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
@media (max-width: 600px) {
    .wheel-pointer img{
        width: 55px;
        height: 75px;
    }
}
#spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    padding: 0;
    border: none;
    border-radius: 50%;
    /* background: linear-gradient(90deg, #00f0ff 0%, #0050ff 100%); */
    color: #fff;
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    /* box-shadow: 0 0 40px #00f0ff, 0 0 80px #0050ff; */
    cursor: pointer;
    outline: none;
    z-index: 4;
    animation: spin-btn-pulse 1.5s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#spin-btn img {
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    #spin-btn {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}
@keyframes spin-btn-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        /* box-shadow: 0 0 40px #00f0ff, 0 0 80px #0050ff; */
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        /* box-shadow: 0 0 80px #00f0ff, 0 0 120px #0050ff; */
    }
}
.side-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 3;
    filter: drop-shadow(0 0 20px #00f0ff);
    margin: 0 2vw;
    display: block;
}
.bitcoin {
    order: 0;
}
.ethereum {
    order: 2;
}
@media (max-width: 900px) {
    .side-icon {
        display: none;
    }
}
@media (max-width: 600px) {
    #wheel-canvas {
        width: 100% !important;
        height: 100% !important;
    }
}
@media (max-width: 360px) {
    .wheel-canvas {
        width: 80%;
        height: 80%;
        padding: 20px;
    }
}


/* Jackpot Popup Styles */
.jackpot-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #011B4F73;
    border-radius: 20px;
    padding: 30px;
    width: 80%;
    max-width: 580px;
    text-align: center;
    color: white;
    border: 1px solid #0EBEFF;
    /* border-image-source: linear-gradient(0deg, #0EBEFF, #0EBEFF); */
    box-shadow:0px 2px 6px 0px #0EBEFF inset;
    backdrop-filter: blur(8px);
    /* box-shadow: 0 0 40px #00f0ff, 0 0 80px #0050ff; */
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Exo", sans-serif;
    font-style: italic;
    font-weight: 800;
    margin-top: 0;
}

.popup-content .popup-sub-title {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}

.popup-content .popup-description {
    border: 2px solid #FFFFFF12;
    color: #045EFF;
    font-size: 20px;
    backdrop-filter: blur(2px);
    border-radius: 15px;
    text-align: center;
    color: #fff;
    -webkit-text-fill-color: #045EFF;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #fff;
    font-weight: 900;
    padding: 15px 5px;
    letter-spacing: 1px;
    text-shadow: #10D1FFA8 1px 0 40px;
}



.popup-btn {
    color: white;
    border: none;
    border-radius: 16px;
    padding: 12px 26px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    background: linear-gradient(180deg, #13E8FF 0%, #024AFF 100%);
    animation: popup-btn-pulse 1.5s infinite alternate;
}

@keyframes popup-btn-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* page style setup ---------- */

.bonus-bg-one {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.bonus-bg-one .page-inner {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
}

.bonus-bg-one .page-inner .left-content {
    display: flex;
    align-items: flex-end;
}

.bonus-bg-one .page-inner .left-content .cowboy-character {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.bonus-bg-one .page-inner .right-content {
    display: flex;
    align-items: flex-end;
}

.bonus-bg-one .page-inner .right-content .god-character {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.bonus-bg-one .page-inner .center-content {
    text-align: center;
    width: 620px;
    min-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.bonus-bg-one .page-inner .center-content .logo {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 370px;
    margin: 0px auto;
}
.bonus-bg-one .page-inner .center-content .logo-sub {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 370px;
    margin: 0px auto;
    margin-top: 0;
    margin-bottom: 30px;
}

.bonus-bg-one .page-inner .center-content .subtitle {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 26px;
    line-height: 36px;
    margin: -10px 0px 35px;
    text-shadow: 1px 1px 0px #0FA5DD, -1px -1px 0px #0FA5DD, 1px -1px 0px #0FA5DD, -1px 1px 0px #0FA5DD;
    padding: 0px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .welcome-bonus {
    font-family: "Exo", sans-serif;
    background-color: #045EFF;
    display: inline-block;
    border-radius: 20px 20px 0px 0px;
    padding: 25px 25px;
    font-size: 40px;
    font-weight: 800;
    line-height: 30px;
    color: #FFFFFF;
    text-align: center;
    margin: 0px 0px 5px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .percentage p {
    font-family: "Exo", sans-serif;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
    color: #045EFF;
    font-size: 136px;
    font-weight: 700;
    line-height: 136px;
    margin: 0px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .match {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .match:after {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    background-color: #13E6FF;
    top: 18px;
    right: -95px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .match::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    background-color: #13E6FF;
    top: 18px;
    left: -95px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .fs p {
    font-family: "Exo", sans-serif;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
    color: #045EFF;
    font-size: 105px;
    line-height: 105px;
    margin: 0px;
    font-weight: 700;
}

.bonus-bg-one .page-inner .center-content .bonus-info .claim-button {
    background: linear-gradient(180deg, #13E8FF 0%, #024AFF 100%);
    border-radius: 20px;
    padding: 20px 50px;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0px;
    transition: all 0.3s ease;
    border: 0px;
    cursor: pointer;
    min-width: 300px;
    animation: mymove 4s infinite;
}

.bonus-bg-one .page-inner .center-content .bonus-info .claim-button:hover {
    background: linear-gradient(180deg, #024AFF 0%, #13E8FF 100%);
    box-shadow: 0px 0px 0px #024AFF;
}

@keyframes mymove {
    50% {
        box-shadow: 3px 10px 15px rgba(2, 74, 255, 0.4588235294);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0px 0px 0px #024AFF;
    }
}

.bonus-bg-one .page-inner .center-content .bonus-info .dogs {
    width: 100%;
    max-width: 700px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.bonus-bg-one .page-inner .center-content .bonus-info .mobile-character {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 25px;
}

.bonus-bg-one .page-inner .center-content .bonus-info .mobile-character img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 145px;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .bonus-bg-one .page-inner .left-content .cowboy-character {
        width: 90%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .bonus-bg-one .page-inner .right-content .god-character {
        width: 90%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .bonus-bg-one .page-inner .center-content {
        width: 300px;
        min-width: 300px;
    }

    .bonus-bg-one .page-inner .center-content .logo {
        max-width: 200px;
    }

    .bonus-bg-one .page-inner .center-content .subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .welcome-bonus {
        font-size: 22px;
        line-height: 32px;
        padding: 15px 25px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .percentage p {
        font-size: 80px;
        line-height: 80px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match {
        font-size: 14px;
        line-height: 26px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match:after {
        width: 35px;
        height: 3px;
        top: 12px;
        right: -38px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match::before {
        width: 35px;
        height: 3px;
        top: 12px;
        left: -38px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .fs p {
        font-size: 55px;
        line-height: 55px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .claim-button {
        padding: 15px 50px;
        font-size: 22px;
        line-height: 32px;
        min-width: 200px;
        border-radius: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .bonus-bg-one .page-inner .left-content .cowboy-character {
        display: none;
    }

    .bonus-bg-one .page-inner .right-content .god-character {
        display: none;
    }

    .bonus-bg-one .page-inner .center-content {
        width: 300px;
        min-width: 300px;
        justify-content: flex-start;
        padding-top: 54px;
    }

    .bonus-bg-one .page-inner .center-content .logo {
        max-width: 200px;
    }

    .bonus-bg-one .page-inner .center-content .subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .welcome-bonus {
        font-size: 22px;
        line-height: 32px;
        padding: 15px 25px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .percentage p {
        font-size: 80px;
        line-height: 80px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match {
        font-size: 14px;
        line-height: 26px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match:after {
        width: 35px;
        height: 3px;
        top: 12px;
        right: -38px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .match::before {
        width: 35px;
        height: 3px;
        top: 12px;
        left: -38px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .fs p {
        font-size: 55px;
        line-height: 55px;
    }

    .bonus-bg-one .page-inner .center-content .bonus-info .claim-button {
        padding: 15px 50px;
        font-size: 22px;
        line-height: 32px;
        min-width: 200px;
        border-radius: 10px;
    }
}

@media only screen and (min-width: 991px) {
    .bonus-bg-one .page-inner .center-content .mobile-character {
        display: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .bonus-bg-one .page-inner .center-content .dogs {
        display: none;
    }
}
