/* ==================== NEWSBAR (Pinned Rotating Bar) ==================== */
.newsbar {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(229,183,87,0.12) 0%, rgba(229,183,87,0.06) 100%);
    border-bottom: 1px solid rgba(229,183,87,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: newsbarSlideIn 0.3s ease;
}
.newsbar-icon {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 13px;
}
.newsbar-content {
    flex: 1 1 auto;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    overflow: hidden;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 480ms cubic-bezier(0.22, 1, 0.36, 1), transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.newsbar-content a { color: var(--gold); text-decoration: underline; }
.newsbar-content.is-switching {
    opacity: 0;
    transform: translateY(-4px);
}
.newsbar-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.newsbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--quiet);
    cursor: pointer;
    transition: var(--transition);
}
.newsbar-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}
@keyframes newsbarSlideIn {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}
.scrolled ~ .newsbar, .header.scrolled + .newsbar { top: 56px; }

