html, body {
    scroll-behavior: smooth;
}
body {
    cursor: none;
    background-color: #0a0a0a;
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 50;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, width 0.15s ease, height 0.15s ease;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #8b5cf6;
}
.cursor-outline {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(4px);
}
.cursor-active.cursor-dot {
    width: 14px;
    height: 14px;
    background-color: #06b6d4;
}
.cursor-active.cursor-outline {
    width: 40px;
    height: 40px;
    border-color: rgba(6, 182, 212, 0.6);
}
.hero-gradient {
    background: radial-gradient(circle at 0% 0%, #8b5cf6 0, transparent 55%), radial-gradient(circle at 100% 100%, #06b6d4 0, transparent 55%), radial-gradient(circle at 50% 0%, #312e81 0, transparent 55%), #020617;
    background-size: 200% 200%;
    animation: heroGradientAnimation 18s ease-in-out infinite alternate;
}
.transition-fade {
    opacity: 1;
    transition: opacity 250ms ease;
}
@keyframes heroGradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 100% 0%;
    }
}
