/* Content Ticker Styles */

.content-ticker {
    background: #0a0f51;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #f9c74f;
    border-bottom: 2px solid #f9c74f;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 30s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.ticker-separator {
    color: #f9c74f;
    margin: 0 40px;
    font-weight: bold;
}

.ticker-badge {
    background: #ff8c42;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Animation Control */
.no-animations .ticker-content {
    animation: none !important;
}