/* آیکون Play برای ویدیوها در گالری */
.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* کلیک از رویش رد شود */
    z-index: 10;
}
.video-indicator svg {
    fill: white;
    width: 24px;
    height: 24px;
    margin-right: -2px;
}


/*  top-slider  */
/* وقتی کلاس playing به کانتینر اضافه شود، دکمه پلی مخفی می‌شود */
.playing .play-btn-overlay {
    display: none !important;
}

/* انیمیشن محو شدن */
.fade-anim {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}