.match-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0;
}

.match-countdown i {
    font-size: 16px;
}

/* Status colors */
.match-countdown[data-status="scheduled"] {
    color: #aaa; /* Gray */
}

.match-countdown[data-status="soon"] {
    color: #ffc107; /* Yellow */
}

.match-countdown[data-status="live"] {
    color: #28a745; /* Green */
}

.match-countdown[data-status="halftime"] {
    color: #17a2b8; /* Blue */
}

.match-countdown[data-status="ended"] {
    color: #dc3545; /* Red */
}

/* Icon animations */
.match-countdown[data-status="live"] i {
    animation: pulse 2s infinite;
}

.match-countdown[data-status="soon"] i {
    animation: blink 1s infinite;
}

.match-countdown[data-status="halftime"] i {
    animation: pulse 1.5s infinite;
}

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

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

/* Watch page specific styles */
.match-header {
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.team-vs-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team {
    text-align: center;
}

.team-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.vs {
    font-size: 20px;
    font-weight: 500;
    color: #666;
}

.match-info {
    text-align: center;
}



.match-competition {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-logo {
        width: 48px;
        height: 48px;
    }
    
    .team-name {
        font-size: 14px;
    }
    
    .vs {
        font-size: 16px;
    }
}
