.sabp-bar {
    /*position: fixed;*/
    top: 32px;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 99999;
    background: var(--sabp-bg, #222);
    color: var(--sabp-text, #fff);
    transform: translateY(-100%);
    animation: sabp-slide-down 0.6s ease forwards;
    transition: background-color 0.6s ease, color 0.6s ease;
}

@keyframes sabp-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
