 .carousel-container {
            position: relative;
            width: 100vw;
            max-width: 1500px;
            height: 90vh;
            min-height: 800px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Arial', sans-serif;
            justify-self: center;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: 600%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            position: relative;
            flex: 0 0 20%;
            height: 100%;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 8s ease-out;
        }

        .slide-active .slide-image {
            transform: scale(1);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .slide-active .slide-overlay {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
            color: white;
            transform: translateY(100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-active .slide-content {
            transform: translateY(0);
        }

        .slide-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease 0.2s;
        }

        .slide-active .slide-title {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-description {
            font-size: 1.1rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease 0.4s;
            line-height: 1.6;
        }

        .slide-active .slide-description {
            opacity: 1;
            transform: translateX(0);
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .carousel-controls:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .indicator::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            transition: left 4s linear;
        }

        .indicator.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        .indicator.active::before {
            left: 0;
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 4s linear;
            z-index: 10;
        }

        .progress-bar.active {
            transform: scaleX(1);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 5;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
            50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-container {
                width: 95vw;
                height: 60vh;
                min-height: 300px;
            }

            .slide-content {
                padding: 1.5rem;
            }

            .slide-title {
                font-size: 1.8rem;
            }

            .slide-description {
                font-size: 1rem;
            }

            .carousel-controls {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                height: 50vh;
                min-height: 250px;
            }

            .slide-content {
                padding: 1rem;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .slide-description {
                font-size: 0.9rem;
            }

            .carousel-controls {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .carousel-indicators {
                gap: 10px;
            }
        }

        @media (min-width: 1400px) {
            .carousel-container {
                max-width: 1400px;
                height: 80vh;
            }

            .slide-title {
                font-size: 3rem;
            }

            .slide-description {
                font-size: 1.3rem;
            }
        }