#bobadams-animated-bar{
    width:100%;
    background:linear-gradient(90deg,#0f172a 0%,#1e293b 50%,#0f172a 100%);
    color:#fff;
    overflow:hidden;
    border-bottom:2px solid rgba(255,255,255,.08);
    box-shadow:0 2px 14px rgba(0,0,0,.15);
    position:relative;
    z-index:9999;
}
#bobadams-animated-bar .bar-wrap{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:20px;
    min-height:58px;
    padding:0 18px;
}
#bobadams-animated-bar .brand{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
    font-weight:800;
    letter-spacing:.08em;
    font-size:13px;
    white-space:nowrap;
}
#bobadams-animated-bar .brand-badge{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:linear-gradient(135deg,#f59e0b,#fbbf24);
    color:#111827;
    font-weight:900;
    font-size:15px;
}
#bobadams-animated-bar .ticker{
    overflow:hidden;
    flex:1 1 auto;
    position:relative;
    white-space:nowrap;
}
#bobadams-animated-bar .ticker-track{
    display:inline-flex;
    align-items:center;
    gap:34px;
    white-space:nowrap;
    animation:bobadamsTicker 24s linear infinite;
    font-size:14px;
}
#bobadams-animated-bar .item{
    color:#e5e7eb;
    font-weight:500;
}
#bobadams-animated-bar .dot{
    color:#f59e0b;
    font-weight:900;
}
@keyframes bobadamsTicker{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}
@media (max-width:768px){
    #bobadams-animated-bar .brand{
        display:none;
    }
    #bobadams-animated-bar .bar-wrap{
        min-height:48px;
        padding:0 12px;
    }
    #bobadams-animated-bar .ticker-track{
        font-size:12px;
        gap:20px;
    }
}
