 .slider-container {
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        z-index: 5;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: appear 1s ease-out;
    }

    @keyframes appear {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .slider {
        position: relative;
        height: 450px;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 1;
        transition: opacity 0.5s ease;
        overflow: hidden;
        pointer-events: none;
    }

    .slide.active {
        opacity: 1;
        z-index: 2;
        pointer-events: auto;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease-in-out;
    }

    .slide.active img {
        transform: scale(1.1);
    }



    .navigation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 20;
        pointer-events: none;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.7);
        color: #333;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        pointer-events: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 30;
    }

    .nav-btn.prev {
        left: 20px;
    }

    .nav-btn.next {
        right: 20px;
    }

    .nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .dots-container {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 20px;
        width: 100%;
        z-index: 10;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background-color: white;
        transform: scale(1.2);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideInRight {
        from {
            transform: translateX(50px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideInLeft {
        from {
            transform: translateX(-50px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes zoomIn {
        from {
            transform: scale(1.2);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes slideInUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .transition-fade .slide-content {
        animation: fadeIn 1s forwards;
    }

    .transition-slideRight .slide-content {
        animation: slideInRight 1s forwards;
    }

    .transition-slideLeft .slide-content {
        animation: slideInLeft 1s forwards;
    }

    .transition-zoom .slide-content {
        animation: zoomIn 1s forwards;
    }

    .transition-slideUp .slide-content {
        animation: slideInUp 1s forwards;
    }
