/* Jackpot Counter Section */
.jackpot-counter-section {
    margin: 40px 0;
}

.jackpot-counter {
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jackpot-content {
    position: relative;
    z-index: 2;
    color: white;
}

.jackpot-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FA0202, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #FA0202, 0 0 30px #FA0202, 0 0 40px #FA0202;
    }
    to {
        text-shadow: 0 0 30px #FA0202, 0 0 40px #FA0202, 0 0 50px #FA0202;
    }
}

.jackpot-amount-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 94px;
}

.jackpot-currency {
    font-size: 4rem;
    font-weight: bold;
    margin-right: 10px;
    background: linear-gradient(180deg,#fdef68,#fef7af 46.88%,#ffa000 0,#ffcd1e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jackpot-amount {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(180deg,#fdef68,#fef7af 46.88%,#ffa000 0,#ffcd1e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.jackpot-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #FA0202;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Jackpot Counter */
@media (max-width: 768px) {
    .jackpot-counter {
        padding: 30px 15px;
        min-height: 250px;
    }

    .jackpot-amount-container {
        margin-top:50px;
    }
    
    .jackpot-title {
        font-size: 2rem;
    }
    
    .jackpot-currency,
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .jackpot-subtitle {
        font-size: 1.2rem;
    }
}




@media (max-width: 480px) {
    .jackpot-amount-container {
        margin-top: 40px;
    }

    .jackpot-counter {
        min-height: 150px;
    }

    .jackpot-currency, .jackpot-amount {
        font-size: 1.5rem;
    }
    
    
}


@media (max-width: 375px) {
    .jackpot-amount-container {
        margin-top: 30px;
    }
}