.top-promo {
    width: 100%;
    background: #0c0e14;
    overflow: hidden;
    position: relative;
    z-index: 1200;
}
.top-promo-row {
    display: flex;
    width: 100%;
    height: 52px;
}
.top-promo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    padding: 0 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.top-promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .3s ease;
}
.top-promo-item:hover .top-promo-bg {
    transform: scale(1.05);
}
.top-promo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.38));
    transition: background .3s ease;
}
.top-promo-item:hover .top-promo-shade {
    background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.28));
}
.top-promo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    transition: transform .3s ease;
}
.top-promo-item:hover .top-promo-inner {
    transform: scale(1.03);
}
.top-promo-item.is-partner .top-promo-shade {
    background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.24));
}
.top-promo-item.is-partner:hover .top-promo-shade {
    background: linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.14));
}
.top-promo-item.is-partner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.85), rgba(255,255,255,0));
    opacity: .55;
}
.top-promo-item.is-partner .top-promo-title {
    letter-spacing: .2px;
}
.top-promo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
.top-promo-copy {
    min-width: 0;
    text-align: left;
}
.top-promo-title {
    display: block;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0,0,0,.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-promo-sub {
    display: block;
    font-size: 11px;
    opacity: .9;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-promo-mobile {
    display: none;
}

@media (max-width: 1400px) {
    .top-promo-title { font-size: 12px; }
    .top-promo-sub { font-size: 10px; }
    .top-promo-inner { gap: 7px; }
}

@media (max-width: 1100px) {
    .top-promo-title { font-size: 11px; }
    .top-promo-sub { font-size: 9px; }
    .top-promo-icon { width: 22px; height: 22px; }
    .top-promo-item { padding: 0 8px; }
}

@media (max-width: 900px) {
    .top-promo-row {
        display: none;
    }
    .top-promo-mobile {
        display: flex;
        height: 46px;
    }
    .top-promo-mobile .top-promo-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 0 12px;
    }
    .top-promo-mobile .top-promo-icon {
        width: 24px;
        height: 24px;
    }
    .top-promo-mobile .top-promo-title {
        font-size: 12px;
    }
    .top-promo-mobile .top-promo-sub {
        font-size: 10px;
    }
}
