/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #111111; 
}
::-webkit-scrollbar-thumb {
    background: #2D2D2D; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; 
}

/* Chatbot Scrollbar */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 2px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Component animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Utility to add gradient text where Tailwind class is too long */
.text-gradient {
    background: linear-gradient(90deg, #FBBF24, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
