/* Showcase Specific Styles */
.showcase-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 50%);
    opacity: 0.9;
}

.category-pill {
    transition: all 0.3s ease;
}

.category-pill.active {
    background-color: var(--primary-color, #6366F1);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
