/* الشريط المتحرك الاحترافي */
.moving-strip {
    background: linear-gradient(45deg, #E9967A, #F87C63, #E9967A);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    border-bottom: 2px solid rgba(233, 150, 122, 0.3);
    position: relative;
    z-index: 100;
}

/* تأثير الخلفية المتدرجة المتحركة */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* المحتوى المتحرك */
.moving-content {
    display: inline-flex;
    align-items: center;
    animation: moveLeft 25s linear infinite;
    white-space: nowrap;
}

/* حركة النص من اليمين إلى اليسار */
@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* النص */
.strip-text {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* الصورة الفاصلة */
.strip-separator {
    width: 20px;
    height: 20px;
    margin: 0 20px;
    opacity: 0.8;
    filter: brightness(1.2);
    animation: pulse 2s ease-in-out infinite;
}

/* تأثير النبض على الفاصل */
@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* تأثير التوقف عند التمرير */
.moving-strip:hover .moving-content {
    animation-play-state: paused;
}

/* تأثير الضوء المتحرك */
.moving-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .strip-text {
        font-size: 14px;
        margin: 0 10px;
    }
    
    .strip-separator {
        width: 16px;
        height: 16px;
        margin: 0 15px;
    }
    
    .moving-content {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .moving-strip {
        padding: 8px 0;
    }
    
    .strip-text {
        font-size: 12px;
        margin: 0 8px;
    }
    
    .strip-separator {
        width: 14px;
        height: 14px;
        margin: 0 12px;
    }
}
