.pbn-bar {
    width: 100%;
    background-color: #0766FF;
    padding: 10px 36px 10px 36px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
}

.pbn-inner {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.pbn-label {
    background: #000;
    color: #fff;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: 12px;
    flex: 0 0 auto;
    border-radius: 2px;
    margin-right: 22px;
}

/* vùng text */
.pbn-items {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
}

/* tất cả item chồng lên nhau */
.pbn-item {
    text-align: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);                 /* sẵn ở dưới */
    transition:
        opacity 0.45s ease-out,
        transform 0.45s ease-out;
}

/* item đang hiển thị (đã trượt lên đúng vị trí) */
.pbn-item.pbn-active {
    opacity: 1;
    transform: translateY(0);
}

/* item chuẩn bị biến mất: trượt lên trên + mờ dần */
.pbn-item.pbn-leaving {
    opacity: 0;
    transform: translateY(-20px);
}

.pbn-item a {
    color: #fff;
    text-decoration: none;
}
