/* Container to hide overflow */
.marquee {
position: relative;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
background: #fefefe;
color: #333;
padding: 10px 0;
font-size: 16px;
}

/* Inner content that scrolls */
.marquee-content {
display: inline-block;
padding-left: 100%; /* Start off-screen */
animation: marquee 85s linear infinite;
}

/* Duplicate text for seamless loop */
.marquee-content span {
padding-right: 2rem; /* Gap between repeats */
}

.marquee-content:hover {
animation-play-state: paused; /* Stops movement on hover */
}

@keyframes marquee {
0%   { transform: translateX(0); }
100% { transform: translateX(-100%); }
}