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

/* Base Styles & Utility overrides */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.dark .glass-nav {
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Modern Input */
.modern-input {
    outline: none;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: #6366f1; /* primary-500 */
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.dark .modern-input:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

/* Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Glass panel */
.shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.dark .shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Toast animations */
#toast-container {
    pointer-events: none;
}
#toast-container > div {
    pointer-events: auto;
}