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

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

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1F2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4B5563;
}

/* Animation for terminal startup */
@keyframes terminal-boot {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.terminal-boot {
    animation: terminal-boot 0.5s ease-out forwards;
}

/* Glow effect for important elements */
.glow-primary {
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.glow-secondary {
    text-shadow: 0 0 8px rgba(244, 63, 94, 0.6);
}

/* Custom transition effects */
.transition-slow {
    transition: all 0.5s ease;
}

.transition-medium {
    transition: all 0.3s ease;
}

.transition-fast {
    transition: all 0.15s ease;
}