/* ========== SECCIÓN PELEAS GRABADAS ========== */
.recorded-fights {
    margin-top: 3rem;
    padding: 1rem 0;
}

/* HEADER DE SECCIÓN */
.recorded-fights .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230, 36, 36, 0.5);
}

.recorded-fights .header-left .badge {
    display: inline-block;
    background: #E62424;
    color: #FFD966;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-bottom: 0.5rem;
}

.recorded-fights .header-left h2 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #FFD966;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 #E62424;
    margin-bottom: 0.3rem;
}

.recorded-fights .header-left p {
    color: #aaa;
    font-size: 0.85rem;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #E62424;
    color: #FFD966;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.view-all-btn:hover {
    background: #E62424;
    color: #FFD966;
    transform: scale(1.02);
}

.view-all-btn span {
    margin-left: 0.3rem;
    transition: transform 0.2s;
    display: inline-block;
}

.view-all-btn:hover span {
    transform: translateX(4px);
}

/* ========== CUADRÍCULA 2x3 (ARRIBA 2, ABAJO 3) ========== */
.fights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.grid-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.row-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.row-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* TARJETA DE PELEA */
.fight-card {
    background: rgba(15, 10, 12, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(230, 36, 36, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fight-card:hover {
    transform: translateY(-6px);
    border-color: #FFD966;
    box-shadow: 0 10px 25px rgba(230, 36, 36, 0.3);
}

.fight-card.featured {
    border-left: 4px solid #FFD966;
}

/* THUMBNAIL DEL VIDEO */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fight-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fight-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 55px;
    height: 55px;
    background: #E62424;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 0 15px rgba(230, 36, 36, 0.8);
}

.play-btn:hover {
    transform: scale(1.1);
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #FFD966;
    font-family: monospace;
}

/* INFORMACIÓN DE LA PELEA */
.fight-info {
    padding: 1rem;
}

.category-tag {
    display: inline-block;
    background: #E62424;
    color: #FFD966;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.fight-info h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    color: #fff;
}

.fight-info h4 {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #fff;
}

.fight-meta {
    display: flex;
    gap: 0.8rem;
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 0.4rem;
}

.fight-result {
    font-size: 0.75rem;
    color: #FFD966;
    font-weight: bold;
    margin-top: 0.3rem;
}

.fight-result-small {
    font-size: 0.7rem;
    color: #FFD966;
    font-weight: bold;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 950px) {
    .row-top {
        grid-template-columns: 1fr;
    }

    .row-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .row-bottom {
        grid-template-columns: 1fr;
    }

    .recorded-fights .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-btn {
        align-self: flex-start;
    }
}