/* Digital Marquee Styles */

.rrr-marquee-section-5d3d0673 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 22px 0;
    box-sizing: border-box;
}

.rrr-marquee-wrapper-5d3d0673 {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.rrr-marquee-track-5d3d0673 {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 18px;
    animation: rrrMarqueeMove-5d3d0673 32s linear infinite;
}

.rrr-marquee-section-5d3d0673.pause-on-hover:hover .rrr-marquee-track-5d3d0673 {
    animation-play-state: paused;
}

.rrr-marquee-item-5d3d0673,
.rrr-marquee-sep-5d3d0673 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Pills (Boxes) */
.rrr-pill-5d3d0673 {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.rrr-marquee-section-5d3d0673.has-hover-animation .rrr-pill-5d3d0673:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Separators */
.rrr-dot-5d3d0673 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    opacity: 0.8;
}

/* Default Colors (overridden by Elementor controls) */
.dot-a { background: #C9FF5C; }
.dot-b { background: #9B7BFF; }

/* Marquee animation */
@keyframes rrrMarqueeMove-5d3d0673 {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .rrr-marquee-track-5d3d0673 { animation: none; }
}