body {
    font-family: system-ui, sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-purple {
    background-color: #9333ea;
}

.blur-gradient {
    filter: blur(100px);
}

.btn-gradient {
    background-image: linear-gradient(to right, #3b82f6, #9333ea);
    color: white;
    border: none;
    transition: opacity 0.3s ease-in-out;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hover-link:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}