/* Image Comparison Slider Customization */
img-comparison-slider {
    --divider-width: 4px;
    --divider-color: rgba(255, 255, 255, 0.8);
    --divider-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    --default-handle-width: 50px;
    --default-handle-color: #fff;
    --default-handle-opacity: 0.9;
    --default-handle-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

/* Tab Animations */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active { display: grid; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Gradient Text */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #4f46e5, #8b5cf6, #ec4899);
}

