html {
    scroll-behavior: smooth;
}

.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.05s linear;
}

/* Custom UI Minimal Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0B;
}
::-webkit-scrollbar-thumb {
    background: #1E1E24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2596BE;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseSlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.animate-pulse-slow {
    animation: pulseSlow 7s ease-in-out infinite;
}

.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #76B947;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}