/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #a855f7, #8b5cf6, #7c3aed);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #9333ea, #7c3aed, #6d28d9);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* Animated Background Gradient */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animated-bg {
    background: linear-gradient(-45deg, #faf5ff, #f3e8ff, #ede9fe, #e9d5ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
.shimmer {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
}
.pulse-glow {
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Lasso Card Styles */
.lasso-card {
    transition: all 0.3s ease;
}
.lasso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.2);
}

/* Rarity Badge Styles */
.rarity-common { background: linear-gradient(135deg, #6b7280, #9ca3af); }
.rarity-uncommon { background: linear-gradient(135deg, #10b981, #059669); }
.rarity-rare { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.rarity-epic { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.rarity-legendary { background: linear-gradient(135deg, #f59e0b, #d97706); }
.rarity-mythical { background: linear-gradient(135deg, #ec4899, #db2777); }
.rarity-divine { background: linear-gradient(135deg, #f59e0b, #f97316, #ec4899, #8b5cf6); }

/* Progress Bar */
.progress-bar {
    transition: width 0.5s ease;
}

/* Filter Buttons */
.filter-btn {
    transition: all 0.3s ease;
}
.filter-btn.active {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

