html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b; 
}

::-webkit-scrollbar-thumb {
    background: #27272a; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46; 
}

.glass {
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

@keyframes slow-pan {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.1) translate(-1%, -1%); }
    100% { transform: scale(1.05) translate(0, 0); }
}

.animate-slow-pan {
    animation: slow-pan 30s ease-in-out infinite;
}

.gs-reveal {
    visibility: hidden;
}
