/* Common Page and Header Styles */
.fighter-page {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background-color: var(--tokens-background-white-bg);
}

.fighter-page .header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 16px 40px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--tokens-background-dark-bg);
}

.fighter-page .container {
    max-width: 1888px;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    flex-grow: 1;
    display: flex;
    position: relative;
}

.fighter-page .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.fighter-page .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fighter-page .logo-link:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 4px;
}

.fighter-page .logo-content {
    position: relative;
    width: 150px;
    height: 40px;
    aspect-ratio: 3.75;
}

.fighter-page .fighter {
    position: absolute;
    left: 48px;
    width: 150px;
    height: 40px;
}

.fighter-page .g {
    position: absolute;
    width: 32.08%;
    height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 1.2;
    background-image: url(/static/v1/img/path-20-2.svg);
    background-size: 100% 100%;
}

.fighter-page .phone-header {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 24px;
}

.fighter-page .phone-header a {
    color: var(--tokens-text-light-text);
    font-family: var(--body-base-font-family);
    font-size: var(--body-base-font-size);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.fighter-page .phone-header a:hover {
    opacity: 0.8;
}

.fighter-page .phone-header a:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 4px;
}

.fighter-page .menu {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 16px;
    position: relative;
}

.fighter-page .text-button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--tokens-text-button-light-text-button-pressed);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fighter-page .text-button-link:hover, .fighter-page .button-wrapper:hover {
    opacity: 0.8;
}

.fighter-page .text-button-link:focus-visible, .fighter-page .button-wrapper:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 4px;
}

.fighter-page .button {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    color: var(--tokens-text-button-light-text-button-pressed);
    font-size: var(--body-base-font-size);
    text-align: center;
    letter-spacing: var(--body-base-letter-spacing);
    line-height: var(--body-base-line-height);
    white-space: nowrap;
    font-style: var(--body-base-font-style);
}

.fighter-page .button-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fighter-page .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    color: var(--tokens-text-button-light-text-button-default);
    font-size: var(--body-base-font-size);
    text-align: center;
    letter-spacing: var(--body-base-letter-spacing);
    line-height: var(--body-base-line-height);
    white-space: nowrap;
    font-style: var(--body-base-font-style);
}

/* Main Content */
.fighter-page main {
    width: 100%;
}

.fighter-page .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--tokens-background-white-bg);
}

.fighter-page .container-2 {
    flex-direction: column;
    max-width: 1888px;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 96px 56px;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--color-primitives-base-soft);
    border-radius: 32px;
    display: flex;
    position: relative;
}

.fighter-page .title, .fighter-page .title-3, .fighter-page .title-4 {
    max-width: 1200px;
    align-items: center;
    gap: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 auto;
}

.fighter-page .title-2 {
    max-width: 1200px;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 auto;
}

.fighter-page .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.fighter-page .p {
    align-self: stretch;
    font-family: var(--heading-xl-font-family);
    font-weight: var(--heading-xl-font-weight);
    color: var(--tokens-text-main-text);
    font-size: var(--heading-xl-font-size);
    text-align: center;
    position: relative;
    margin-top: -1.00px;
    letter-spacing: var(--heading-xl-letter-spacing);
    line-height: var(--heading-xl-line-height);
    font-style: var(--heading-xl-font-style);
}

/* Buttons */
.fighter-page .button-2, .fighter-page .button-4 {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px 11px 24px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 100px;
    cursor: pointer;
}

.fighter-page .button-2 {
    background-color: var(--tokens-primary-button-button-primary-bg-default);
    transition: background-color 0.2s ease;
}

.fighter-page .button-2:hover {
    background-color: var(--tokens-primary-button-button-primary-bg-hover);
}

.fighter-page .button-2:active {
    background-color: var(--tokens-primary-button-button-primary-bg-pressed);
}

.fighter-page .button-4 {
    background-color: var(--tokens-secondary-button-button-secondary-bg-default);
    border: 1px solid;
    border-color: var(--tokens-secondary-button-button-secondary-border-default);
    transition: border-color 0.2s ease;
}

.fighter-page .button-4:hover {
    border-color: var(--tokens-secondary-button-button-secondary-border-hover);
}

.fighter-page .button-4:active {
    border-color: var(--tokens-secondary-button-button-secondary-border-pressed);
}

.fighter-page .button-3, .fighter-page .button-5 {
    position: relative;
    width: fit-content;
    margin-top: -0.50px;
    font-family: var(--heading-md-font-family);
    font-weight: var(--heading-md-font-weight);
    font-size: var(--heading-md-font-size);
    text-align: center;
    letter-spacing: var(--heading-md-letter-spacing);
    line-height: var(--heading-md-line-height);
    white-space: nowrap;
    font-style: var(--heading-md-font-style);
}

.fighter-page .button-3 {
    color: var(--tokens-primary-button-button-primary-text-default);
}

.fighter-page .button-5 {
    color: var(--tokens-secondary-button-button-secondary-text-default);
}

/* Lists, Items, Cards */
.fighter-page .list, .fighter-page .lables {
    display: flex;
    max-width: 1200px;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fighter-page .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: var(--tokens-background-light-bg);
    border-radius: 32px;
    overflow: hidden;
    min-height: 200px;
}

.fighter-page .card, .fighter-page .card-2, .fighter-page .card-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.2s ease;
    min-height: 450px;
}

.fighter-page .card {
    background-color: var(--tokens-background-light-bg);
}

.fighter-page .card-2 {
    background-color: #e7eadf;
}

.fighter-page .card-3 {
    background-color: #d5e1d3;
}

.fighter-page .card:hover {
    transform: translateY(-4px);
}

.fighter-page .image {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background-color: var(--tokens-background-white-bg);
}

.fighter-page .icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--tokens-background-gray-bg);
    border-radius: 200px;
}

.fighter-page .frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

/* Typography */
.fighter-page .text-wrapper-2 {
    position: relative;
    align-self: stretch;
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    color: var(--tokens-text-secondary-text);
    font-size: var(--body-base-font-size);
    text-align: center;
    letter-spacing: var(--body-base-letter-spacing);
    line-height: var(--body-base-line-height);
    font-style: var(--body-base-font-style);
}

.fighter-page .text-wrapper-3 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: var(--heading-md-font-family);
    font-weight: var(--heading-md-font-weight);
    color: var(--tokens-text-main-text);
    font-size: var(--heading-md-font-size);
    letter-spacing: var(--heading-md-letter-spacing);
    line-height: var(--heading-md-line-height);
    font-style: var(--heading-md-font-style);
}

.fighter-page .text-wrapper-4 {
    position: relative;
    align-self: stretch;
    font-family: var(--body-base-light-font-family);
    font-weight: var(--body-base-light-font-weight);
    color: var(--tokens-text-secondary-text);
    font-size: var(--body-base-light-font-size);
    letter-spacing: var(--body-base-light-letter-spacing);
    line-height: var(--body-base-light-line-height);
    font-style: var(--body-base-light-font-style);
}

.fighter-page .text-wrapper-5 {
    position: relative;
    font-family: var(--heading-xl-font-family);
    font-weight: var(--heading-xl-font-weight);
    color: var(--tokens-text-light-text);
    font-size: var(--heading-xl-font-size);
    line-height: normal;
}

.fighter-page .text-wrapper-6 {
    position: relative;
    font-family: var(--heading-md-font-family);
    font-weight: var(--heading-md-font-weight);
    color: var(--tokens-text-light-text);
    font-size: var(--heading-md-font-size);
    text-align: center;
    background-color: var(--tokens-background-dark-bg);
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
}

.fighter-page .text-wrapper-7 {
    position: relative;
    font-family: var(--heading-xl-font-family);
    font-weight: 500;
    color: var(--tokens-text-main-text);
    font-size: 32px;
    line-height: normal;
    text-align: left;
}

.fighter-page .text-wrapper-8 {
    position: relative;
    font-family: var(--heading-xl-font-family);
    font-weight: 500;
    color: var(--tokens-text-light-text);
    font-size: 32px;
    line-height: normal;
    text-align: center;
}

.fighter-page .text-wrapper-9 {
    position: relative;
    font-family: var(--body-base-font-family);
    font-weight: 400;
    color: var(--tokens-text-light-text);
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.fighter-page .text-wrapper-10 {
    position: relative;
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    color: var(--tokens-text-light-text);
    font-size: var(--body-base-font-size);
}

.fighter-page .text-wrapper-11, .fighter-page .text-wrapper-12 {
    position: relative;
    font-family: var(--heading-lg-font-family);
    font-weight: var(--heading-lg-font-weight);
}

.fighter-page .text-wrapper-footer-main {
    position: relative;
    font-family: var(--heading-lg-font-family);
    font-weight: 500;
    color: var(--tokens-text-secondary-text-on-dark-bg);
    font-size: 24px;
    line-height: 36px;
}

.fighter-page .text-wrapper-menu-title, .fighter-page .text-wrapper-copyright {
    position: relative;
    font-family: var(--body-base-light-font-family);
    font-weight: var(--body-base-light-font-weight);
    color: var(--tokens-text-secondary-text-on-dark-bg);
}

/* Container Wrappers */
.fighter-page .container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--tokens-background-white-bg);
}

.fighter-page .div-wrapper {
    flex-direction: column;
    max-width: 1888px;
    align-items: flex-end;
    gap: 56px;
    padding: 56px;
    width: 100%;
    height: 496px;
    border-radius: 32px;
    display: flex;
    position: relative;
}

.fighter-page .container-3, .fighter-page .container-4 {
    flex-direction: column;
    max-width: 1888px;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 96px 56px;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 32px;
    display: flex;
    position: relative;
}

.fighter-page .container-3 {
    background-color: var(--tokens-background-white-bg);
    border: 1px solid;
    border-color: var(--tokens-border-gray);
}

.fighter-page .container-4 {
    background-color: var(--tokens-background-dark-bg);
}

/* About Section */
.fighter-page .about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0px 16px 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--tokens-background-white-bg);
}

.fighter-page .container-5 {
    max-width: 1888px;
    align-items: center;
    gap: 16px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    position: relative;
}

.fighter-page .image-2 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 500px;
    border-radius: 32px;
    border: 1px solid;
    border-color: var(--tokens-border-gray);
    background-size: cover;
    background-position: 50% 50%;
}

.fighter-page .container-6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    background-color: var(--tokens-background-accent-strong-bg);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.fighter-page .label-3 {
    background-color: var(--tokens-background-white-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 12px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 100px;
}

.fighter-page .flexcontainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.fighter-page .span {
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    color: #4f4f4f;
    font-size: var(--body-base-font-size);
}

/* Footer */
.fighter-page .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--tokens-background-dark-bg);
}

.fighter-page .container-footer {
    max-width: 1888px;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.fighter-page .container-footer-content {
    flex-direction: column;
    max-width: 500px;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    position: relative;
}

.fighter-page .logo-2 {
    display: flex;
    width: 148px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.fighter-page .fighter-2 {
    position: relative;
    width: 150px;
    height: 40px;
    left: 30px;
}

.fighter-page .g-2 {
    position: relative;
    width: 48px;
    height: 40px;
    margin-right: -5.83px;
    aspect-ratio: 1.2;
    background-image: url(/static/v1/img/path-20.svg);
    background-size: 100% 100%;
}

.fighter-page .menu-wrapper {
    align-items: flex-start;
    justify-content: flex-end;
    gap: 40px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    position: relative;
}

.fighter-page .menu-2 {
    display: flex;
    flex-direction: column;
    max-width: 200px;
    align-items: flex-start;
    flex: 1;
    flex-grow: 1;
    gap: 16px;
    position: relative;
}

.fighter-page .divider {
    position: relative;
    max-width: 1888px;
    width: 1360px;
    height: 1px;
    background: var(--tokens-border-dark);
}

.fighter-page .additional-text {
    display: flex;
    max-width: 1888px;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

/* Utility Classes */
.fighter-page .img, .fighter-page .img-2 {
    position: relative;
    width: 24px;
    height: 24px;
}

.fighter-page .img path {
    fill: white;
}

.fighter-page .logos-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.fighter-page .logo-img {
    max-width: 560px;
    flex: 1;
    height: auto;
}

.fighter-page .logos-divider {
    width: 1px;
    height: 80px;
    background: var(--tokens-border-dark);
}

.fighter-page .lables {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    width: 100%;
}

.fighter-page .label, .fighter-page .label-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 12px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 100px;
}

.fighter-page .label {
    background-color: var(--tokens-background-dark-bg);
}

.fighter-page .label-2 {
    background-color: var(--tokens-background-dark-bg-2);
}

.fighter-page .div-2 {
    color: var(--tokens-text-secondary-text);
    position: relative;
    align-self: stretch;
    font-family: var(--body-base-font-family);
    font-weight: var(--body-base-font-weight);
    font-size: var(--body-base-font-size);
    letter-spacing: var(--body-base-letter-spacing);
    line-height: var(--body-base-line-height);
    font-style: var(--body-base-font-style);
}

/* Equipment Page Specific */
.equipment .container-2 {
    padding: 96px 56px;
}

.equipment .item {
    max-width: 1200px;
}

.equipment .image {
    height: 240px;
}

/* About Us Page Specific */
.about-us .grid {
    display: flex;
    max-width: 1200px;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

.about-us .item-2, .about-us .item-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: var(--tokens-background-light-bg);
    border-radius: 32px;
    overflow: hidden;
}

.about-us .frame-2, .about-us .frame-3, .about-us .frame-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.about-us .img-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--tokens-background-white-bg);
    border-radius: 200px;
}

.about-us .element {
    position: relative;
    align-self: stretch;
    font-family: var(--heading-lg-font-family);
    font-weight: var(--heading-lg-font-weight);
    color: var(--tokens-text-light-text);
    font-size: var(--heading-lg-font-size);
}

.about-us .logo-FIGHTER {
    position: relative;
    width: 218.09px;
    height: 65px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header */
    .fighter-page .header {
        padding: 12px 16px;
        gap: 16px;
    }

    .fighter-page .container {
        gap: 12px;
    }

    .fighter-page .logo-content {
        width: 100px;
        height: 28px;
    }

    .fighter-page .fighter {
        width: 100px;
        height: 28px;
        left: 32px;
    }

    .fighter-page .menu {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .fighter-page .text-wrapper,
    .fighter-page .button {
        font-size: 12px;
        white-space: nowrap;
    }

    .fighter-page .button-wrapper,
    .fighter-page .text-button-link {
        padding: 4px 6px;
    }

    /* Main Content */
    .fighter-page main {
        width: 100%;
    }

    .fighter-page .container-wrapper {
        padding: 0 12px 12px;
        gap: 16px;
    }

    /* Footer */
    .fighter-page .footer {
        padding: 32px 20px;
        gap: 32px;
    }

    .fighter-page .container-footer {
        flex-direction: column;
        gap: 32px;
    }

    .fighter-page .container-footer-content {
        max-width: 100%;
        gap: 24px;
    }

    .fighter-page .text-wrapper-footer-main {
        font-size: 18px;
        line-height: 28px;
    }

    .fighter-page .menu-wrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .fighter-page .menu-2 {
        max-width: 100%;
        gap: 12px;
    }

    .fighter-page .divider {
        width: 100%;
    }

    /* Buttons */
    .fighter-page .button-2,
    .fighter-page .button-4 {
        padding: 10px 16px 10px 20px;
        gap: 6px;
    }

    .fighter-page .button-3,
    .fighter-page .button-5 {
        font-size: 13px;
    }

    /* Cards and Items */
    .fighter-page .item {
        padding: 20px;
        gap: 12px;
        min-height: auto;
    }

    .fighter-page .card,
    .fighter-page .card-2,
    .fighter-page .card-3 {
        padding: 12px;
        gap: 12px;
        min-height: 350px;
    }

    .fighter-page .image {
        height: 200px;
    }

    /* Typography */
    .fighter-page .text-wrapper-3 {
        font-size: 16px;
        line-height: 22px;
    }

    .fighter-page .text-wrapper-4 {
        font-size: 13px;
        line-height: 20px;
    }

    /* Container Adjustments */
    .fighter-page .container-2 {
        padding: 48px 24px;
        gap: 32px;
    }

    .fighter-page .container-3,
    .fighter-page .container-4 {
        padding: 48px 24px;
        gap: 32px;
    }

    .fighter-page .div-wrapper {
        padding: 32px 24px;
        gap: 32px;
        height: auto;
        min-height: 300px;
    }

    /* About Section */
    .fighter-page .about {
        padding: 0 12px 12px;
    }

    .fighter-page .container-5 {
        flex-direction: column;
        gap: 12px;
    }

    .fighter-page .image-2 {
        height: 300px;
        width: 100%;
    }

    .fighter-page .container-6 {
        padding: 24px;
        gap: 12px;
    }

    /* Lists */
    .fighter-page .list {
        flex-direction: column;
        gap: 12px;
    }

    .fighter-page .lables {
        gap: 8px;
        justify-content: center;
    }

    /* Labels */
    .fighter-page .label,
    .fighter-page .label-2,
    .fighter-page .label-3 {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* Icons */
    .fighter-page .icon {
        padding: 12px;
        width: 48px;
        height: 48px;
    }

    .fighter-page .img,
    .fighter-page .img-2 {
        width: 20px;
        height: 20px;
    }

    /* Logos */
    .fighter-page .logos-container {
        flex-direction: column;
        gap: 20px;
    }

    .fighter-page .logos-divider {
        width: 60px;
        height: 1px;
    }

    .fighter-page .logo-img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .fighter-page .header {
        padding: 10px 12px;
    }

    .fighter-page .logo-content {
        width: 80px;
        height: 24px;
    }

    .fighter-page .fighter {
        width: 80px;
        height: 24px;
        left: 26px;
    }

    .fighter-page .menu {
        gap: 6px;
    }

    .fighter-page .text-wrapper,
    .fighter-page .button {
        font-size: 11px;
    }

    .fighter-page .button-wrapper,
    .fighter-page .text-button-link {
        padding: 3px 5px;
    }

    .fighter-page .footer {
        padding: 24px 16px;
    }

    .fighter-page .text-wrapper-footer-main {
        font-size: 16px;
        line-height: 24px;
    }

    .fighter-page .container-2,
    .fighter-page .container-3,
    .fighter-page .container-4 {
        padding: 32px 16px;
    }

    .fighter-page .div-wrapper {
        padding: 24px 16px;
        min-height: 250px;
    }

    .fighter-page .item {
        padding: 16px;
    }

    .fighter-page .card,
    .fighter-page .card-2,
    .fighter-page .card-3 {
        min-height: 300px;
    }

    .fighter-page .image {
        height: 180px;
    }

    .fighter-page .image-2 {
        height: 250px;
    }

    .fighter-page .container-6 {
        padding: 20px;
    }
}
