/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
}

/* Custom Utilities that might not be in Tailwind default config */
.hover-bounce {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-bounce:hover {
    transform: translateY(-4px) scale(1.02);
}

* { -webkit-tap-highlight-color: transparent; }
