
/* Stories Styles */
.stories-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.stories-scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.story-ring {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    transition: transform 0.2s;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-ring.viewed {
    background: #dee2e6; /* Gray for viewed stories */
}
.story-item:hover .story-ring {
    transform: scale(1.05);
}
.story-thumb {
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    object-fit: cover;
}
.cursor-pointer {
    cursor: pointer;
}

/* Feature Box Styles */
.feature-box {
    transition: all 0.2s ease;
    cursor: default;
}
.feature-box:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}
.bg-light-hover:hover {
    background-color: #f8f9fa;
}
.transition-all {
    transition: all 0.3s ease;
}

/* Story Viewer Modal */
.story-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
}
.story-full-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@media (min-width: 768px) {
    .story-viewer-content {
        max-width: 450px; /* Mobile size on desktop */
        margin: 0 auto;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
    }
}
.story-progress-container .progress {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}
.nav-area-left, .nav-area-right {
    cursor: pointer;
}

/* Story Slider & Fade Effects */
.stories-container {
    position: relative;
    overflow: hidden;
}

/* Blur & Shadow Fade Effects */
.story-fade-left,
.story-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.story-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}

.story-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}

.storySwiper {
    padding: 10px 0;
}

.custom-swiper-button {
    color: #666 !important;
    background: transparent !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 0;
    box-shadow: none !important;
    transition: all 0.2s ease;
    z-index: 20;
}

.custom-swiper-button:hover {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    transform: scale(1.2);
}

.custom-swiper-button:after {
    font-size: 18px !important;
    font-weight: 900;
}

.custom-swiper-button.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
