/* Cyberpunk-styled filter bar */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9), rgba(26, 26, 37, 0.9));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Add subtle grid pattern */
.filter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.5;
}

/* Add top border glow */
.filter-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.7), transparent);
    z-index: 1;
}

.filter-group {
    flex: 1;
    min-width: 180px;
    position: relative;
    z-index: 2;
}

.filter-label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}

.filter-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cyberpunk-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(13, 13, 22, 0.8);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 6px;
    color: #ffffff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ffcc' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.cyberpunk-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.search-container {
    flex: 2;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(13, 13, 22, 0.8);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container {
        padding: 15px;
        flex-direction: column;
    }
    
    .filter-group, .search-container {
        width: 100%;
        min-width: 100%;
    }
}
