        .slider-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); */
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 10px;
        }
         .slider {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 1050px;
        }
        .slide {
            flex: 0 0 100%;

            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
            border-radius: 12px;
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 80%;
        }
        
        .slide h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .slide p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.95;
        }
        






       .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(221, 221, 221, 0.7);
            backdrop-filter: blur(5px);
            border: none;
            color: rgb(84, 84, 84);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }



       .dots-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            gap: 12px;
        }
        
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #3a86ff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: #ff7e5f;
            transform: scale(1.2);
        }
        
        .dot:hover {
            background-color: rgba(255, 255, 255, 0.7);
        }
        
        .instructions {
            text-align: center;
            color: white;
            margin-top: 30px;
            max-width: 800px;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 15px;
        }
        
        .instructions h3 {
            margin-bottom: 15px;
            color: #ffecd2;
        }
        
        .instructions p {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .keyboard-hint {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 5px 10px;
            border-radius: 6px;
            margin: 0 5px;
            font-family: monospace;
        }







               @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .slider {
                height: 350px;
            }
            
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .slider {
                height: 300px;
            }
            
            .slide h2 {
                font-size: 1.5rem;
            }
            
            .slide p {
                font-size: 0.9rem;
            }
            
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
        }
        
        .slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb');
        }
        
        .slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1439066615861-d1af74d74000');
        }
        
        .slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1475924156734-496f6cac6ec1');
        }
        
        .slide:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07');
        }
        
        .slide:nth-child(5) {
            background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b');
        }
        