/**
 * Marquee Animation Styles
 * Smooth right-to-left scrolling text
 */

.marquee-container {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-bottom: 2px solid rgba(107, 33, 168, 0.2);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 14px 0;
    display: flex;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-size: 16px;
    font-weight: 500;
    color: #6B21A8;
    padding: 0 50px;
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-content[aria-hidden="true"] {
    animation: marquee 35s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 14px;
    }
    
    .marquee-container {
        padding: 12px 0;
        gap: 30px;
    }
}

