.marquee-text-wrap {
    overflow: hidden;
    position: relative;
    background: #f0f2f5;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

.marquee-text-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee-text-animation 40s linear infinite; /* 👈 CHẬM HƠN */
}

.marquee-text-wrap:hover .marquee-text-content {
    animation-play-state: paused;
}

.marquee-text-text {
    display: inline-block;
    padding: 0 2rem;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

/* Nem'G Style */
.marquee-text-highlight {
    color: #fff;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Animation */
@keyframes marquee-text-animation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}