@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation: Subtle Glow for Input Cards */
.animate-glow {
    animation: glow 4s infinite alternate;
}

@keyframes glow {
    from { 
        box-shadow: 0 0 20px -10px rgba(99, 102, 241, 0.5); 
    }
    to { 
        box-shadow: 0 0 30px -5px rgba(168, 85, 247, 0.6); 
    }
}

/* Custom Scrollbar for Dark Mode */
.dark ::-webkit-scrollbar {
    width: 8px;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

.dark ::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
