@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #030712;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
}

section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.08) 0%, rgba(192, 132, 252, 0) 70%),
                radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(99, 102, 241, 0) 70%);
    opacity: 0.5;
    z-index: -1;
    animation: background-move 20s linear infinite;
}

@keyframes background-move {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10%, 10%); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(-10%, -10%); }
    100% { transform: translate(0, 0); }
}

.btn-ghost {
    @apply inline-flex items-center justify-center px-5 py-2 rounded-full font-semibold border border-gray-700 text-gray-200 hover:bg-gray-800 transition-colors duration-300;
}