.timer {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.timer span {
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 15px;
}

/* Match Cards */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.match-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.match-info h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.match-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.match-time {
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
}

.match-status {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.status-upcoming {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }

    50% {
        opacity: 0.85;
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    }
}

.match-action {
    display: flex;
    align-items: center;
}

.btn {
    padding: 14px 36px;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.btn-watch {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.btn-watch:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

.btn-view {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.btn-view:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {




    .match-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px;
    }

    .match-action {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 36px;
    }

    .home-title {
        font-size: 26px;
    }

    .match-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .timer {
        font-size: 13px;
    }

    .timer span {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .match-info h3 {
        font-size: 18px;
    }
}