body { 
    background-color: #000; 
    color: #fff; 
    scroll-behavior: smooth; 
}

.text-neon { color: #ccff00; }
.bg-neon { background-color: #ccff00; }
.border-neon { border-color: #ccff00; }
.shadow-neon { box-shadow: 0 0 20px rgba(204, 255, 0, 0.3); }
.italic-heavy { font-style: italic; }
.tracking-tighter-heavy { letter-spacing: -0.05em; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ccff00;
}
