/* Hide Alpine.js elements until they're initialized */
[x-cloak] {
    display: none !important;
}

/* Custom animations */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom gradients */
.gradient-blue {
    background: linear-gradient(to right, #1a56db, #0ea5e9);
}

.text-gradient-blue {
    background: linear-gradient(to right, #1a56db, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}