/* Live Radio Button Styles */
.radio-live-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #ff0055 0%, #ff2b70 100%) !important;
    color: white !important;
    padding: 6px 16px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-right: 15px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: radio-blink 2s ease-in-out infinite !important;
    border: none !important;
    line-height: 1 !important;
}

.radio-live-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.radio-live-btn:hover::before {
    left: 100%;
}

.radio-live-btn:hover {
    background: linear-gradient(135deg, #ff2b70 0%, #ff0055 100%) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6) !important;
}

@keyframes radio-blink {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 0, 85, 0.8), 0 0 30px rgba(255, 0, 85, 0.5);
        filter: brightness(1.2);
    }
}

.pulse-icon {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    border-radius: 50% !important;
    display: inline-block !important;
    position: relative !important;
    animation: pulse-dot 1.5s ease-in-out infinite !important;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        opacity: 0;
    }
}