/* Match Schedule Pro Styles

.msp-fixtures-section {
    background: #7E2A3D;
    padding: 69px 211px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 15px;
}

.msp-fixtures-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.msp-match-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msp-match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.msp-match-status {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.msp-status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.msp-status-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.msp-status-live {
    background: #ffebee;
    color: #c62828;
    animation: msp-pulse 2s infinite;
}

@keyframes msp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.msp-match-info {
    text-align: center;
    margin-bottom: 25px;
}

.msp-match-datetime {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.msp-teams-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.msp-team {
    flex: 1;
    text-align: center;
}

.msp-team-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.msp-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.msp-team-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.msp-vs-divider {
    font-size: 24px;
    font-weight: bold;
    color: #999;
    margin: 0 20px;
}

.msp-score-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.msp-score {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.msp-score-divider {
    font-size: 24px;
    color: #999;
}


@media (max-width: 768px) {
    .msp-fixtures-grid {
        grid-template-columns: 1fr;
    }

    .msp-match-card {
        padding: 20px;
    }

    .msp-team-logo {
        width: 60px;
        height: 60px;
    }

    .msp-team-name {
        font-size: 16px;
    }

    .msp-score {
        font-size: 28px;
    }

    .msp-teams-container {
        margin: 20px 0;
    }
} */




/* =================================================
   Match Schedule Pro – Fully Responsive Styles
================================================= */

/* ---------- Base (Mobile First) ---------- */
.msp-fixtures-section {
    background: #7E2A3D;
    padding: 24px 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 12px;
}

.msp-fixtures-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Card */
.msp-match-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.msp-match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Status */
.msp-match-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 16px;
    margin-bottom: 14px;
}

.msp-status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.msp-status-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.msp-status-live {
    background: #ffebee;
    color: #c62828;
    animation: msp-pulse 2s infinite;
}

@keyframes msp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

/* Match Info */
.msp-match-info {
    text-align: center;
    margin-bottom: 16px;
}

.msp-match-datetime {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Teams */
.msp-teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 18px 0;
}

.msp-team {
    flex: 1;
    text-align: center;
}

.msp-team-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msp-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.msp-team-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.msp-vs-divider {
    font-size: 16px;
    font-weight: bold;
    color: #999;
}

/* Score */
.msp-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.msp-score {
    font-size: 22px;
    font-weight: 700;
}

.msp-score-divider {
    font-size: 18px;
    color: #999;
}

/* ---------- Large Mobile (≥480px) ---------- */
@media (min-width: 480px) {
    .msp-fixtures-section {
        padding: 32px 20px;
    }

    .msp-team-logo {
        width: 60px;
        height: 60px;
    }

    .msp-score {
        font-size: 26px;
    }
}

/* ---------- Tablet (≥768px) ---------- */
@media (min-width: 768px) {
    .msp-fixtures-section {
        padding: 48px 40px;
    }

    .msp-fixtures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .msp-match-card {
        padding: 24px;
    }

    .msp-team-logo {
        width: 70px;
        height: 70px;
    }

    .msp-team-name {
        font-size: 16px;
    }

    .msp-score {
        font-size: 30px;
    }
}

/* ---------- Laptop (≥1024px) ---------- */
@media (min-width: 1024px) {
    .msp-fixtures-section {
        padding: 64px 80px;
    }

    .msp-fixtures-grid {
        max-width: 1100px;
        gap: 32px;
    }

    .msp-team-logo {
        width: 80px;
        height: 80px;
    }

    .msp-team-name {
        font-size: 18px;
    }

    .msp-score {
        font-size: 34px;
    }
}

/* ---------- Desktop / Large Screens (≥1280px) ---------- */
@media (min-width: 1280px) {
    .msp-fixtures-section {
        padding: 80px 120px;
    }

    .msp-fixtures-grid {
        max-width: 1200px;
    }

    .msp-score {
        font-size: 36px;
    }
}