/* Modern Premium Design for News Feed and Info List */

.ne-news-feed-ticker {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    margin-top: 5px; 
    position: relative;
    z-index: 100 !important;
}

/* Ensure header is always on top */
#header-three, .header-three, .main-menu-area, #sticker, .header-menu-fixed {
    z-index: 2000 !important;
}

/* Push content down to avoid covering fixed header */
#wrapper {
    padding-top: 180px !important; /* Ensure header doesn't cover ticker */
}

@media only screen and (max-width: 991px) {
    #wrapper {
        padding-top: 100px !important; /* Mobile header height */
    }
}

/* Force transparency on ALL legacy ticker elements */
.ticker, 
.ticker-content, 
.ticker-wrapper, 
.has-js.ticker-wrapper,
.ticker-swipe,
.ticker-reveal {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.feeding-text-dark {
    background: transparent !important;
}

.ne-news-feed-ticker .topic-box {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: #fff !important;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    z-index: 101 !important;
}

.ne-news-feed-ticker .topic-box:before {
    display: none !important;
}

.ne-news-feed-ticker .topic-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine-effect 3s infinite;
    z-index: 1;
}

@keyframes shine-effect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.feeding-text-dark {
    background: transparent !important;
}

.feeding-text-dark .ticker, 
.feeding-text-dark .ticker-content, 
.feeding-text-dark .ticker-wrapper.has-js {
    background: transparent !important;
}

.feeding-text-dark .ticker-content a {
    color: #e0e0e0 !important;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.feeding-text-dark .ticker-content a:hover {
    color: #e53935 !important;
}

/* Info List Styling */
.news-info-list-container {
    background: #0a0a0a;
    padding: 12px 0;
    border-bottom: 2px solid #e53935;
}

.news-info-list {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.news-info-list li {
    color: #999 !important;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.news-info-list li:hover {
    color: #fff !important;
}

.news-info-list li i {
    color: #e53935 !important;
    margin-right: 10px !important;
    font-size: 15px !important;
    opacity: 0.9;
}

.news-info-list li::after {
    content: '|';
    margin-left: 30px;
    color: rgba(255, 255, 255, 0.1);
}

.news-info-list li:last-child::after {
    display: none;
}

@media only screen and (max-width: 767px) {
    .news-info-list {
        gap: 15px;
    }
    .news-info-list li::after {
        display: none;
    }
}
