/* Seamless Marquee Styles */

.seamless-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.seamless-marquee-wrapper.seamless-marquee-full-width {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.seamless-marquee-container {
    background-color: #000000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.seamless-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: seamless-scroll linear infinite;
    will-change: transform;
}

.seamless-marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-right: 2em;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    flex-shrink: 0;
}

/* Default seamless scrolling animation - will be overridden by JavaScript */
@keyframes seamless-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333%, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seamless-marquee-text {
        font-size: 16px;
        padding-right: 1.5em;
    }
    
    .seamless-marquee-container {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .seamless-marquee-text {
        font-size: 14px;
        padding-right: 1.5em;
    }
    
    .seamless-marquee-container {
        padding: 10px 0;
    }
}

/* Pause animation on hover */
.seamless-marquee-container:hover .seamless-marquee-content {
    animation-play-state: paused;
}

