/* WP NextGame - Estilo Frontend Premium (Triple Color Design) */
.wp-nextgame-frontend-wrap {
    width: 100%;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.wp-nextgame-frontend-wrap .match-card-visual {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef0f2;
    padding: 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
}

.wp-nextgame-frontend-wrap .m-visual-header {
    background: linear-gradient(135deg, #000000 0%, #1c1c1c 100%);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.wp-nextgame-frontend-wrap .m-visual-championship {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.wp-nextgame-frontend-wrap .m-visual-date {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.wp-nextgame-frontend-wrap .m-visual-stadium-top {
    padding: 15px 15px 5px 15px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.wp-nextgame-frontend-wrap .m-visual-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px 25px 20px;
}

.wp-nextgame-frontend-wrap .m-visual-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wp-nextgame-frontend-wrap .m-visual-team img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.wp-nextgame-frontend-wrap .m-visual-team span {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.wp-nextgame-frontend-wrap .m-visual-vs {
    background: #f1f5f9;
    color: #94a3b8;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.wp-nextgame-frontend-wrap .m-visual-footer {
    padding: 15px;
    background: #dcdcde;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-nextgame-frontend-wrap .m-visual-countdown-timer {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

/* Status AO VIVO */
.wp-nextgame-frontend-wrap .m-live-badge {
    display: none;
    align-self: center;
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.wp-nextgame-frontend-wrap .match-card-visual.is-live .m-live-badge {
    display: inline-flex;
}

.wp-nextgame-frontend-wrap .m-live-badge span {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    display: block;
    animation: pulse-live 1s infinite;
}

@keyframes pulse-live {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.wp-nextgame-frontend-wrap .match-card-visual.is-live {
    border-color: #ef4444 !important;
}

.wp-nextgame-frontend-wrap .match-card-visual.is-live .m-visual-countdown-timer {
    color: #ef4444 !important;
}

/* Empty State Styling */
.wp-nextgame-frontend-wrap .is-empty-state .empty-state-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    color: #64748b;
}

.wp-nextgame-frontend-wrap .is-empty-state .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.wp-nextgame-frontend-wrap .is-empty-state p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.wp-nextgame-frontend-wrap .is-empty-state small {
    font-size: 12px;
    margin-top: 5px;
}