@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --tw-color-primary: #00ff9d;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.heading-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #00ff9d;
    transform: translateY(-1px);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.terminal {
    animation: blink 1s step-end infinite;
}
