/* News Ticker Bar */
.news-ticker-bar {
    background: linear-gradient(90deg, #1A5276 0%, #2E86C1 100%);
    color: white;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    z-index: 999;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.news-ticker-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
}

.news-ticker-label {
    background: #C0392B;
    color: white;
    padding: 4px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    animation: pulse-label 2s infinite;
}

.news-ticker-label i {
    font-size: 0.75rem;
}

@keyframes pulse-label {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.news-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}

.news-ticker-content {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    position: absolute;
    right: 0;
}

.news-ticker-content:hover {
    animation-play-state: paused;
}

.news-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    font-size: 0.85rem;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.3s;
}

.news-ticker-item:hover {
    color: #F39C12;
}

.news-ticker-item i {
    color: #F39C12;
    font-size: 0.7rem;
}

.news-ticker-separator {
    color: rgba(255,255,255,0.3);
    margin: 0 5px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.news-ticker-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 5px;
    font-size: 0.9rem;
    transition: color 0.3s;
    flex-shrink: 0;
}

.news-ticker-close:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .news-ticker-bar {
        padding: 6px 0;
    }
    .news-ticker-label {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    .news-ticker-item {
        font-size: 0.75rem;
        padding: 0 20px;
    }
    .news-ticker-content {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .news-ticker-label span {
        display: none;
    }
    .news-ticker-label i {
        font-size: 0.9rem;
    }
}
