/* MatchCard - Diseño Deportivo Compacto Profesional */
.match-card {
    background-color: var(--jg-white);
    border: var(--border-jg);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease-in-out;
}

.match-card:hover {
    border-color: var(--jg-silver);
    box-shadow: var(--shadow-md);
}

.match-row {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Columna Izquierda (Local): 35% */
.match-home {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
}

.match-number {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--jg-text-light);
    min-width: 20px;
}

.match-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    background: var(--jg-light);
    border-radius: var(--radius-pill);
    border: var(--border-jg);
    padding: 2px;
}

.match-team-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--jg-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Columna Central (Marcador y Badge): 30% */
.match-center {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3px;
}

.match-score {
    font-size: var(--fs-lg);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--jg-dark-2);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.match-score span {
    background-color: var(--jg-light);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    min-width: 28px;
    display: inline-block;
    text-align: center;
}

.match-vs {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--jg-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-status {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    line-height: 1;
    display: inline-block;
}

.status-pending {
    background-color: var(--jg-light);
    color: var(--jg-text-light);
}

.status-captured {
    background-color: rgba(57, 211, 83, 0.15);
    color: var(--jg-success);
}

/* Columna Derecha (Visitante): 35% */
.match-away {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-sm);
    text-align: right;
}

/* Responsive para Mobile */
@media (max-width: 768px) {
    .match-home {
        width: 40%;
        gap: 6px;
    }
    
    .match-away {
        width: 40%;
        gap: 6px;
    }
    
    .match-center {
        width: 20%;
    }
    
    .match-score {
        font-size: var(--fs-sm);
        gap: 3px;
    }

    .match-score span {
        padding: 2px 5px;
        min-width: 22px;
    }
    
    .match-team-name {
        font-size: var(--fs-xs);
    }
    
    .match-logo {
        width: 26px;
        height: 26px;
    }

    .match-status {
        font-size: 0.58rem;
        padding: 1px 5px;
    }
}
