/* Custom Premium UI Elements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium gradient text */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium gradient backgrounds for buttons and banners */
.bg-gradient-premium {
    background: linear-gradient(135deg, #1d4ed8 0%, #7e22ce 100%);
}

/* Soft, luxurious shadows for white cards */
.premium-shadow {
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.15);
}

/* Glassmorphism for floating elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Animated hover for cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(147, 51, 234, 0.25);
}