.next-match {
    max-width: 600px;
    margin: 25px auto;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg,#003366,#0055aa);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.next-match-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: #d3e9ff;
    margin-bottom: 12px;
}

.next-match-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.next-match-date {
    font-size: 18px;
    margin-bottom: 10px;
}

.next-match-location {
    font-size: 16px;
    opacity: .95;
}

.next-match:hover {
    transform: translateY(-3px);
    transition: all .3s ease;
}

.no-match {
    background: #666;
}

@media (max-width: 768px) {

    .next-match {
        padding: 20px;
    }

    .next-match-title {
        font-size: 24px;
    }

    .next-match-date {
        font-size: 16px;
    }
}