/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    position: relative;
    z-index: 1001;
    overflow: hidden;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Moving multicolor gradient background */
.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #6366f1,
        #ec4899,
        #f59e0b,
        #10b981,
        #3b82f6,
        #a855f7,
        #ef4444,
        #6366f1,
        #ec4899,
        #f59e0b
    );
    background-size: 200% 100%;
    animation: annGradient 6s linear infinite;
    z-index: -1;
}

@keyframes annGradient {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(33.33%); }
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.ann-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #fff;
    opacity: 0.9;
}

.ann-text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.ann-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.20);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.40);
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ann-link svg {
    width: 12px;
    height: 12px;
}

.ann-link:hover {
    background: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .announcement-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .ann-text { font-size: 11px; }
}