.ufcp-container {
	max_width: 800px;
	margin: 0 auto;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.ufcp-header {
	text-align: center;
	margin-bottom: 30px;
    border-bottom: 2px solid #e1e1e1;
    padding-bottom: 10px;
}

.ufcp-header h2 {
    margin: 0;
    color: #d20a0a; /* UFC Red */
    text-transform: uppercase;
}

.ufcp-meta {
    color: #666;
    font-size: 0.9em;
}

.ufcp-fight-card {
	display: flex;
	justify-content: space-between;
	align_items: center;
	background: #fff;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.ufcp-fighter {
	flex: 1;
	text-align: center;
    position: relative;
    z-index: 1;
}

.ufcp-img-wrap {
    height: 150px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ufcp-img-wrap img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.ufcp-fighter h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
}

.ufcp-stats {
    font-size: 0.9em;
    color: #888;
}

.ufcp-vs {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #ccc;
    font-style: italic;
    font-size: 1.5em;
}

.ufcp-badge {
    background: #d20a0a;
    color: white;
    font-size: 0.7em;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.ufcp-fighter.loser {
    opacity: 0.6;
    filter: grayscale(100%);
}

.ufcp-fighter.winner .ufcp-img-wrap img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.ufcp-footer {
    text-align: center;
    margin-top: 20px;
    color: #999;
}
