    
        /* Slider Container Styles */
        .slider-container {
            position: relative;
            width: 100%;
            margin: 30px 0;
            background: #111;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        .slides-wrapper {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
            pointer-events: none;
        }
        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: zoom-in;
            position: relative;
            z-index: 2;
        }
        .zoom-hint {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            pointer-events: none;
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 3;
        }
        .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            color: #ffffff;
            font-size: 0.95rem;
            pointer-events: none;
            z-index: 3;
        }
        /* Nav Buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: var(--accent, #64ffda);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
            transition: 0.3s ease;
            z-index: 10;
        }
        .nav-btn:hover {
            background: var(--accent, #64ffda);
            color: #000;
        }
        .prev-btn { left: 15px; }
        .next-btn { right: 15px; }
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            background: #0d0d0d;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #444;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active {
            background: var(--accent, #64ffda);
            transform: scale(1.2);
        }
        /* Responsive Video Embed Styles */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(100, 255, 218, 0.1);
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        /* Lightbox Modal - Fixed */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.96);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 999999;
            padding: 20px;
        }
        .lightbox.open {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-img {
            max-width: 94%;
            max-height: 82vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 0 50px rgba(0,0,0,0.7);
        }
        .lightbox-caption {
            margin-top: 18px;
            color: #fff;
            font-size: 1.05rem;
            text-align: center;
            max-width: 90%;
            line-height: 1.4;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 25px;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.7rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s;
            z-index: 10;
        }
        .lightbox-close:hover {
            background: #64ffda;
            color: #000;
            transform: rotate(90deg);
        }
        @media (max-width: 768px) {
            .slides-wrapper { height: 300px; }
            .lightbox-img { max-height: 75vh; }
        }
