.category-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.category-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('https://images.unsplash.com/photo-1432821596592-e2c18b78144f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.05;
}

.category-hero .container {
    position: relative;
    z-index: 1;
}

.category-badge {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--vp-primary);
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.2s;
}

.category-badge:hover,
.category-badge.active-cat {
    background-color: var(--vp-primary);
    color: white;
}
