@charset "utf-8";

.marquee-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* Smooth vertical scroll */
.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite; /* 🔥 faster (reduce time = faster) */
}

/* Remove spacing issues */
.marquee-content li {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

/* Seamless loop */
@keyframes scrollUp {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}