        .container {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
			object-fit: cover;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: none;
	    opacity: 0;
            transition: opacity 1.2s ease-in-out;
            justify-content: center;
            align-items: center;
            background: #000;
        }
        
        .slide.active {
            display: flex;
	    opacity: 1;
        }
        
        .slide-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .slide-img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
        }
        
        /* Custom tooltip that updates with slide changes */
        .custom-tooltip {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.85);
            color: #fff;
            padding: 10px 15px;
            border-radius: 4px;
            font-size: 16px;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            max-width: 80%;
            text-align: center;
        }
        
        .custom-tooltip.visible {
            opacity: 1;
        }
        
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-size: 18px;
            color: #666;
            position: absolute;
            width: 100%;
        }
        
        .error {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            color: #e74c3c;
            text-align: center;
            padding: 20px;
            line-height: 1.5;
            position: absolute;
            width: 100%;
        }
        
        .instructions {
            padding: 25px;
            background: #f8f9fa;
            border-top: 1px solid #eaecef;
        }
        
        .instructions h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .instructions p {
            margin-bottom: 15px;
            color: #555;
        }
        
        pre {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 15px;
            border-radius: 6px;
            overflow-x: auto;
            margin: 15px 0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        @media (max-width: 768px) {
            .custom-tooltip {
                font-size: 14px;
                max-width: 90%;
            }
        }
        
        @media (max-width: 480px) {
            
            .custom-tooltip {
                font-size: 13px;
                padding: 8px 12px;
                max-width: 95%;
            }
        }