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

/* Minimal Dark Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #050505;
}

.animate-pulse-slow {
    animation: pulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Input Icons */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    /* slate-600 */
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-field:focus+.input-icon,
.input-with-icon:focus-within .input-icon {
    color: #3b82f6;
    /* blue-500 */
}

/* Glow Effect */
.glow-focus:focus {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
    /* blue glow */
    border-color: #3b82f6;
}

.glow-focus-green:focus {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
    /* green glow */
    border-color: #22c55e;
}

/* Frosted Glass */
.glass {
    background: rgba(25, 25, 28, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-hover:hover {
    background: rgba(35, 35, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}