/* Official collaborator logos — normalized to solid white for the dark marquee. */
.brands-marquee {
    max-width: 860px;
    padding-block: 12px;
    direction: ltr;
}

.brands-track {
    gap: 16px;
    margin-right: auto;
    margin-left: 0;
    animation-duration: 30s;
}

.brand-logo-chip {
    box-sizing: border-box;
    width: 190px;
    height: 86px;
    padding: 14px 18px;
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(8, 15, 29, 0.98), rgba(15, 23, 42, 0.92));
    color: #fff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 30px -22px rgba(2, 6, 23, 0.9);
}

.brand-logo-chip > img,
.brand-logo-combo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(1);
}

.brand-logo-combo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    direction: rtl;
}

.brand-logo-combo .brand-logo-mark {
    width: 36px;
    flex: 0 0 36px;
}

.brand-logo-combo .brand-logo-wordmark {
    width: 108px;
}

.brand-logo-chip--zistan {
    padding-block: 8px;
}

.brand-logo-chip--zistan > img {
    max-height: 68px;
}

@keyframes brandsScroll {
    from { transform: translateX(calc(-50% - 8px)); }
    to { transform: translateX(0); }
}

@media (max-width: 480px) {
    .brands-track {
        gap: 12px;
        animation-duration: 26s;
    }

    .brand-logo-chip {
        width: 154px;
        height: 72px;
        padding: 12px 15px;
        border-radius: 17px;
    }

    .brand-logo-chip > img,
    .brand-logo-combo img {
        max-height: 44px;
    }

    .brand-logo-combo {
        gap: 6px;
    }

    .brand-logo-combo .brand-logo-mark {
        width: 30px;
        flex-basis: 30px;
    }

    .brand-logo-combo .brand-logo-wordmark {
        width: 91px;
    }

    .brand-logo-chip--zistan {
        padding-block: 7px;
    }

    .brand-logo-chip--zistan > img {
        max-height: 58px;
    }

    @keyframes brandsScroll {
        from { transform: translateX(calc(-50% - 6px)); }
        to { transform: translateX(0); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation-play-state: paused;
    }
}
