.fighters-list-page {
    --fighters-card-cut: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #06100f;
    background-image:
        linear-gradient(135deg, rgba(3, 10, 11, 0.96), rgba(8, 19, 31, 0.9) 48%, rgba(26, 38, 24, 0.92)),
        url('../images/backgrounds/navys-camouflage-texture.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.fighters-list-page__shell,
.fighters-list-hero__inner,
.fighters-division-filter__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.fighters-list-page__shell {
    padding: 18px 0 52px;
}

.fighters-list-hero {
    min-height: 142px;
    padding: 106px 0 18px;
    border-bottom: 1px solid rgba(226, 201, 120, 0.28);
    background-image:
        linear-gradient(90deg, rgba(4, 10, 12, 0.92), rgba(8, 19, 31, 0.74) 58%, rgba(47, 59, 34, 0.42)),
        url('../images/backgrounds/navys-camouflage-texture.jpg');
    background-position: center;
    background-size: cover;
}

.fighters-list-hero__inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.fighters-list-hero__eyebrow {
    margin: 0 0 5px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.fighters-list-hero h1,
.fighters-empty-state h2,
.fighter-card__name {
    font-family: "Bebas Neue", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fighters-list-hero h1 {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(2.9rem, 4.2vw, 3.6rem);
    line-height: 0.92;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.fighters-list-hero p:not(.fighters-list-hero__eyebrow) {
    max-width: 640px;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
}

.fighters-list-hero__link,
.fighters-empty-state a,
.fighter-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 201, 120, 0.78);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.fighters-list-hero__link {
    min-width: 142px;
    min-height: 34px;
    padding: 0 12px;
    background: rgba(4, 10, 12, 0.42);
}

.fighters-list-hero__link:hover,
.fighters-list-hero__link:focus-visible,
.fighters-empty-state a:hover,
.fighters-empty-state a:focus-visible,
.fighter-card:hover .fighter-card__cta,
.fighter-card:focus-within .fighter-card__cta {
    border-color: var(--gold-light);
    background: var(--gold-light);
    color: var(--ink);
    box-shadow: 0 0 20px rgba(226, 201, 120, 0.18);
}

.fighters-division-filter {
    border-top: 1px solid rgba(226, 201, 120, 0.16);
    border-bottom: 1px solid rgba(226, 201, 120, 0.28);
    background: rgba(4, 10, 12, 0.82);
    box-shadow: inset 0 1px 0 rgba(226, 201, 120, 0.08);
}

.fighters-division-filter__list {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    min-height: 44px;
}

.fighters-division-filter__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    border-right: 1px solid rgba(226, 201, 120, 0.18);
    color: #d9dfdb;
    font-family: "Bebas Neue", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(0.88rem, 0.95vw, 1rem);
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease;
}

.fighters-division-filter__link:first-child {
    border-left: 1px solid rgba(226, 201, 120, 0.18);
}

.fighters-division-filter__link::after {
    content: '';
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 2px;
    background: var(--gold-light);
    opacity: 0;
    transform: scaleX(0.32);
    transition: opacity 160ms ease, transform 160ms ease;
}

.fighters-division-filter__link:hover,
.fighters-division-filter__link:focus-visible,
.fighters-division-filter__link.is-active {
    color: var(--gold-light);
    background: rgba(82, 99, 58, 0.18);
}

.fighters-division-filter__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.fighters-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 270px));
    justify-content: center;
    gap: 26px 20px;
}

.fighter-card-shell {
    position: relative;
    isolation: isolate;
    width: min(270px, 100%);
    overflow: visible;
    transition: transform 180ms ease, filter 180ms ease;
    transform-origin: center;
}

.fighter-card-shell:hover,
.fighter-card-shell:focus-within {
    z-index: 5;
    filter: drop-shadow(0 0 20px rgba(226, 201, 120, 0.24));
    transform: translateY(-2px) scale(1.035);
}

.fighter-card {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
    min-height: 418px;
    background: rgba(226, 201, 120, 0.7);
    clip-path: polygon(
        var(--fighters-card-cut) 0,
        calc(100% - var(--fighters-card-cut)) 0,
        100% var(--fighters-card-cut),
        100% calc(100% - var(--fighters-card-cut)),
        calc(100% - var(--fighters-card-cut)) 100%,
        var(--fighters-card-cut) 100%,
        0 calc(100% - var(--fighters-card-cut)),
        0 var(--fighters-card-cut)
    );
}

.fighter-card::before {
    content: '';
    position: absolute;
    inset: 2px;
    z-index: 0;
    background-color: rgba(4, 12, 13, 0.92);
    background-image:
        linear-gradient(145deg, rgba(8, 19, 31, 0.92), rgba(16, 32, 25, 0.8)),
        url('../images/backgrounds/navys-camouflage-texture.jpg');
    background-position: center;
    background-size: cover;
    clip-path: inherit;
}

.fighter-card__link {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100%;
    grid-template-rows: 148px 1fr 34px;
    color: inherit;
}

.fighter-card__media {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(226, 201, 120, 0.34);
}

.fighter-card__media img,
.fighter-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
        linear-gradient(180deg, rgba(4, 10, 12, 0.04), rgba(4, 10, 12, 0.68)),
        linear-gradient(135deg, rgba(82, 99, 58, 0.56), rgba(8, 19, 31, 0.94)),
        url('../images/backgrounds/navys-camouflage-texture.jpg');
    background-position: center;
    background-size: cover;
}

.fighter-card__placeholder {
    display: grid;
    place-items: center;
}

.fighter-card__placeholder span {
    color: rgba(226, 201, 120, 0.58);
    font-family: "Bebas Neue", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(2.7rem, 3.5vw, 3.7rem);
    line-height: 1;
}

.fighter-card__shimmer {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0) 38%, rgba(255, 232, 153, 0.34) 50%, rgba(255, 255, 255, 0) 62%);
    background-size: 300%;
    background-position: 100% 100%;
    clip-path: polygon(
        var(--fighters-card-cut) 0,
        calc(100% - var(--fighters-card-cut)) 0,
        100% var(--fighters-card-cut),
        100% calc(100% - var(--fighters-card-cut)),
        calc(100% - var(--fighters-card-cut)) 100%,
        var(--fighters-card-cut) 100%,
        0 calc(100% - var(--fighters-card-cut)),
        0 var(--fighters-card-cut)
    );
}

.fighter-card-shell:hover .fighter-card__shimmer,
.fighter-card-shell:focus-within .fighter-card__shimmer {
    opacity: 1;
    animation: fighterCardShimmer 1.7s ease-out;
}

@keyframes fighterCardShimmer {
    0% {
        background-position: 100% 100%;
    }

    100% {
        background-position: -50% -50%;
    }
}

.fighter-card__corner-ribbon {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 105px;
    height: 106px;
    overflow: hidden;
    pointer-events: none;
    z-index: auto;
}

.fighter-card__corner-ribbon::before,
.fighter-card__corner-ribbon::after {
    content: '';
    position: absolute;
    z-index: 1;
    display: block;
    border: 4px solid #5a3909;
}

.fighter-card__corner-ribbon::before {
    top: 1px;
    left: 1px;
    border-top-color: transparent;
    border-right-color: transparent;
}

.fighter-card__corner-ribbon::after {
    right: 1px;
    bottom: 2px;
    border-top-color: transparent;
    border-right-color: transparent;
}

.fighter-card__corner-ribbon span {
    position: absolute;
    z-index: 6;
    top: 25px;
    left: -31px;
    display: block;
    width: 168px;
    padding: 7px 0;
    background: linear-gradient(90deg, #7b5618 0%, #b88728 22%, #f1da82 48%, #c99a38 68%, #6e4710 100%);
    color: #11100b;
    font-size: 0.56rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
    transform: rotate(45deg);
    transform-origin: center;
}

.fighter-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 11px 13px 10px;
}

.fighter-card__badge {
    width: fit-content;
    margin: 0 0 6px;
    padding: 3px 6px;
    border: 1px solid rgba(226, 201, 120, 0.34);
    color: var(--gold-light);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fighter-card__name {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: clamp(1.32rem, 1.38vw, 1.52rem);
    line-height: 0.96;
}

.fighter-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    margin: auto 0 0;
}

.fighter-card__meta div {
    min-width: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(226, 201, 120, 0.16);
}

.fighter-card__meta dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.54rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fighter-card__meta dd {
    min-width: 0;
    margin: 0;
    color: var(--paper);
    font-weight: 900;
    font-size: 0.76rem;
    line-height: 1.2;
}

.fighter-card__record dd {
    color: var(--gold-light);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1.04rem;
    font-weight: 400;
    line-height: 1;
}

.fighter-card__cta {
    min-height: 32px;
    margin: 0 13px 12px;
    font-size: 0.68rem;
    border-color: rgba(226, 201, 120, 0.92);
    background: var(--gold);
    color: var(--ink);
}

.fighters-empty-state {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(226, 201, 120, 0.64);
    background-color: rgba(5, 13, 15, 0.84);
    background-image:
        linear-gradient(135deg, rgba(8, 19, 31, 0.84), rgba(15, 29, 23, 0.78)),
        url('../images/backgrounds/navys-camouflage-texture.jpg');
    background-position: center;
    background-size: cover;
    text-align: center;
}

.fighters-empty-state h2 {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(2.5rem, 7vw, 4.6rem);
    line-height: 0.9;
}

.fighters-empty-state p {
    margin: 18px auto 24px;
    max-width: 500px;
    color: var(--muted);
    line-height: 1.65;
}

.fighters-empty-state a {
    min-height: 46px;
    padding: 0 18px;
}

@media (max-width: 1120px) {
    .fighters-list-grid {
        grid-template-columns: repeat(auto-fit, minmax(252px, 270px));
    }

    .fighters-division-filter__inner {
        overflow-x: auto;
    }

    .fighters-division-filter__list {
        display: flex;
        min-width: max-content;
    }

    .fighters-division-filter__link {
        min-width: 104px;
        min-height: 44px;
    }
}

@media (max-width: 720px) {
    .fighters-list-page {
        --fighters-card-cut: 12px;
        background-attachment: scroll;
    }

    .fighters-list-page__shell,
    .fighters-list-hero__inner,
    .fighters-division-filter__inner {
        width: min(100% - 32px, 1180px);
    }

    .fighters-list-page__shell {
        padding: 18px 0 42px;
    }

    .fighters-list-hero {
        min-height: 132px;
        padding-top: 168px;
        padding-bottom: 18px;
    }

    .fighters-list-hero__inner {
        display: grid;
        align-items: start;
    }

    .fighters-list-hero h1 {
        font-size: clamp(2.1rem, 11vw, 2.65rem);
    }

    .fighters-list-hero__link {
        width: 100%;
    }

    .fighters-division-filter__inner {
        width: 100%;
    }

    .fighters-division-filter__list {
        padding: 0 16px;
    }

    .fighters-division-filter__link {
        min-width: 98px;
        min-height: 44px;
    }

    .fighters-list-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .fighter-card {
        min-height: 0;
    }

    .fighter-card-shell {
        width: min(290px, 100%);
    }

    .fighter-card__link {
        grid-template-rows: 140px auto 34px;
    }

    .fighter-card__body {
        padding: 11px 13px 10px;
    }

    .fighter-card__meta {
        grid-template-columns: 1fr;
    }

    .fighter-card__cta {
        margin: 0 13px 12px;
    }
}
