	           

            .subtitle {
                font-size: 1.2rem;
                opacity: 0.9;
                max-width: 700px;
                margin: 0 auto;
            }

            .slideshow-container {
                position: relative;
                width: 100%;
                max-width: 1200px;
                height: 600px;
                overflow: hidden;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
                margin-bottom: 30px;
            }

            .slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
                display: flex;
                align-items: center;
                justify-content: center;
                transform: scale(1.05);
            }

            .slide.active {
                opacity: 1;
                transform: scale(1);
            }

            .slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            .slide-content {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
                padding: 30px 20px 20px;
                text-align: center;
            }

            .slide-title {
                font-size: 2rem;
                margin-bottom: 10px;
                font-weight: 600;
            }

            .slide-description {
                font-size: 1.1rem;
                max-width: 700px;
                margin: 0 auto;
                opacity: 0.9;
            }

            .controls {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-bottom: 30px;
            }

            .btn {
                background: linear-gradient(45deg, #ff7e5f, #feb47b);
                border: none;
                color: white;
                padding: 12px 25px;
                font-size: 1rem;
                border-radius: 50px;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }

            .btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            }

            .btn:active {
                transform: translateY(1px);
            }

            .btn i {
                font-size: 1.2rem;
            }

            .indicators {
                display: flex;
                justify-content: center;
                gap: 12px;
                margin-bottom: 30px;
            }

            .indicator {
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .indicator.active {
                background: #ff7e5f;
                transform: scale(1.3);
            }

            .progress-container {
                width: 100%;
                max-width: 1200px;
                height: 6px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 3px;
                overflow: hidden;
                margin-bottom: 30px;
            }

            .progress-bar {
                height: 100%;
                width: 0%;
                background: linear-gradient(to right, #ff7e5f, #feb47b);
                transition: width 0.5s linear;
            }

            .settings {
                display: flex;
                gap: 20px;
                margin-top: 10px;
                background: rgba(255, 255, 255, 0.1);
                padding: 20px;
                border-radius: 15px;
                width: 100%;
                max-width: 1200px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .setting-group {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }

            .setting-label {
                font-size: 0.9rem;
                opacity: 0.8;
            }

            .setting-value {
                font-weight: bold;
                font-size: 1.1rem;
            }

            .speed-control {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .speed-control button {
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                cursor: pointer;
                font-weight: bold;
                font-size: 1.2rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .speed-control button:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            .transition-select {
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                padding: 8px 15px;
                border-radius: 20px;
                cursor: pointer;
            }

            .transition-select:focus {
                outline: none;
            }

            .transition-select option {
                background: #1a2a6c;
            }

            .fullscreen-btn {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(0, 0, 0, 0.5);
                color: white;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10;
                transition: all 0.3s ease;
            }

            .fullscreen-btn:hover {
                background: rgba(0, 0, 0, 0.7);
                transform: scale(1.1);
            }

            .counter {
                position: absolute;
                top: 20px;
                left: 20px;
                background: rgba(0, 0, 0, 0.5);
                padding: 8px 15px;
                border-radius: 20px;
                font-size: 0.9rem;
                z-index: 10;
            }

            @media (max-width: 768px) {
                .slideshow-container {
                    height: 400px;
                }

                h1 {
                    font-size: 2.2rem;
                }

                .slide-title {
                    font-size: 1.5rem;
                }

                .slide-description {
                    font-size: 0.9rem;
                }

                .controls {
                    flex-wrap: wrap;
                }
            }

            @media (max-width: 480px) {
                .slideshow-container {
                    height: 300px;
                }

                h1 {
                    font-size: 1.8rem;
                }
            }