/* 🔹 Ticker Container */
.ticker-wrap {
    overflow: hidden;
    background-color: var(--color-purple-1);
    white-space: nowrap;
    width: 100%;
    position: relative;
}

/* 🔹 Ticker Items */
.ticker-list {
    display: flex;
    gap: 30px;
    animation: ticker-scroll 8s linear infinite;
}

/* 🔥 Hover Effect */
.ticker-item {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

/* 🔥 Hover pe Zoom + Color Change */
.ticker-item:hover {
    transform: scale(1.2);
    color: yellow;
}

/* 🔹 Animation */
@keyframes ticker-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* 🔥 Mobile Pe Speed Increase */
@media (max-width: 768px) {
    .ticker-list {
        animation-duration: 5s !important;
    }
}
