/* Event Page Styles */

/* Event Header Layout - Desktop: Poster left, Info right */
.event-header-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    align-items: flex-start;
}

/* Fight Card Header */
.fight-card-header {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 30px auto;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Hero Poster - Full Image Display */
.event-hero-poster {
    flex: 0 0 auto;
    max-width: 600px;
    width: 100%;
}

.event-poster-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Info Wrapper */
.event-info-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
}

/* Event Info Box */
.event-info-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .event-header-layout {
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .event-hero-poster {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .event-poster-image {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .event-info-wrapper {
        width: 100%;
        padding: 20px;
    }
    }
    
    .event-info-box {
        padding: 25px;
        gap: 18px;
        width: 100%;
        grid-template-columns: 1fr;
    }
}
    position: relative;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    padding: 150px 20px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.event-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.event-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.event-details-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.event-date {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.event-venue {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.event-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Event Info Box */
.event-info-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Event Description */
.event-description {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
}

.event-description h2 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 20px 0;
}

.event-details-text {
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

/* Fight Card Section */
.fight-card-section {
    margin-bottom: 60px;
}

.card-title {
    font-size: 32px;
    color: #fff;
    margin: 0 0 40px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #c41e3a;
}

/* Fights Grid */
.fights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.prelims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Fight Card */
.fight-card {
    /* Base styles only - layout handled by specific classes */
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.fight-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
}

.fight-card-prelims {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
}

/* Featured Fights (Main Event & Co-Main Event) */
.featured-fights {
    margin-bottom: 50px;
}

.featured-fight {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    border: 2px solid #c41e3a !important;
    border-radius: 12px;
    padding: 40px !important;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3) !important;
    grid-template-columns: unset !important;
    gap: unset !important;
}

.featured-fight .fight-card-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-event-fight {
    padding: 50px !important;
}

.main-event-fight .fight-card-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-event-fight .fighter-image-large {
    width: 140px;
    height: 190px;
}

.main-event-fight .fighter-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.main-event-fight .fighter-details .last-name {
    font-size: 24px;
}

.co-main-event-fight {
    padding: 45px !important;
}

.co-main-event-fight .fight-card-content {
    display: flex;
    flex-direction: row;
    gap: 45px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.co-main-event-fight .fighter-image-large {
    width: 140px;
    height: 190px;
}

.co-main-event-fight .fighter-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.co-main-event-fight .fighter-details .last-name {
    font-size: 22px;
}

.fight-position-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.fight-position-badge.co-main {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
}

.fight-position-badge-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.fight-position-label {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.co-main-event-fight .fight-position-label {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
}

.featured-fight-position-header {
    margin: 0 0 20px 0;
    padding: 0 0 12px 0;
    font-size: 20px;
    font-weight: 900;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 3px solid #c41e3a;
    display: block;
    width: 100%;
    order: 0;
    flex-shrink: 0;
    text-align: center;
}

/* Fighter Section */
.fight-fighter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fighter-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.fighter-link:hover {
    transform: scale(1.05);
}

.fighter-image {
/* .fighter-incomplete styles removed: no incomplete badge shown */
    justify-content: center;
    color: #666;
    font-size: 12px;
}

.fighter-name {
    text-align: center;
}

.fighter-nickname {
    margin: 2px 0 0;
    font-size: 13px;
    color: #d5d5d5;
    font-style: italic;
}

.fight-row-card .fighter-nickname {
    font-size: 12px;
}

/* Fight row layout (desktop defaults) */
.fight-row-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fight-row-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fight-card-header-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    order: -1;
}

.fight-header-text {
    font-weight: inherit;
    color: inherit;
}

.fight-order-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    border: 1px solid #c41e3a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.fight-row-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
}

.fight-row-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.fight-row-fighter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.fight-row-fighter:first-of-type {
    order: 2;
}

.fight-row-fighter:last-of-type {
    order: -1;
}

.fighter-link-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.fight-row-photo {
    position: relative;
    width: 150px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
    margin: 0 auto;
}

.fight-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.champ-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.fighter-record-text {
    margin: 6px 0 0;
    font-size: 13px;
    color: #b5b5b5;
}

.fighter-outcome {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    color: #999;
}

.outcome-win { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); color: #fff; }
.outcome-loss { background: #262626; color: #a5a5a5; }
.outcome-draw { background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); color: #fff; }

.fight-row-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    text-align: center;
    flex-shrink: 0;
}

.fight-meta-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    border: 1px solid #2f2f2f;
    color: #e6e6e6;
    font-size: 12px;
    font-weight: 700;
}

.chip-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    border: none;
}

.chip-rounds {
    background: #161616;
}

.vs-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rounds-label {
    margin: 0;
    font-size: 13px;
    color: #cfcfcf;
}

.method-line {
    font-size: 13px;
    color: #d1d1d1;
    line-height: 1.4;
}


.fight-card-header-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    margin: 8px 0 12px;
    letter-spacing: 0.5px;
}

.fight-header-text {
    font-weight: inherit;
    color: inherit;
}

.fight-order-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    border: 1px solid #c41e3a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.fight-row-card .fight-card-header-line {
    grid-column: 1 / -1;
}

.fight-row-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
}

.fight-row-fighter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.fighter-link-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.fight-row-photo {
    position: relative;
    width: 150px;
    height: 200px;
        width: 210px;
        height: 280px;
    overflow: hidden;
    background: #0a0a0a;
}

.fight-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.champ-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.fighter-record-text {
    margin: 6px 0 0;
    font-size: 13px;
    color: #b5b5b5;
}

.fighter-outcome {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    color: #999;
}

.outcome-win { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); color: #fff; }
.outcome-loss { background: #262626; color: #a5a5a5; }
.outcome-draw { background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); color: #fff; }

.fight-row-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    text-align: center;
}

.fight-meta-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1f1f1f;
    border: 1px solid #2f2f2f;
    color: #e6e6e6;
    font-size: 12px;
    font-weight: 700;
}

.chip-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    border: none;
}

.chip-rounds {
    background: #161616;
}

.vs-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rounds-label {
    margin: 0;
    font-size: 13px;
    color: #cfcfcf;
}

.method-line {
    font-size: 13px;
    color: #d1d1d1;
    line-height: 1.4;
}

        .fight-card-header-line {
            width: 100%;
            text-align: center;
            font-weight: 800;
            color: #fff;
            margin: 8px 0 12px;
            letter-spacing: 0.5px;
        }

        .fight-row-card {
            grid-template-rows: auto 1fr;
        }

        .fight-row-card .fight-card-header-line {
            grid-column: 1 / -1;
        }

.fighter-name p {
    margin: 0;
    line-height: 1.3;
}

.first-name {
    font-size: 14px;
    color: #aaa;
}

.last-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Fight Result */
.fight-result,
.fight-result-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fight-vs {
    font-size: 24px;
    font-weight: 900;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.result-badge span {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.result-badge .winner {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.result-badge .loser {
    background: #333;
    color: #999;
}

.result-badge .draw {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.result-method {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.result-details {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* New BKFC-Style Fight Card Layout */
.fight-card-content {
    display: flex;
    flex: 1;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.fighter-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 350px;
}

.fighter-1-side {
    text-align: left;
    order: 3;
}

.fighter-2-side {
    text-align: right;
    order: -1;
}

.fighter-image-large {
    position: relative;
    width: 140px;
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
    flex-shrink: 0;
    object-fit: cover;
}

.fighter-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fighter-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    min-height: 90px;
    justify-content: flex-start;
}

.fighter-section {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
    flex: 0 1 auto;
    min-width: 0;
    align-self: flex-start;
}

.fighter-section:hover {
    transform: scale(1.02);
}

.fighter-name-large {
    margin: 0;
    text-align: center;
}

.fighter-details .first-name {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.fighter-details .last-name {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.fighter-stats-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    width: 100%;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.fight-center {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    order: 2;
    flex-shrink: 0;
}

.vs-label {
    font-size: 32px;
    font-weight: 900;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.fight-details-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.detail-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.fighter-result-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.fighter-result-badge span {
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.loss-badge {
    background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.draw-badge {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.nc-badge {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.pending-badge {
    background: #333;
    color: #aaa;
    box-shadow: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
}

.empty-state h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.empty-state p {
    color: #aaa;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .fight-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .featured-fight {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 30px !important;
        padding: 40px !important;
    }

    .featured-fight .fight-card-content {
        gap: 30px !important;
    }

    .main-event-fight {
        gap: 30px !important;
        padding: 45px !important;
    }

    .co-main-event-fight {
        gap: 28px !important;
        padding: 40px !important;
    }

    .fight-result,
    .fight-result-2 {
        order: -1;
    }

    .fighter-image {
        width: 120px;
        height: 160px;
    }

    .main-event-fight .fighter-image {
        width: 150px;
        height: 200px;
    }

    .co-main-event-fight .fighter-image {
        width: 140px;
        height: 190px;
    }

    .fight-row-photo {
        width: 140px;
        height: 190px;
    }

    /* BKFC-style layout adjustments */
    .prelims-grid .fight-card-content,
    .main-card-grid .fight-card-content {
        flex-direction: column;
        gap: 20px;
    }

    .fighter-side {
        max-width: 100%;
    }

    .fighter-image-large {
        width: 200px;
        height: 270px;
    }

    .fight-center {
        width: 100%;
    }

    .vs-label {
        font-size: 28px;
    }

    .fighter-details .last-name {
        font-size: 20px;
    }

    .fight-details-box {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .main-event-fight .fight-card-content {
        gap: 25px;
    }

    .co-main-event-fight .fight-card-content {
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .fight-row-list {
        gap: 14px;
    }

    .fight-row-photo {
        width: 130px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .event-hero h1 {
        font-size: 2.5rem;
    }

    .event-info-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-title {
        font-size: 24px;
    }

    .fight-card {
        padding: 20px;
    }

    .featured-fight {
        padding: 25px !important;
        gap: 15px !important;
    }

    .main-event-fight {
        padding: 30px !important;
        gap: 20px !important;
    }

    .co-main-event-fight {
        padding: 28px !important;
        gap: 18px !important;
    }

    .fighter-image {
        width: 100px;
        height: 140px;
    }

    .main-event-fight .fighter-image {
        width: 120px;
        height: 160px;
    }

    .co-main-event-fight .fighter-image {
        width: 110px;
        height: 150px;
    }

    .last-name {
        font-size: 16px;
    }

    .main-event-fight .last-name {
        font-size: 18px;
    }

    .co-main-event-fight .last-name {
        font-size: 17px;
    }

    .prelims-grid {
        grid-template-columns: 1fr;
    }

    /* BKFC-style layout adjustments */
    .prelims-grid .fight-card-content,
    .main-card-grid .fight-card-content {
        flex-direction: column;
        gap: 15px;
    }

    .fighter-image-large {
        width: 180px;
        height: 250px;
    }

    .fighter-details .last-name {
        font-size: 18px;
    }

    .vs-label {
        font-size: 24px;
    }

    .fighter-stats-section {
        font-size: 13px;
    }

    .fight-details-box {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .detail-value {
        font-size: 12px;
    }

    /* Featured fight specific */
    .featured-fight {
        padding: 30px !important;
    }

    .featured-fight .fight-card-content {
        gap: 12px;
    }

    .main-event-fight {
        padding: 32px !important;
    }

    .main-event-fight .fight-card-content {
        gap: 15px;
    }

    .co-main-event-fight {
        padding: 30px !important;
    }

    .co-main-event-fight .fight-card-content {
        gap: 13px;
    }
}

@media (max-width: 600px) {
    .event-hero {
        padding: 100px 18px;
    }

    .event-hero h1 {
        font-size: 2rem;
    }

    .event-info-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .prelims-grid {
        grid-template-columns: 1fr;
    }

    .fight-row-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        margin: 0 -20px;
        padding: 16px 12px;
    }

    .fight-row-card {
        background: #111;
        border: 2px solid #2a2a2a;
        border-radius: 12px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: calc(100% - 24px);
        margin: 0 12px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .fight-row-card:hover {
        border-color: #c41e3a;
        box-shadow: 0 6px 20px rgba(196, 30, 58, 0.2);
    }

    .fight-card-header-line {
        width: 100%;
        font-size: 14px;
        gap: 8px;
    }

    .fight-order-pill {
        min-width: 30px;
        padding: 3px 8px;
        font-size: 11px;
    }

    .fight-row-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .fight-row-fighter {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .fight-row-photo {
        width: 120px;
        height: 160px;
        border-radius: 8px;
    }

    .fight-row-center {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }

    .fight-meta-chips {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }

    .chip {
        padding: 5px 8px;
        font-size: 11px;
    }

    .vs-stack {
        gap: 4px;
    }

    .vs-label {
        font-size: 18px;
    }

    .method-line {
        font-size: 12px;
    }

    .fighter-record-text {
        font-size: 12px;
    }

    .fighter-outcome {
        font-size: 11px;
        padding: 5px 8px;
    }

    .vs-label {
        font-size: 20px;
        letter-spacing: 2px;
    }

    /* BKFC-style layout adjustments */
    .fight-card-content {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .fighter-image-large {
        width: 140px;
        height: 190px;
    }

    .fight-center {
        flex: 0.4;
        padding: 15px;
        gap: 15px;
    }

    .vs-label {
        font-size: 20px;
    }

    .fighter-details .last-name {
        font-size: 16px;
    }

    .fight-details-box {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .event-hero {
        padding: 80px 16px;
        margin-bottom: 40px;
    }

    .event-hero h1 {
        font-size: 1.8rem;
    }

    .event-details-hero {
        gap: 5px;
    }

    .event-date {
        font-size: 1rem;
    }

    .event-venue {
        font-size: 0.95rem;
    }

    .event-info-box {
        padding: 20px;
        gap: 15px;
    }

    .info-value {
        font-size: 16px;
    }

    .event-description {
        padding: 20px;
        margin-bottom: 40px;
    }

    .event-description h2 {
        font-size: 22px;
    }

    .event-details-text {
        font-size: 14px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .fight-card {
        padding: 15px;
    }

    .featured-fight {
        padding: 15px !important;
        gap: 10px !important;
        margin-bottom: 20px;
    }

    .main-event-fight {
        padding: 18px !important;
        gap: 12px !important;
    }

    .co-main-event-fight {
        padding: 16px !important;
        gap: 11px !important;
    }

    .fighter-image {
        width: 80px;
        height: 110px;
    }

    .main-event-fight .fighter-image {
        width: 90px;
        height: 120px;
    }

    .co-main-event-fight .fighter-image {
        width: 85px;
        height: 115px;
    }

    .first-name {
        font-size: 12px;
    }

    .last-name {
        font-size: 14px;
    }

    .main-event-fight .last-name {
        font-size: 15px;
    }

    .co-main-event-fight .last-name {
        font-size: 15px;
    }

    .fight-vs {
        font-size: 18px;
    }

    .fight-position-badge,
    .fight-position-label {
        font-size: 9px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }

    /* BKFC-style layout adjustments */
    .fight-card-content {
        flex-direction: column;
        gap: 10px;
    }

    .fighter-side {
        max-width: 100%;
    }

    .fighter-image-large {
        width: 140px;
        height: 200px;
    }

    .fighter-details .first-name {
        font-size: 11px;
    }

    .fighter-details .last-name {
        font-size: 15px;
    }

    .vs-label {
        font-size: 20px;
        margin: 10px 0;
    }

    .fighter-stats-section {
        font-size: 11px;
    }

    .stat-row {
        gap: 10px;
    }

    .fight-details-box {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .detail-label {
        font-size: 9px;
    }

    .detail-value {
        font-size: 11px;
    }

    .fighter-result-badge span {
        font-size: 9px;
        padding: 4px 8px;
    }

    /* Featured fight specific */
    .featured-fight {
        padding: 16px !important;
        gap: 12px !important;
    }

    .featured-fight-position-header {
        font-size: 16px;
        margin: 0 0 14px 0;
        padding: 0 0 8px 0;
        letter-spacing: 1px;
    }

    .featured-fight .fight-card-content {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }

    .main-event-fight {
        padding: 18px !important;
    }

    .main-event-fight .fight-card-content {
        gap: 10px;
        flex-direction: row;
    }

    .co-main-event-fight {
        padding: 16px !important;
    }

    .co-main-event-fight .fight-card-content {
        gap: 9px;
        flex-direction: row;
    }
}
/* Incomplete Fighter Styling */
/* .fighter-incomplete and badge styles fully removed */

/* Modal Styles for Quick Add Fighter */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quick-add-fighter-modal {
    border: 2px solid #ff6b35;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
}

#quickAddForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.quick-add-message {
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.quick-add-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.quick-add-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Badge Styling */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;