
/* SECTION */
.fight-history {
    position: relative;
    padding: 100px 20px;
    text-align: center;
}

/* BACKGROUND IMAGE */
.fight-history::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('your-image.jpg') center/cover no-repeat;
    opacity: 0.25;
    filter: blur(5px);
    z-index: 0;
}

/* TITLE */
.fight-history h2 {
    font-size: 48px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
    z-index: 2;
}

/* CENTER LINE */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
    box-sizing: border-box;
}

/* LEFT */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* RIGHT */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* DOT */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 35px;
    width: 16px;
    height: 16px;
    background: #000;
    border: 3px solid #fff;
    border-radius: 50%;
}

/* DOT ALIGN */
.timeline-item.left::before {
    right: -8px;
}
.timeline-item.right::before {
    left: -8px;
}

/* TEXT */
.timeline-item p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
}

/* RECORD */
.record {
    margin-top: 80px;
    font-size: 32px;
    letter-spacing: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 22px;
    }
}