.screenshot-slider {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 80px;
        }

        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 600px; /* Desktop width */
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.5s ease, filter 0.5s ease;
            /* Applying blur by default to all slides */
            filter: blur(4px) brightness(0.5);
            transform: scale(0.9);
            cursor: pointer;
        }
        
        .swiper-slide-active {
            filter: blur(0px) brightness(1);
            transform: scale(1);
            z-index: 10;
        }

        /* Text Animation Styles */
        .slide-content-overlay {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            transition-delay: 0.2s;
        }

        .swiper-slide-active .slide-content-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-desc {
            transition-delay: 0.35s;
        }

        /* Responsive sizing */
        @media (max-width: 768px) {
            .swiper-slide {
                width: 85vw;
                height: 250px;
            }
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .swiper-pagination-bullet {
            background: #7F00FF;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background: #7F00FF;
            opacity: 1;
            box-shadow: 0 0 10px #7F00FF;
        }

        /* Lightbox Styles */
        #lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
            z-index: 100;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            padding: 20px;
        }
        
        #lightbox-overlay.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        #lightbox-content {
            cursor: default;
            max-width: 1000px;
            width: 100%;
            position: relative;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
		
		