.header {
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://giwmscdn.prixacdn.net/media/albums/topbg_CUCDohGKGe.png');
    background-position: center;
    opacity: 0.1; /* Adjust this value as needed */
    z-index: 0;
}

.header .container {
    position: relative;
    z-index: 1; /* Ensures content stays on top of background */
}

.nav-link, .navbar-toggler-icon{
    color: #fff;
}

.ticker-content {
    height: 30px;
}

.ticker-track {
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
}

.ticker-paused {
    animation-play-state: paused !important;
}

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

/* Faster on smaller screens */
@media (max-width: 576px) {
    .ticker-track {
        animation-duration: 6s !important; /* Faster on mobile */
    }
}
