/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #2563eb 0%, #06b6d4 50%, #3b82f6 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.announcement-bar a {
    margin-left: 12px;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    transition: background 0.3s;
}

.announcement-bar a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Adjust Header for Bar */
.glass-header {
    top: 56px;
    /* 36px bar + 20px buffer */
}

.glass-header.scrolled {
    top: 48px;
    /* Tucks right under */
}