.live_button {
    display: inline-block;
    padding: 6px 12px;           
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 10px;          
    background: linear-gradient(90deg, #ff9a56, #ff6a3d); 
    background-size: 200% 100%;
    box-shadow: 0 0 5px rgba(255,154,86,0.5), 0 0 10px rgba(255,106,61,0.4);
    animation: gradient-breathe 5s ease-in-out infinite, scale-breathe 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live_button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,154,86,0.6), 0 0 18px rgba(255,106,61,0.5);
}

@keyframes gradient-breathe {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

@keyframes scale-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}