/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #0ea5e9; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a855f7; 
}

/* Glowing Neon Text */
.neon-text {
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5), 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Animated Tech Grid Background */
.tech-grid {
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}