/* أنماط مخصصة مفصولة من index.html */
.search-pill {
    transition: all 0.3s ease;
}
.search-pill:hover {
    transform: translateY(-2px);
}
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.dark .glassmorphism {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.gradient-border {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #10B981, #06B6D4, #3b82f6, #10B981);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gradient-border:hover::before {
    opacity: 1;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.shimmer {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}
.dark .shimmer {
    background: linear-gradient(90deg, 
        rgba(15, 23, 42, 0) 0%, 
        rgba(15, 23, 42, 0.3) 25%, 
        rgba(15, 23, 42, 0.3) 50%, 
        rgba(15, 23, 42, 0) 100%);
    background-size: 200% 100%;
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}
