.live_button {
    display: inline-block;
    padding: 4px 16px;
    margin: 10px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.5s, box-shadow 0.5s;
    animation: breathe 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* 鼠标悬停效果 */
.live_button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* 呼吸动画 */
@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 菜单容器布局 */
.matches-live .menu {
    display: flex;
    flex-wrap: wrap;
}