/* Free Spins Total Display - Aviator Theme */
.free-spins-total {
    position: fixed;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.9), rgba(13, 71, 161, 0.9));
    border: 3px solid var(--highlight);
    border-radius: 15px;
    padding: 10px 15px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.4), inset 0 0 20px rgba(0, 191, 255, 0.15);
    z-index: 100;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 191, 255, 0.4), inset 0 0 20px rgba(0, 191, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 191, 255, 0.6), 0 0 70px rgba(30, 144, 255, 0.4), inset 0 0 30px rgba(0, 191, 255, 0.3);
    }
}

.free-spins-label {
    font-size: 0.7rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.free-spins-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--highlight);
    text-shadow: 0 0 10px var(--highlight), 0 0 20px rgba(0, 191, 255, 0.5);
    animation: number-pulse 1s infinite;
}

@keyframes number-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 374px) {
    .free-spins-total {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        min-width: 100px;
    }

    .free-spins-label {
        font-size: 0.6rem;
    }

    .free-spins-amount {
        font-size: 1.4rem;
    }
}

@media (min-width: 600px) {
    .free-spins-total {
        top: 20px;
        right: 20px;
        padding: 12px 18px;
        min-width: 140px;
    }

    .free-spins-label {
        font-size: 0.75rem;
    }

    .free-spins-amount {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .free-spins-total {
        top: 25px;
        right: 25px;
        padding: 15px 20px;
        min-width: 160px;
    }

    .free-spins-label {
        font-size: 0.8rem;
    }

    .free-spins-amount {
        font-size: 2.2rem;
    }
}

@media (min-width: 1024px) {
    .free-spins-total {
        top: 30px;
        right: 30px;
        padding: 18px 25px;
        min-width: 180px;
    }

    .free-spins-label {
        font-size: 0.9rem;
    }

    .free-spins-amount {
        font-size: 2.5rem;
    }
}

@media (min-width: 1440px) {
    .free-spins-total {
        top: 40px;
        right: 40px;
        padding: 20px 30px;
        min-width: 200px;
    }

    .free-spins-label {
        font-size: 1rem;
    }

    .free-spins-amount {
        font-size: 3rem;
    }
}