/**
 * UFC Styles - Exact copy from inline styles
 */

/* ==========================================================================
   FIGHTER DETAILS (shortcode-fighter-details.php)
   ========================================================================== */

.player-heading {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: visible;
}

.player-heading .container {
    position: relative;
    z-index: 2;
}

.player-info {
    display: flex;
    gap: 40px;
    align-items: start;
    color: #fff;
}

.player-info__title--mobile {
    display: none;
    margin-bottom: 30px;
    text-align: center;
}

.player-info__title--desktop {
    margin-bottom: 30px;
}

.player-info__name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2em;
}

.player-info__last-name {
    display: block;
    color: #ffdc11;
    font-size: 54px;
    line-height: 46px;
}

.player-info__item--photo {
    width: 259px;
    flex-shrink: 0;
}

.player-info__photo {
    margin: 0;
    overflow: hidden;
}

.player-info__photo img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(30px);
}

.player-info__item--details {
    flex: 1;
    padding: 48px 0;
}

.player-info-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.player-info-details__item {
    padding: 10px 50px 10px 0;
}

.player-info-details__title {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    line-height: 1.2em;
    margin-bottom: 0.1em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.player-info-details__value {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-info-stats {
    display: flex;
    gap: 30px;
    padding: 25px 0 0 0;
}

.player-info-stats__item {
    text-align: center;
}

.circular__label {
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2em;
    color: rgba(255,255,255,0.5);
}

.circular__label-first {
    display: block;
    color: #fff;
    font-size: 32px;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .player-heading {
        padding: 0;
    }
    .player-info {
        flex-direction: column;
        gap: 30px;
    }
    .player-info__title--mobile {
        display: block;
    }
    .player-info__title--desktop {
        display: none;
    }
    .player-info__item--photo {
        width: 100%;
        max-width: 259px;
        margin: 0 auto;
    }
    .player-info__item--details {
        padding: 0;
    }
    .player-info-details {
        padding: 0 17px;
    }
    .player-info-details__item {
        flex-basis: 50%;
        min-width: 50%;
        padding-right: 20px;
    }
    .player-info-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .player-info__name {
        font-size: 16px;
    }
    .player-info__last-name {
        font-size: 32px;
        line-height: 1em;
    }
    .player-info-details__item {
        flex-basis: 100%;
        min-width: 100%;
        padding-right: 0;
    }
    .player-info__photo img {
        transform: translateY(0);
    }
}

/* ==========================================================================
   FIGHTER FIGHTS HISTORY (shortcode-fighter-fights.php)
   ========================================================================== */

.fighter-matches {
    padding: 0;
    background: transparent;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border-left: 4px solid #ccc;
}

.match-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.match-item.win {
    border-left-color: #4caf50;
}

.match-item.loss {
    border-left-color: #f44336;
}

.match-item.draw {
    border-left-color: #ff9800;
}

.match-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.match-item__event {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.match-item__event-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e2024;
    font-family: 'Montserrat', sans-serif;
}

.match-item__date {
    font-size: 12px;
    color: #666;
}

.result-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.result-badge--win {
    background: #4caf50;
    color: #fff;
}

.result-badge--loss {
    background: #f44336;
    color: #fff;
}

.result-badge--draw {
    background: #ff9800;
    color: #fff;
}

.match-item__body {
    padding: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    background: #292c31;
}

.match-item__opponent {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.opponent-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3a3d42;
    flex-shrink: 0;
}

.opponent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opponent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.opponent-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.opponent-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.opponent-name:hover {
    color: #ffdc11;
}

.match-item__details {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.match-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.match-detail__label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.match-detail__value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .fighter-matches {
        padding: 0;
    }
    .match-item__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .match-item__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
    }
    .match-item__opponent {
        width: 100%;
    }
    .match-item__details {
        width: 100%;
        gap: 15px;
    }
    .opponent-photo {
        width: 50px;
        height: 50px;
    }
    .opponent-name {
        font-size: 16px;
    }
    .match-detail__value {
        font-size: 13px;
    }
}

/* ==========================================================================
   EVENT FIGHTS (shortcode-event-fights-new.php)
   ========================================================================== */

.ufc-card-section {
    margin-bottom: 40px;
}

.ufc-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFDC11;
    text-transform: uppercase;
    color: #fff;
}

.ufc-fights-grid {
    display: grid;
    gap: 20px;
}

.ufc-fight-card-modern {
    background: #292C31;
    border: 1px solid #3a3d42;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.ufc-fight-card-modern.prelim {
    background: #292C31;
    opacity: 0.9;
}

.ufc-fighters-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.ufc-fighter-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ufc-fighter-side.left {
    justify-content: flex-start;
}

.ufc-fighter-side.right {
    justify-content: flex-end;
}

.ufc-fighter-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3a3d42;
    flex-shrink: 0;
}

.ufc-fighter-side.win .ufc-fighter-avatar {
    border-color: #4caf50;
}

.ufc-fighter-side.loss .ufc-fighter-avatar {
    border-color: #d32f2f;
}

.ufc-fighter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ufc-fighter-name-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-decoration: none;
}

.ufc-fighter-side.right .ufc-fighter-name-col {
    align-items: flex-end;
}

.ufc-fighter-link {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.ufc-fighter-name-col:hover .ufc-fighter-link {
    color: #FFDC11;
}

.ufc-result-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.ufc-result-badge.win {
    background: #4caf50;
    color: #fff;
}

.ufc-result-badge.loss {
    background: #d32f2f;
    color: #fff;
}

.ufc-flag {
    display: inline-block;
    vertical-align: middle;
}

.ufc-vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ufc-weight-class {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.ufc-method-pill-large {
    background: #FFDC11;
    padding: 10px 19px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    color: #1E2024;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 220, 17, 0.3);
}

.ufc-fight-details {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #3a3d42;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
    justify-content: center;
}

.ufc-detail-item {
    display: flex;
    align-items: center;
}

.ufc-detail-item:not(:last-child):after {
    content: '•';
    margin-left: 15px;
    color: #666;
}

@media (max-width: 768px) {
    .ufc-card-section {
        margin-bottom: 30px;
    }
    
    .ufc-card-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .ufc-fight-card-modern {
        padding: 12px;
    }
    
    .ufc-fighters-row {
        gap: 10px;
    }
    
    .ufc-fighter-side {
        gap: 8px;
    }
    
    .ufc-fighter-avatar {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
    
    .ufc-fighter-link {
        font-size: 12px;
    }
    
    .ufc-result-badge {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .ufc-method-pill-large {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .ufc-weight-class {
        font-size: 9px;
    }
    
    .ufc-vs-divider {
        gap: 6px;
    }
    
    .ufc-fight-details {
        gap: 8px;
        padding-top: 10px;
        font-size: 10px;
    }
    
    .ufc-detail-item:not(:last-child):after {
        margin-left: 8px;
    }
    
    .ufc-flag {
        max-width: 18px;
    }
}

@media (max-width: 480px) {
    .ufc-fighter-avatar {
        width: 40px;
        height: 40px;
    }
    
    .ufc-fighter-link {
        font-size: 11px;
    }
    
    .ufc-method-pill-large {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .ufc-fight-card-modern {
        padding: 10px;
    }
    
    .ufc-card-title {
        font-size: 16px;
    }
    
    .ufc-fighters-row {
        gap: 8px;
    }
    
    .ufc-fighter-side {
        gap: 6px;
    }
    
    .ufc-result-badge {
        font-size: 8px;
        padding: 1px 4px;
    }
}

/* ==========================================================================
   FIGHT DETAILS PAGE - MINIMAL PRO DESIGN
   ========================================================================== */

.fight-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.fight-page__event {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.fight-page__event a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.fight-page__event a:hover {
    color: #FFDC11;
}

.fight-page__event span {
    font-size: 13px;
    color: #999;
}

.fight-matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: #292C31;
    border-radius: 5px;
}

.fight-matchup__fighter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fight-matchup__photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fight-matchup__photo {
    width: 120px;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.fight-matchup__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fight-matchup__info {
    text-align: center;
    max-width: 200px;
}

.fight-matchup__result-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.fight-matchup__fighter.winner .fight-matchup__result-badge {
    background: #4caf50;
    color: #fff;
}

.fight-matchup__fighter.loser .fight-matchup__result-badge {
    background: #f44336;
    color: #fff;
}

.fight-matchup__name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.fight-matchup__name:hover {
    color: #FFDC11;
}

.fight-matchup__fighter.winner .fight-matchup__name {
    color: #FFDC11;
}

.fight-matchup__record {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.fight-matchup__country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.fight-matchup__result {
    text-align: center;
    padding: 25px 20px;
    background: #1a1a1a;
    border-radius: 5px;
    min-width: 150px;
    border: 2px solid #FFDC11;
}

.fight-matchup__method {
    font-size: 16px;
    font-weight: 700;
    color: #FFDC11;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.fight-matchup__time {
    font-size: 14px;
    color: #ccc;
    font-weight: 600;
}

.fight-stats-section {
    background: #292C31;
    padding: 30px 20px;
    border-radius: 5px;
}

.fight-stats-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 25px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.fight-stats-table {
    max-width: 700px;
    margin: 0 auto;
}

.fight-stats-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3a3d42;
}

.fight-stats-row:last-child {
    border-bottom: none;
}

.fight-stats-row__value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.fight-stats-row__value:first-child {
    text-align: right;
}

.fight-stats-row__value:last-child {
    text-align: left;
}

.fight-stats-row__label {
    font-size: 12px;
    color: #999;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .fight-matchup {
        gap: 40px;
        padding: 30px;
    }
    
    .fight-matchup__photo {
        width: 160px;
        height: 160px;
    }
    
    .fight-matchup__name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .fight-matchup {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .fight-matchup__fighter {
        flex-direction: column;
        text-align: center;
    }
    
    .fight-matchup__fighter:first-child,
    .fight-matchup__fighter:last-child {
        justify-content: center;
    }
    
    .fight-matchup__photo {
        width: 140px;
        height: 140px;
    }
    
    .fight-matchup__name {
        font-size: 20px;
    }
    
    .fight-matchup__result {
        min-width: auto;
        padding: 20px;
    }
    
    .fight-stats-section {
        padding: 30px 20px;
    }
    
    .fight-stats-row {
        padding: 15px 0;
    }
    
    .fight-stats-row__value {
        font-size: 20px;
    }
    
    .fight-stats-row__label {
        font-size: 12px;
    }
}

/* ==========================================================================
   FIGHT CARD LINKS
   ========================================================================== */

.ufc-fight-card-modern[data-fight-url],
.match-item[data-fight-url] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.ufc-fight-card-modern[data-fight-url]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 220, 17, 0.2);
}

.match-item[data-fight-url]:hover {
    transform: translateY(-2px);
}


/* ==========================================================================
   FIGHT DETAILS - CLEAN VERSION
   ========================================================================== */

.fight-details {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.fight-details__event {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3a3d42;
}

.fight-details__event a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__event a:hover {
    color: #FFDC11;
}

.fight-details__event span {
    font-size: 13px;
    color: #999;
}

.fight-details__matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: #292C31;
    border-radius: 5px;
}

.fight-details__fighter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fight-details__fighter-photo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.fight-details__fighter-photo {
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.fight-details__fighter-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fight-details__badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__badge.winner {
    background: #4caf50;
    color: #fff;
}

.fight-details__badge.loser {
    background: #f44336;
    color: #fff;
}

.fight-details__fighter-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fight-details__fighter-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__fighter-name:hover {
    color: #FFDC11;
}

.fight-details__fighter.winner .fight-details__fighter-name {
    color: #FFDC11;
}

.fight-details__fighter-record {
    font-size: 13px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__fighter-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.fight-details__result {
    text-align: center;
    padding: 25px 20px;
    background: #1a1a1a;
    border-radius: 5px;
    border: 2px solid #FFDC11;
    min-width: 150px;
}

.fight-details__method {
    font-size: 16px;
    font-weight: 700;
    color: #FFDC11;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.fight-details__time {
    font-size: 14px;
    color: #ccc;
    font-weight: 600;
}

.fight-details__stats {
    background: #292C31;
    padding: 30px 20px;
    border-radius: 5px;
}

.fight-details__stats h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 25px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__stat-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3a3d42;
    max-width: 700px;
    margin: 0 auto;
}

.fight-details__stat-row:last-child {
    border-bottom: none;
}

.fight-details__stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.fight-details__stat-value:first-child {
    text-align: right;
}

.fight-details__stat-value:last-child {
    text-align: left;
}

.fight-details__stat-label {
    font-size: 12px;
    color: #999;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fight-details__matchup {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .fight-details__result {
        min-width: auto;
    }
}


/* ==========================================================================
   RANKINGS (class-rankings-shortcode.php)
   ========================================================================== */

.ufc-rankings {
    max-width: 1000px;
    margin: 0 auto;
}

.ufc-rankings__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFDC11;
}

.ufc-rankings__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.ufc-rankings__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ufc-rankings__item {
    display: grid;
    grid-template-columns: 80px 80px 1fr 150px 120px;
    align-items: center;
    padding: 20px;
    background: #292C31;
    border-radius: 5px;
    border-left: 4px solid #3a3d42;
    gap: 20px;
    transition: all 0.3s ease;
}

.ufc-rankings__item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ufc-rankings__item.champion {
    border-left-color: #FFDC11;
    background: #2a2d32;
}

.ufc-rankings__rank {
    font-size: 28px;
    font-weight: 700;
    color: #999;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.ufc-rankings__rank.champion {
    color: #FFDC11;
}

.ufc-rankings__rank .crown {
    font-size: 32px;
}

.ufc-rankings__photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3a3d42;
    background: #1a1a1a;
}

.ufc-rankings__item.champion .ufc-rankings__photo {
    border-color: #FFDC11;
}

.ufc-rankings__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ufc-rankings__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ufc-rankings__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.ufc-rankings__name:hover {
    color: #FFDC11;
}

.ufc-rankings__nickname {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.ufc-rankings__record {
    font-size: 16px;
    font-weight: 700;
    color: #ccc;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.ufc-rankings__action {
    text-align: center;
}

.ufc-rankings__btn {
    display: inline-block;
    padding: 8px 16px;
    background: #FFDC11;
    color: #1E2024;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ufc-rankings__btn:hover {
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .ufc-rankings__item {
        grid-template-columns: 50px 60px 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .ufc-rankings__record,
    .ufc-rankings__action {
        display: none;
    }
    
    .ufc-rankings__photo {
        width: 50px;
        height: 50px;
    }
    
    .ufc-rankings__rank {
        font-size: 20px;
    }
    
    .ufc-rankings__name {
        font-size: 16px;
    }
    
    .ufc-rankings__nickname {
        font-size: 12px;
    }
}


.ufc-rankings__change {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

.ufc-rankings__change.up {
    color: #4caf50;
}

.ufc-rankings__change.down {
    color: #f44336;
}

.ufc-rankings__change.new {
    color: #FFDC11;
    font-size: 10px;
}

/* ==========================================================================
   FIGHTER CAREER STATS (shortcode-fighter-details.php)
   ========================================================================== */

.fighter-career-stats {
    padding: 40px 0;
}

.fighter-career-stats__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFDC11;
}

.fighter-career-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.career-stat {
    background: #292C31;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    border-top: 3px solid #3a3d42;
    transition: border-color 0.3s ease;
}

.career-stat:hover {
    border-top-color: #FFDC11;
}

.career-stat__value {
    font-size: 28px;
    font-weight: 700;
    color: #FFDC11;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.career-stat__label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .fighter-career-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .career-stat__value {
        font-size: 22px;
    }
}

/* ==========================================================================
   FIGHT DETAILS - NOUVELLES SECTIONS
   ========================================================================== */

.fight-details__stats {
    margin-bottom: 20px;
}

.fight-details__stat-row--header .fight-details__stat-value {
    font-size: 13px;
    color: #FFDC11;
    font-weight: 700;
    text-transform: uppercase;
}

.fight-details__info {
    background: #292C31;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.fight-details__referee {
    font-size: 14px;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.fight-details__judges {
    font-size: 13px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

.fight-details__method-detail {
    font-size: 13px;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4px;
    font-style: italic;
}

.ufc-title-belt {
    width: 30px;
    height: 15px;
    vertical-align: middle;
    margin-left: 5px;
}

.ufc-weight-class {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ufc-title-belt {
    width: 30px;
    height: 15px;
    vertical-align: middle;
    margin-left: 5px;
}

.ufc-weight-class {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ==========================================================================
   EVENTS LIST
   ========================================================================== */
.ufc-events-list { display: flex; flex-direction: column; gap: 10px; }
.ufc-event-item { display: flex; align-items: center; gap: 20px; padding: 15px 20px; background: #292C31; border-radius: 5px; border-left: 4px solid #3a3d42; transition: all 0.3s ease; }
.ufc-event-item:hover { border-left-color: #FFDC11; transform: translateX(4px); }
.ufc-event-name { font-size: 15px; font-weight: 700; color: #fff; text-decoration: none; font-family: 'Montserrat', sans-serif; flex: 1; }
.ufc-event-name:hover { color: #FFDC11; }
.ufc-event-date { font-size: 13px; color: #FFDC11; font-family: 'Montserrat', sans-serif; white-space: nowrap; }
.ufc-event-location { font-size: 12px; color: #999; font-family: 'Montserrat', sans-serif; white-space: nowrap; }
