.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-inner {
    display: flex;
    animation: marquee-animation 100s linear infinite; 
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 3.5px; 
}

.marquee-item img {
    height: 212px; 
    object-fit: cover;
}

@keyframes marquee-animation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); 
    }
}


/* ==== STYLE 2: Fade đổi ảnh liên tục ==== */

.t888-fade-gallery.t888-fade-gallery--style2 {
    position: relative;
    width: 100%;
    /* Đảm bảo có kích thước tối thiểu */
    height: 662px;
    min-height: 300px;
    width: 900px;
    min-width: 300px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    background: #000; /* để lúc chưa load ảnh không bị nền trắng */
}

.t888-fade-gallery--style2 .t888-fade-gallery__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation-name: t888-fade-gallery-fade;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.t888-fade-gallery--style2 .t888-fade-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1 vòng fade: vào – đứng yên – mờ dần – tắt */
@keyframes t888-fade-gallery-fade {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.02); /* nhẹ nhẹ kiểu cinematic */
    }
    25% {
        opacity: 1;
        transform: scale(1.04);
    }
    35% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}
@media (max-width: 575px) {
    .t888-fade-gallery.t888-fade-gallery--style2 {
        height: 400px;
    }
}



/* ========== STORY GALLERY – STYLE 3 ========== */

.t888-story-gallery--style3 {
    max-width: 500px;
    min-height: 450px;
    margin: 0 auto;
    position: relative;
}

/* Khung story 9:16 */
.t888-story-gallery--style3 .story-inner {
    position: relative;
    height: 0;
    padding-top: 150%;          
    overflow: hidden;
    background: #000;
}

/* Thanh tiến trình nằm đè trên ảnh, chia theo số ảnh */
.t888-story-gallery--style3 .story-progress {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 3px;
    display: flex;
    gap: 4px;
    z-index: 5;
    pointer-events: none;       /* không cản click next/prev */
}

.t888-story-gallery--style3 .story-progress-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
}

.t888-story-gallery--style3 .story-progress-bar {
    --story-duration: 5000ms;
    width: 0;
    height: 100%;
    background: #ffffff;
    transform-origin: left center;
}

/* Đã xem xong */
.t888-story-gallery--style3 .story-progress-bar.is-filled {
    width: 100%;
}

/* Đang chạy */
.t888-story-gallery--style3 .story-progress-bar.is-animating {
    animation: t888StorySegment var(--story-duration) linear forwards;
}

@keyframes t888StorySegment {
    from { width: 0; }
    to   { width: 100%; }
}

/* Slide */
.t888-story-gallery--style3 .story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.t888-story-gallery--style3 .story-slide.is-active {
    opacity: 1;
    visibility: visible;
}

/* Ảnh */
.t888-story-gallery--style3 .story-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.t888-story-gallery--style3 .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption */
.t888-story-gallery--style3 .story-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* Vùng click trái/phải */
.t888-story-gallery--style3 .story-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
    z-index: 10;
}
.t888-story-gallery--style3 .story-nav-prev { left: 0; }
.t888-story-gallery--style3 .story-nav-next { right: 0; }

@media (max-width: 1600px) {
    .t888-story-gallery--style3 {
        /* max-width: 300px; */
    }
}