/* Filters Grid */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.25);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.filter-btn .filter-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.filter-btn .filter-label {
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .filters-grid {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
        gap: 0.4rem;
    }
    .filter-btn {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
}