@charset "utf-8";
/* CSS Document */
   .mobile-banner-carousel {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 0px;
        background: #e9eef3;
    }
    .mobile-banner-carousel .carousel-track-container {
        overflow: hidden;
        width: 100%;
    }
    .mobile-banner-carousel .carousel-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        will-change: transform;
    }
    .mobile-banner-carousel .carousel-slide {
        flex: 0 0 100%;
        aspect-ratio: 16 / 9;
        background-size: cover;
        background-position: center;
        position: relative;
        background-color: #1e3c5c;
    }
    .mobile-banner-carousel .carousel-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.3);
        pointer-events: none;
    }
    .mobile-banner-carousel .slide-content {
        position: absolute;
        bottom: 15%;
        left: 20px;
        right: 20px;
        color: white;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        z-index: 2;
    }
    .mobile-banner-carousel .slide-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .mobile-banner-carousel .slide-desc {
        font-size: 0.85rem;
        opacity: 0.95;
    }
    .mobile-banner-carousel .carousel-dots {
        position: absolute;
        bottom: 12px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 5;
    }
    .mobile-banner-carousel .carousel-dots span {
        width: 8px;
        height: 8px;
        background-color: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
    }
    .mobile-banner-carousel .carousel-dots span.active {
        width: 20px;
        border-radius: 4px;
        background-color: #ffffff;
    }
    .mobile-banner-carousel .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background-color: rgba(0,0,0,0.3);
        backdrop-filter: blur(4px);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-banner-carousel .carousel-arrow-left { left: 12px; }
    .mobile-banner-carousel .carousel-arrow-right { right: 12px; }
    .mobile-banner-carousel .carousel-arrow:active {
        background-color: rgba(0,0,0,0.6);
    }
    @media (max-width: 550px) {
        .mobile-banner-carousel .slide-title { font-size: 1.2rem; }
        .mobile-banner-carousel .slide-desc { font-size: 0.7rem; }
        .mobile-banner-carousel .carousel-arrow { width: 30px; height: 30px; font-size: 20px; }
    }