@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}


body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;

    scroll-behavior: smooth;
    transition: all 0.5s ease 0s;
    line-height: inherit;
    /* 2 */

}

.btn-custom {
    font-size: 15px;
    background-color: #f0b90b;
    outline-color: #f0b90b;
    animation: blinkButton 1.2s infinite ease-in-out;


    text-shadow: 0 0 8px rgba(255, 180, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.25);
    animation: orangeGlow 2s infinite alternate;
}

@keyframes blinkButton {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px #f0b90b;
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px #f0b90b;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 5px #f0b90b;
    }
}

/* Optional hover effect */
.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #f0b90b;
}

/* Orange animation */
@keyframes orangeGlow {
    0% {
        box-shadow: 0 0 8px rgba(255, 174, 0, 0.3), 0 0 20px rgba(255, 174, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 174, 0, 0.6), 0 0 40px rgba(255, 174, 0, 0.8);
    }
}

@media (max-width: 576px) {
    .btn-custom {
        line-height: 1.5rem;
        font-size: 12px;
    }
}

.coin {



    filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.7)) drop-shadow(0 0 30px rgba(255, 180, 0, 0.5)) drop-shadow(0 0 45px rgba(255, 160, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

.coin img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 195, 0, 0.7));
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}