
/* Latest News Bar */
.latest-news-bar {
    background-color: #1b1b1b;
    overflow: hidden;
    border-bottom: 3px solid #ffcc00;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}
/* Label with gradient & icon */
.latest-news-label {
    padding: 5px 15px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border-radius: 25px;
    /*background: linear-gradient(90deg, #ffcc00, #ff9900);*/
    background: linear-gradient(90deg, #131302, #160e01);
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulseBadge 2s infinite alternate;
}

/* Badge animation */
@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* News Marquee */
.news-marquee {
    overflow: hidden;
    position: relative;
}

.news-track {
    display: inline-flex;
    animation: scrollNews 50s linear infinite;
    white-space: nowrap;
}

.news-track span {
    display: inline-block;
    margin-right: 60px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

/* Keyframes for scrolling */
@keyframes scrollNews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.news-marquee:hover .news-track {
    animation-play-state: paused;
}
/* Responsive */
@media (max-width: 768px) {
    .latest-news-bar {
        font-size: 12px;
    }
    .latest-news-label {
        font-size: 12px;
        padding: 4px 12px;
    }
    .news-track span {
        font-size: 12px;
        margin-right: 40px;
    }
}
