@layer utilities {
    .content-auto {
        content-visibility: auto;
    }
    .transition-custom {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-transition {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    }
    .glass-effect {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .glass-strong {
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }
    .gradient-135 {
        background: linear-gradient(135deg, rgba(126, 34, 206, 0.8), rgba(249, 115, 22, 0.8));
    }
    .gradient-135-light {
        background: linear-gradient(135deg, rgba(126, 34, 206, 0.6), rgba(249, 115, 22, 0.6));
    }
    .gradient-decor {
        background: linear-gradient(135deg, rgba(126, 34, 206, 0.05), rgba(249, 115, 22, 0.08));
    }
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.5;
}

.btn-hover {
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -6px rgba(126, 34, 206, 0.2);
}

.feature-card {
    transition: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
}

.decor-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.decor-element-2 {
    animation: float 8s ease-in-out infinite 1s;
}

.gradient-flow {
    background: linear-gradient(90deg, #7E22CE, #3B82F6, #F97316, #7E22CE);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-cyan-blue {
    background: linear-gradient(135deg, #06B6D4, #3B82F6, #06B6D4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientCyanBlue 6s ease infinite;
}

@keyframes gradientCyanBlue {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
