/* ========== SECCIÓN ULTRA MODERNA ========== */
.recorded-fights-modern {
    padding: 5rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    margin-bottom: 3rem;
}

.cyber-badge {
    background: #E62424;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.glitch-text {

    font-size: 2rem;
    color: #ffffff;
    margin: 0;
}

.btn-all-cyber {
    background: transparent;
    border: 1px solid rgba(255, 217, 102, 0.3);
    color: #ffffff;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-all-cyber:hover {
    background: #FFD966;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 217, 102, 0.4);
}

/* ========== CARRUSEL VIEWPORT ========== */
.fights-viewport {
    overflow-x: auto;
    padding: 0 4% 2rem 4%;
    scrollbar-width: none;
    /* Firefox */
}

.fights-viewport::-webkit-scrollbar {
    display: none;
}

.fights-stream {
    display: flex;
    gap: 25px;
    width: max-content;
}

/* ========== TARJETA DE PELEA (FIGHT CARD) ========== */
.fight-card-modern {
    width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fight-card-modern:hover {
    transform: translateY(-10px);
    border-color: #E62424;
    background: rgba(230, 36, 36, 0.05);
}

/* Efecto Imagen */
.video-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: 0.5s;
}

.fight-card-modern:hover .video-box img {
    filter: grayscale(0%) scale(1.1);
}

/* Línea de escaneo láser */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(230, 36, 36, 0.6);
    box-shadow: 0 0 15px #E62424;
    animation: scan 3s linear infinite;
    z-index: 2;
    opacity: 0;
}

.fight-card-modern:hover .scanline {
    opacity: 1;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.play-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s;
}

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

.play-shape {
    width: 50px;
    height: 50px;
    background: #E62424;
    clip-path: polygon(25% 20%, 85% 50%, 25% 80%);
}

.timestamp {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000;
    color: #FFD966;
    font-family: monospace;
    padding: 2px 8px;
    font-size: 0.8rem;
    border: 1px solid #E62424;
}

/* Información */
.info-box {
    padding: 1.5rem;
}

.tag-outline {
    font-size: 0.65rem;
    color: #E62424;
    border: 1px solid #E62424;
    padding: 2px 8px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 12px;
}

.info-box h3 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 15px;
    height: 2.6rem;
    overflow: hidden;
}

.meta-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.result-win {
    color: #FFD966;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2rem;
    }

    .fight-card-modern {
        width: 300px;
    }
}