.mixo-stories-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    margin-bottom: -13px;
    justify-content: center;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.mixo-story {
    text-align: center;
    cursor: pointer;
    width: 70px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.mixo-story:hover {
    transform: scale(1.1);
    z-index: 2;
}

.mixo-story a {
    position: relative;
    width: 70px;
    height: 70px;
    display: block;
}

/* ✅ قاب چرخشی بنفش */
.mixo-story a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #6c5ce7,
        #8e44ad,
        #9b59b6,
        #a29bfe,
        #dcd6f7,
        #6c5ce7
    );
    animation: rotate-ring 4s linear infinite;
    z-index: 1;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

/* ✅ قاب سفید داخلی */
.mixo-story a::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);

}

/* ✅ عکس کاملاً در مرکز */
.mixo-story img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
}

/* ✅ نام استوری */
.mixo-story p {
    margin-top: 0px;
    font-size: 12px;
    color: #ffff;
    text-align: center;
}

/* موبایل */
@media (max-width: 600px) {
    .mixo-stories-slider {
        justify-content: flex-start;
    }
    .mixo-story {
        width: 70px;
    }
}

