/* 
  Since we are using Tailwind via CDN, we only need styles here that 
  are difficult to express as inline utility classes. 
*/

/* Custom scrollbar to match the high-end dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Observer Animation Classes */
.fade-up-element {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(40px);
}

.fade-up-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}