  .btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
  }

  .live_button {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fffbea; 
    background: linear-gradient(135deg, #43e97b, #38a169); 
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: breathing 2s ease-in-out infinite;
  }

  .live_button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }

  @keyframes breathing {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
  }