/* Banner Swiper Navigation Styles */

/* Navigation arrows */
._banner-container_wus92_39 .swiper-button-next,
._banner-container_wus92_39 .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

._banner-container_wus92_39:hover .swiper-button-next,
._banner-container_wus92_39:hover .swiper-button-prev {
    opacity: 1;
}

._banner-container_wus92_39 .swiper-button-next:hover,
._banner-container_wus92_39 .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

._banner-container_wus92_39 .swiper-button-next {
    right: 20px;
}

._banner-container_wus92_39 .swiper-button-prev {
    left: 20px;
}

._banner-container_wus92_39 .swiper-button-next::after,
._banner-container_wus92_39 .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination bullets */
._banner-container_wus92_39 .swiper-pagination {
    bottom: 10px !important;
}

._banner-container_wus92_39 .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

._banner-container_wus92_39 .swiper-pagination-bullet-active {
    background: white;
    border-radius: 35% !important;
}

/* Banner container hover effects */
._banner-container_wus92_39 {
    position: relative;
    overflow: hidden;
}

._banner-container_wus92_39:hover {
    cursor: default;
}

/* Ensure banner images are responsive */
._banner-item_1b3vb_40 {
    width: 100%;
    height: auto;
}

._banner-item_1b3vb_40 ._bg-img_1b3vb_46 {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    ._banner-container_wus92_39 .swiper-button-next,
    ._banner-container_wus92_39 .swiper-button-prev {
        width: 30px;
        height: 30px;
        opacity: 0.7;
    }

    ._banner-container_wus92_39 .swiper-button-next::after,
    ._banner-container_wus92_39 .swiper-button-prev::after {
        font-size: 14px;
    }

    ._banner-item_1b3vb_40 ._bg-img_1b3vb_46 {
        height: 200px; /* Smaller height on mobile */
    }
}

/* Winner Carousel Styles */
._winner-card_1gsp0_49 .swiper {
    overflow: hidden; /* Changed from visible to hidden for proper carousel display */
}

._winner-card_1gsp0_49 .swiper-wrapper {
    transition-timing-function: linear !important;
}

._winner-card_1gsp0_49 .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

/* Ensure carousel items are properly sized */
._winner-card_1gsp0_49 ._list-ordinary-layout_mfjmr_42 {
    width: 1.25rem !important;
    height: 1.8rem !important;
}

/* Smooth continuous scrolling effect */
._winner-card_1gsp0_49 .swiper-free-mode .swiper-wrapper {
    transition-timing-function: linear;
}

/* Hide scrollbar but keep functionality */
._winner-card_1gsp0_49 .swiper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

._winner-card_1gsp0_49 .swiper::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

/* Enhanced smooth carousel transitions */
._carousel-list-swiper_1m3qo_46 .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transition-property: transform !important;
    will-change: transform;
}

/* Prevent jerky movements during transitions */
._carousel-list-swiper_1m3qo_46 .swiper-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Smooth continuous scrolling for carousel */
._carousel-list-swiper_1m3qo_46 {
    overflow: hidden;
}

._carousel-list-swiper_1m3qo_46 .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Ensure all slides have consistent transitions */
._carousel-list-swiper_1m3qo_46 .swiper-slide {
    transition: transform 0.3s ease-out;
}

/* Optimize performance for smooth animations */
._carousel-list-swiper_1m3qo_46 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Pure conveyor belt effect - continuous movement without pauses */
._carousel-list-swiper_1m3qo_46 .swiper-wrapper {
    animation: conveyor-belt 10s linear infinite;
    display: flex;
    align-items: center;
    width: calc(200% + 20px); /* Double width for seamless loop */
}

@keyframes conveyor-belt {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Override swiper autoplay for pure conveyor effect */
._carousel-list-swiper_1m3qo_46 {
    pointer-events: none;
    overflow: hidden;
}

/* Ensure smooth continuous scrolling */
._carousel-list-swiper_1m3qo_46 .swiper-slide {
    flex-shrink: 0;
    transition: none !important;
    width: auto !important;
}