  /* 比赛状态样式 */
.match-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.match-status.upcoming {
    background-color: #3498db;
    color: white;
}

.match-status.countdown {
    background-color: #f39c12;
    color: white;
    animation: pulse 2s infinite;
}

.match-status.live {
    background-color: #e74c3c;
    color: white;
    animation: blink 1s infinite;
}

.match-status.finished {
    background-color: #7f8c8d;
    color: white;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}