@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Work+Sans:wght@300;400;500;600&family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* Custom Utilities */
.text-glow {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}