.isw-stories {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 10px 0;
}
.isw-story {
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(20deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    padding: 3px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.isw-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    background-color: white;
}
.isw-story:hover {
    transform: rotate(15deg);
}
@media (max-width: 768px) {
    .isw-story {
        width: calc((100% - 4.5 * 10px) / 5);
    }
}
@media (min-width: 769px) {
    .isw-story {
        width: calc((100% - 11.5 * 10px) / 12);
    }
}
.isw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.isw-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}
.isw-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#isw-player {
    max-height: 95vh;
    height: 90vh;
    border-radius: 10px;
}
