/* Hero Card Base Styles */
.ufc-hero-card .ufc-fighter-image-wrapper {
    width: 150px;
    height: 150px;
    aspect-ratio: 1/1;
}

.ufc-hero-card .ufc-vs {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.ufc-hero-card .ufc-vs::before,
.ufc-hero-card .ufc-vs::after {
    content: '';
    position: absolute;
    top: 55%;
    width: 25px;
    left: -27px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.ufc-hero-card .ufc-vs::after {
    left: 100%;
    /* margin-left: 20px; */
}

/* Hero Card Responsive Styles */
@media (max-width: 768px) {
    .ufc-hero-card {
        padding: 20px !important;
        margin: 20px auto !important;
    }

    .ufc-hero-card .ufc-prediction-header {
        margin-bottom: 20px !important;
    }

    .ufc-hero-card .ufc-fighter-matchup {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .ufc-hero-card .ufc-fighter-image {
        width: 90px !important;
        height: 90px !important;
        border-width: 3px !important;
    }

    .ufc-hero-card .ufc-fighter-image-wrapper {
        margin-bottom: 35px !important;
        width: 90px;
        height: 90px;
    }

    .ufc-hero-card .ufc-fighter-name {
        font-size: 18px !important;
    }

    .ufc-hero-card .ufc-vs {
        font-size: 32px !important;
    }

    .ufc-hero-card .ufc-fighter-record {
        font-size: 12px !important;
        margin-top: 4px !important;
    }

    .ufc-hero-card .ufc-probability-bars {
        margin: 20px 0 !important;
        padding: 15px !important;
    }

    /* Tale of the Tape Responsive */
    .ufc-tale-tape {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }

    .ufc-tale-tape h4 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .ufc-tale-tape div {
        font-size: 14px !important;
    }

    .ufc-tale-tape div:nth-child(3n+2) {
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .ufc-hero-card .ufc-fighter-image {
        width: 70px !important;
        height: 70px !important;
    }

    .ufc-hero-card .ufc-fighter-image-wrapper {
        width: 70px;
        height: 70px;
    }

    .ufc-hero-card .ufc-fighter-name {
        font-size: 14px !important;
    }

    .ufc-hero-card .ufc-vs {
        font-size: 24px !important;
    }

    .ufc-tale-tape div {
        font-size: 13px !important;
    }

    .ufc-hero-card .ufc-event-info {
        font-size: 24px !important;
    }
}