:root {
    --marquee-font: "Nunito Sans", sans-serif;
    --marquee-heading: #2d3748;
    --marquee-primary: #4f46e5;
    --marquee-primary-hover: #4338ca;
}

.marquee-pro-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 16px 0;
    font-family: var(--marquee-font);
}

.marquee-pro-container::before,
.marquee-pro-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
    pointer-events: none;
}

.marquee-pro-container::before {
    left: 0;
    background: linear-gradient(90deg, #f9fafb 0%, transparent 100%);
}

.marquee-pro-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #f9fafb 100%);
}

.marquee-pro-wrapper {
    display: flex;
    width: max-content;
}

.marquee-pro-left {
    animation: marquee-pro-left 20s linear infinite;
}

.marquee-pro-right {
    animation: marquee-pro-right 20s linear infinite;
}

.marquee-pro-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 8px;
}

.marquee-pro-item a {
    background-color: #FFF;
    box-shadow: 0 4px 12px rgba(16,30,87,0.08);
    border-radius: 50px;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: var(--marquee-font);
    color: var(--marquee-heading);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 48px;
}

.marquee-pro-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16,30,87,0.12);
    color: var(--marquee-primary);
}

.marquee-pro-icon {
    margin-right: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-pro-icon i {
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-pro-item a:hover .marquee-pro-icon {
    transform: scale(1.1);
}

.marquee-pro-text {
    font-size: 14px;
    margin-right: 8px;
}

.marquee-pro-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--marquee-primary);
    color: white;
    border-radius: 50%;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.marquee-pro-arrow svg {
    width: 10px;
    height: 10px;
}

.marquee-pro-item a:hover .marquee-pro-arrow {
    background-color: var(--marquee-primary-hover);
    transform: scale(1.1);
}

@keyframes marquee-pro-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-pro-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}